AaSiKu commited on
Commit
56eec0f
·
verified ·
1 Parent(s): ac222f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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