Spaces:
Sleeping
Sleeping
Aspiring Astro
commited on
Commit
·
926c115
1
Parent(s):
997e39f
share set to false
Browse files
app.ipynb
CHANGED
@@ -758,7 +758,7 @@
|
|
758 |
"example_models = [] #list(learners.values())\n",
|
759 |
"intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=example_images, title=title, description=description )\n",
|
760 |
"if __name__ == \"__main__\":\n",
|
761 |
-
" intf.launch(debug=True, inline=False
|
762 |
]
|
763 |
},
|
764 |
{
|
|
|
758 |
"example_models = [] #list(learners.values())\n",
|
759 |
"intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=example_images, title=title, description=description )\n",
|
760 |
"if __name__ == \"__main__\":\n",
|
761 |
+
" intf.launch(debug=True, inline=False)\n"
|
762 |
]
|
763 |
},
|
764 |
{
|
app.py
CHANGED
@@ -38,5 +38,5 @@ example_images = [ 'cheetah.jpg', 'jaguar.jpg', 'tiger.jpg', 'cougar.jpg', 'lion
|
|
38 |
example_models = [] #list(learners.values())
|
39 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=example_images, title=title, description=description )
|
40 |
if __name__ == "__main__":
|
41 |
-
intf.launch(debug=True, inline=False
|
42 |
|
|
|
38 |
example_models = [] #list(learners.values())
|
39 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=example_images, title=title, description=description )
|
40 |
if __name__ == "__main__":
|
41 |
+
intf.launch(debug=True, inline=False)
|
42 |
|