vericudebuget commited on
Commit
ec21d03
·
verified ·
1 Parent(s): 59a9cc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -41,9 +41,10 @@ additional_inputs = [
41
  gr.Slider(label="Max new tokens", value=9048, minimum=256, maximum=9048, step=64, interactive=True, info="The maximum numbers of new tokens"),
42
  gr.Slider(label="Top-p (nucleus sampling)", value=0.90, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Higher values sample more low-probability tokens"),
43
  gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens"),
44
- gr.Dropdown(label="Theme", choices=["Base", "Default", "Glass", "Monochrome", "Soft"], default="Default", interactive=True, info="Select a theme for the app")
45
  ]
46
 
 
47
  theme_mapping = {
48
  "Base": gr.themes.Base(),
49
  "Default": gr.themes.Default(),
 
41
  gr.Slider(label="Max new tokens", value=9048, minimum=256, maximum=9048, step=64, interactive=True, info="The maximum numbers of new tokens"),
42
  gr.Slider(label="Top-p (nucleus sampling)", value=0.90, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Higher values sample more low-probability tokens"),
43
  gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens"),
44
+ gr.Dropdown(label="Theme", choices=["Default", "Base", "Glass", "Monochrome", "Soft"], interactive=True, info="Select a theme for the app")
45
  ]
46
 
47
+
48
  theme_mapping = {
49
  "Base": gr.themes.Base(),
50
  "Default": gr.themes.Default(),