Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ from threading import Thread
|
|
6 |
|
7 |
MODEL = "tiiuae/falcon3-7b-instruct-1.58bit"
|
8 |
|
9 |
-
TITLE = "<h1><center>Falcon3-1.58 bit playground</center></h1>"
|
10 |
-
SUB_TITLE = """<center>This interface has been created for quick validation purposes, do not use it for production
|
11 |
|
12 |
CSS = """
|
13 |
.duplicate-button {
|
@@ -107,7 +107,7 @@ with gr.Blocks(css=CSS, theme="soft") as demo:
|
|
107 |
),
|
108 |
gr.Slider(
|
109 |
minimum=20,
|
110 |
-
maximum=
|
111 |
step=1,
|
112 |
value=128,
|
113 |
label="Max new tokens",
|
|
|
6 |
|
7 |
MODEL = "tiiuae/falcon3-7b-instruct-1.58bit"
|
8 |
|
9 |
+
TITLE = "<h1><center>Falcon3-1.58-instruct bit playground</center></h1>"
|
10 |
+
SUB_TITLE = """<center>This interface has been created for quick validation purposes, do not use it for production.</center>"""
|
11 |
|
12 |
CSS = """
|
13 |
.duplicate-button {
|
|
|
107 |
),
|
108 |
gr.Slider(
|
109 |
minimum=20,
|
110 |
+
maximum=512,
|
111 |
step=1,
|
112 |
value=128,
|
113 |
label="Max new tokens",
|