Update README.md

This commit is contained in:
Abubakar Abid 2019-02-20 08:45:44 -08:00 committed by GitHub
parent 20929b79ec
commit 8bc1893f68

View File

@ -22,8 +22,7 @@ import gradio
mdl = tf.keras.models.Sequential()
# ... define and train the model as you would normally
iface = gradio.Interface(input=“sketchpad”,
output=“class”, model_type=“keras”, model=mdl)
iface = gradio.Interface(input=“sketchpad”, output=“class”, model_type=“keras”, model=mdl)
iface.launch()
```