Spaces:
Sleeping
Sleeping
Commit
·
d771edc
1
Parent(s):
538fcf2
Updated Order
Browse files
app.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
-
from fastai.vision.all import *
|
| 2 |
import gradio as gr
|
|
|
|
| 3 |
|
| 4 |
-
def is_cat(x):
|
|
|
|
| 5 |
|
| 6 |
learn = load.learner('model.pkl')
|
| 7 |
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
from fastai.vision.all import *
|
| 3 |
|
| 4 |
+
def is_cat(x):
|
| 5 |
+
return x[0].isupper()
|
| 6 |
|
| 7 |
learn = load.learner('model.pkl')
|
| 8 |
|