Update app.py
Browse files
app.py
CHANGED
|
@@ -10,6 +10,7 @@ from keras.models import Model
|
|
| 10 |
|
| 11 |
model_imagenet = InceptionV3(weights='imagenet',include_top=False,input_shape=(180, 180, 3))
|
| 12 |
model_imagenet.trainable = False
|
|
|
|
| 13 |
num_classes = 2
|
| 14 |
data_aug_layer = tf.keras.Sequential([
|
| 15 |
RandomFlip("horizontal"), # Rotate by up to 20 degrees
|
|
|
|
| 10 |
|
| 11 |
model_imagenet = InceptionV3(weights='imagenet',include_top=False,input_shape=(180, 180, 3))
|
| 12 |
model_imagenet.trainable = False
|
| 13 |
+
model = Sequential()
|
| 14 |
num_classes = 2
|
| 15 |
data_aug_layer = tf.keras.Sequential([
|
| 16 |
RandomFlip("horizontal"), # Rotate by up to 20 degrees
|