tclopess commited on
Commit
4b0ee68
·
verified ·
1 Parent(s): ca6bd3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -65,7 +65,9 @@ inputs = [
65
 
66
  ]
67
 
 
 
68
 
69
  label = gr.outputs.Label(num_top_classes=4)
70
- iface = gr.Interface(fn=classify_movie_genre, inputs=inputs, outputs=label, examples=app_examples)
71
  iface.launch(inline=False)
 
65
 
66
  ]
67
 
68
+ theme_gradio = "gradio/monochrome"
69
+
70
 
71
  label = gr.outputs.Label(num_top_classes=4)
72
+ iface = gr.Interface(fn=classify_movie_genre, inputs=inputs, outputs=label, examples=app_examples, theme=theme_gradio)
73
  iface.launch(inline=False)