Spaces:
Sleeping
Sleeping
Fix missing comma after theme argument
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ def predict(model, input_txt, unbiased, intr_threshold):
|
|
91 |
demo = gr.Interface(
|
92 |
theme=gr.themes.Default(
|
93 |
primary_hue="yellow",
|
94 |
-
)
|
95 |
fn=predict,
|
96 |
inputs=[
|
97 |
gr.Dropdown(choices=MODELS, value=BAYES, label="Model"),
|
|
|
91 |
demo = gr.Interface(
|
92 |
theme=gr.themes.Default(
|
93 |
primary_hue="yellow",
|
94 |
+
),
|
95 |
fn=predict,
|
96 |
inputs=[
|
97 |
gr.Dropdown(choices=MODELS, value=BAYES, label="Model"),
|