Nymbo commited on
Commit
0ebc287
1 Parent(s): e9c0b46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,6 @@ with open(Path(path) / 'top_tags.txt', 'r') as f:
68
  print("Starting server...")
69
 
70
  gradio_app = gr.Interface(
71
- theme="Nymbo/Nymbo_Theme",
72
  predict,
73
  inputs=gr.Image(label="Source", sources=['upload', 'webcam'], type='pil'),
74
  outputs=[
@@ -78,6 +77,7 @@ gradio_app = gr.Interface(
78
  title="JoyTag",
79
  description=DESCRIPTION,
80
  allow_flagging="never",
 
81
  )
82
 
83
 
 
68
  print("Starting server...")
69
 
70
  gradio_app = gr.Interface(
 
71
  predict,
72
  inputs=gr.Image(label="Source", sources=['upload', 'webcam'], type='pil'),
73
  outputs=[
 
77
  title="JoyTag",
78
  description=DESCRIPTION,
79
  allow_flagging="never",
80
+ theme="Nymbo/Nymbo_Theme",
81
  )
82
 
83