Spaces:
Sleeping
Sleeping
Yellow theme
Browse files
app.py
CHANGED
|
@@ -89,6 +89,9 @@ def predict(model, input_txt, unbiased, intr_threshold):
|
|
| 89 |
# UI
|
| 90 |
|
| 91 |
demo = gr.Interface(
|
|
|
|
|
|
|
|
|
|
| 92 |
fn=predict,
|
| 93 |
inputs=[
|
| 94 |
gr.Dropdown(choices=MODELS, value=BAYES, label="Model"),
|
|
|
|
| 89 |
# UI
|
| 90 |
|
| 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"),
|