Spaces:
Runtime error
Runtime error
File size: 333 Bytes
f40a280 |
1 2 3 4 5 6 7 8 |
import tensorflow as tf
import gradio as gr
import numpy as np
model = tf.keras.models.load_model('Model.h5')
def predict(inp):
prediction = model.predict(np.array([tf.keras.preprocessing.image.img_to_array(inp)]) )
return (1-prediction)*100
gr.Interface(fn=predict,inputs=gr.Image(shape=(224, 224)),outputs=gr.Number()).launch() |