Spaces:
Runtime error
Runtime error
Commit
Β·
9559cbc
1
Parent(s):
bf9aac5
add auth
Browse files- app.py +26 -0
- requirements.txt +3 -0
app.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import requests
|
| 2 |
+
import tensorflow as tf
|
| 3 |
+
|
| 4 |
+
import gradio as gr
|
| 5 |
+
|
| 6 |
+
inception_net = tf.keras.applications.MobileNetV2() # load the model
|
| 7 |
+
|
| 8 |
+
# Download human-readable labels for ImageNet.
|
| 9 |
+
response = requests.get("https://git.io/JJkYN")
|
| 10 |
+
labels = response.text.split("\n")
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
def classify_image(inp):
|
| 14 |
+
inp = inp.reshape((-1, 224, 224, 3))
|
| 15 |
+
inp = tf.keras.applications.mobilenet_v2.preprocess_input(inp)
|
| 16 |
+
prediction = inception_net.predict(inp).flatten()
|
| 17 |
+
return {labels[i]: float(prediction[i]) for i in range(1000)}
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
image = gr.inputs.Image(shape=(224, 224))
|
| 21 |
+
label = gr.outputs.Label(num_top_classes=3)
|
| 22 |
+
|
| 23 |
+
title="Gradio Image Classifiction + interpretation Example"
|
| 24 |
+
gr.Interface(
|
| 25 |
+
fn=classify_image, inputs=image, outputs=label, interpretation="default",title=title
|
| 26 |
+
).launch(auth=("admin", "pass1234"))
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
tensorflow
|
| 2 |
+
shap
|
| 3 |
+
scikit-image
|