Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
#
|
4 |
-
#|export
|
5 |
-
#fastai has to be available, i.e. fastai folder
|
6 |
from fastai.vision.all import *
|
7 |
import gradio as gr
|
|
|
8 |
|
9 |
def is_real(x): return x[0].isupper()
|
10 |
|
|
|
1 |
+
__all__ = ['learn', 'classify_image', 'categories', 'classifier', 'dog','image', 'label', 'examples', 'intf']
|
2 |
+
|
3 |
+
# Cell
|
|
|
|
|
4 |
from fastai.vision.all import *
|
5 |
import gradio as gr
|
6 |
+
import timm
|
7 |
|
8 |
def is_real(x): return x[0].isupper()
|
9 |
|