Spaces:
Runtime error
Runtime error
fix import
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import gradio as gr
|
2 |
-
import
|
3 |
import skimage
|
4 |
|
5 |
learn = load_learner('export.pkl')
|
@@ -17,4 +17,4 @@ examples = ['siamese.jpg']
|
|
17 |
interpretation='default'
|
18 |
enable_queue=True
|
19 |
|
20 |
-
gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=len(labels)),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from fastai.vision.all import *
|
3 |
import skimage
|
4 |
|
5 |
learn = load_learner('export.pkl')
|
|
|
17 |
interpretation='default'
|
18 |
enable_queue=True
|
19 |
|
20 |
+
gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=len(labels)),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
|