Changed model weights with colab
Browse files- ShoeClassifier2.pkl +3 -0
- app.py +2 -2
ShoeClassifier2.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3b4a43bee76bb6c4d082684f481d46ccf8d004bcdf8411cb81c2bd3042fa8ca
|
3 |
+
size 102883212
|
app.py
CHANGED
@@ -6,8 +6,8 @@ def shoe(x):
|
|
6 |
return x[0].isupper()
|
7 |
|
8 |
|
9 |
-
learn = load_learner('
|
10 |
-
categories = ("everyday running shoes", "
|
11 |
"stability running shoes", "tempo running shoes")
|
12 |
|
13 |
|
|
|
6 |
return x[0].isupper()
|
7 |
|
8 |
|
9 |
+
learn = load_learner('ShoeClassifier2.pkl')
|
10 |
+
categories = ("everyday running shoes", "road racing running shoes",
|
11 |
"stability running shoes", "tempo running shoes")
|
12 |
|
13 |
|