Obai33 commited on
Commit
41a0f6d
·
verified ·
1 Parent(s): b68ddb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -95,7 +95,7 @@ response = requests.get(url)
95
  with open(local_filename, 'wb') as f:
96
  f.write(response.content)
97
  '''
98
- model = tf.keras.layers.TFSMLayer('my_model', call_endpoint='serving_default')
99
 
100
 
101
 
@@ -136,4 +136,4 @@ iface = gr.Interface(
136
  theme="compact"
137
  )
138
  # Run the interface
139
- iface.launch()
 
95
  with open(local_filename, 'wb') as f:
96
  f.write(response.content)
97
  '''
98
+ model = tf.keras.models.load_model('my_model', call_endpoint='serving_default')
99
 
100
 
101
 
 
136
  theme="compact"
137
  )
138
  # Run the interface
139
+ iface.launch(share = True)