Spaces:
Running
Running
Elijahbodden
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -127,11 +127,11 @@ demo = gr.ChatInterface(
|
|
127 |
description="The model may take a while if it hasn't run recently or a lot of people are using it",
|
128 |
title="EliGPT v1.3",
|
129 |
additional_inputs=[
|
130 |
-
gr.Radio(presets.keys(), label="Preset", info="Gaslight the model into acting a certain way - WARNING, IF YOU CHANGE THIS WHILE THERE ARE MESSAGES IN THE CHAT, THE MODEL WILL BECOME VERY SLOW FOR YOU", value="
|
131 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=1.
|
132 |
-
gr.Slider(minimum=0.0, maximum=1.0, value=0.
|
133 |
-
gr.Slider(minimum=0, maximum=512, value=
|
134 |
-
gr.Slider(minimum=0.5, maximum=1.5, value=1.
|
135 |
gr.Slider(minimum=0.0, maximum=1.0, value=0.1, step=0.01, label="Frequency penalty", info='"Don\'repeat yourself"'),
|
136 |
gr.Slider(minimum=0.0, maximum=1.0, value=0.1, step=0.01, label="Presence penalty", info='"Use lots of diverse words"'),
|
137 |
gr.Slider(minimum=1, maximum=1024, value=1024, step=1, label="Max new tokens", info="How many words can the model generate at most?"),
|
|
|
127 |
description="The model may take a while if it hasn't run recently or a lot of people are using it",
|
128 |
title="EliGPT v1.3",
|
129 |
additional_inputs=[
|
130 |
+
gr.Radio(presets.keys(), label="Preset", info="Gaslight the model into acting a certain way - WARNING, IF YOU CHANGE THIS WHILE THERE ARE MESSAGES IN THE CHAT, THE MODEL WILL BECOME VERY SLOW FOR YOU", value="emojis"),
|
131 |
+
gr.Slider(minimum=0.1, maximum=4.0, value=1.5, step=0.1, label="Temperature", info="How chaotic should the model be?"),
|
132 |
+
gr.Slider(minimum=0.0, maximum=1.0, value=0.1, step=0.01, label="Min_p", info="Lower values give it more \"personality\""),
|
133 |
+
gr.Slider(minimum=0, maximum=512, value=5, step=1, label="Length penalty start", info='When should the model start being more likely to shut up?'),
|
134 |
+
gr.Slider(minimum=0.5, maximum=1.5, value=1.005, step=0.001, label="Length penalty decay factor", info='How fast should that stop likelihood increase?'),
|
135 |
gr.Slider(minimum=0.0, maximum=1.0, value=0.1, step=0.01, label="Frequency penalty", info='"Don\'repeat yourself"'),
|
136 |
gr.Slider(minimum=0.0, maximum=1.0, value=0.1, step=0.01, label="Presence penalty", info='"Use lots of diverse words"'),
|
137 |
gr.Slider(minimum=1, maximum=1024, value=1024, step=1, label="Max new tokens", info="How many words can the model generate at most?"),
|