Spaces:
Runtime error
Runtime error
add model access
Browse files
app.py
CHANGED
@@ -1,14 +1,19 @@
|
|
1 |
import gradio as gr
|
2 |
import tensorflow as tf
|
3 |
|
4 |
-
|
5 |
|
6 |
def mnist_classifier(img):
|
7 |
-
#
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
demo = gr.Interface(fn=mnist_classifier, inputs="sketchpad", outputs="text", title="MNIST Checker", description="Draw a number 0-9 to see if the model can classify it.")
|
14 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
import tensorflow as tf
|
3 |
|
4 |
+
model = tf.keras.models.load_model("saved_model.pb")
|
5 |
|
6 |
def mnist_classifier(img):
|
7 |
+
# Convert the image input to a tensor
|
8 |
+
img_tensor = tf.convert_to_tensor(img['composite'], dtype=tf.float32)
|
9 |
+
img_tensor = tf.image.resize(img_tensor, [28, 28])
|
10 |
+
|
11 |
+
# Normalize and expand to add the batch dimension
|
12 |
+
img_tensor /= 255.0
|
13 |
+
img_tensor = tf.expand_dims(img_tensor, 0)
|
14 |
+
|
15 |
+
#prediction = model.predict(img_tensor)
|
16 |
+
return "Hi"
|
17 |
|
18 |
demo = gr.Interface(fn=mnist_classifier, inputs="sketchpad", outputs="text", title="MNIST Checker", description="Draw a number 0-9 to see if the model can classify it.")
|
19 |
+
demo.launch(share=True)
|