Spaces:
Sleeping
Sleeping
update app
Browse files
app.py
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
pip install -Uqq fastai
|
2 |
-
|
3 |
from fastai.vision.all import *
|
4 |
import gradio as gr
|
5 |
|
@@ -15,4 +13,4 @@ image = gr.inputs.Image(shape=(192,192))
|
|
15 |
label = gr.outputs.Label()
|
16 |
|
17 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
18 |
-
intf.launch(inline=False
|
|
|
|
|
|
|
1 |
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
|
|
13 |
label = gr.outputs.Label()
|
14 |
|
15 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
16 |
+
intf.launch(inline=False)
|