Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,7 @@ from fastai.vision.all import *
|
|
| 2 |
import gradio as gr
|
| 3 |
def is_cat(x): return x[0].isupper()
|
| 4 |
|
| 5 |
-
learn = load_learner('model.
|
| 6 |
|
| 7 |
categories = ('Dog','Cat')
|
| 8 |
|
|
|
|
| 2 |
import gradio as gr
|
| 3 |
def is_cat(x): return x[0].isupper()
|
| 4 |
|
| 5 |
+
learn = load_learner('model.pkl')
|
| 6 |
|
| 7 |
categories = ('Dog','Cat')
|
| 8 |
|