AaSiKu commited on
Commit
d87252c
·
verified ·
1 Parent(s): e663149

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import gradio as gr
8
  from keras.applications.inception_v3 import InceptionV3
9
  from keras.models import Model
10
 
11
- model = InceptionV3(weights='imagenet',include_top=False,input_shape=(180, 180, 3))
12
 
13
  new_input = model.input
14
 
 
8
  from keras.applications.inception_v3 import InceptionV3
9
  from keras.models import Model
10
 
11
+ model_imagenet = InceptionV3(weights='imagenet',include_top=False,input_shape=(180, 180, 3))
12
 
13
  new_input = model.input
14