Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- .gitattributes +1 -0
- _Inception_V2.keras +3 -0
- app.py +1 -1
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
best_model_InceptionV2.keras filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
best_model_InceptionV2.keras filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
_Inception_V2.keras filter=lfs diff=lfs merge=lfs -text
|
_Inception_V2.keras
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f43f5ebba8be56b734c69188da467d72f6b7bda0a4b38bc86896d744e47402b6
|
| 3 |
+
size 656891883
|
app.py
CHANGED
|
@@ -5,7 +5,7 @@ from tensorflow.keras.preprocessing import image
|
|
| 5 |
import numpy as np
|
| 6 |
from PIL import Image
|
| 7 |
|
| 8 |
-
model = tf.keras.models.load_model('
|
| 9 |
|
| 10 |
# Function for prediction
|
| 11 |
def predict(img):
|
|
|
|
| 5 |
import numpy as np
|
| 6 |
from PIL import Image
|
| 7 |
|
| 8 |
+
model = tf.keras.models.load_model('_Inception_V2.keras')
|
| 9 |
|
| 10 |
# Function for prediction
|
| 11 |
def predict(img):
|