Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asquirous
/
tv_desktop_classifier
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
asquirous
commited on
Jun 19, 2023
Commit
10714e8
·
1 Parent(s):
fbf9058
Correct import syntax error in app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -1,4 +1,4 @@
1
-
import
fastai.vision.all import *
2
import gradio as gr
3
4
learn = load_learner("model_tvdesktop.pkl")
1
+
from
fastai.vision.all import *
2
import gradio as gr
3
4
learn = load_learner("model_tvdesktop.pkl")