suriya7's picture
Update app.py
1a5d306 verified
raw
history blame
277 Bytes
import gradio as gr
import tensorflow as tf
import numpy as np
model = tf.keras.models.load_model('')
model =
def image_classifier(inp):
return {'cat': 0.3, 'dog': 0.7}
demo = gr.Interface(fn=image_classifier, inputs="image", outputs="label")
demo.launch()