tbitai commited on
Commit
6bbc6ba
·
verified ·
1 Parent(s): 9e28d9c

Fix missing comma after theme argument

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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"),