aliabd commited on
Commit
4ebbff7
·
1 Parent(s): 00790fa

Upload with huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +1 -2
  2. run.py +28 -0
README.md CHANGED
@@ -6,7 +6,6 @@ colorFrom: indigo
6
  colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.4.1
9
-
10
- app_file: app.py
11
  pinned: false
12
  ---
 
6
  colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.4.1
9
+ app_file: run.py
 
10
  pinned: false
11
  ---
run.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.Image(shape=(224, 224))
21
+ label = gr.Label(num_top_classes=3)
22
+
23
+ demo = gr.Interface(
24
+ fn=classify_image, inputs=image, outputs=label, interpretation="default"
25
+ )
26
+
27
+ if __name__ == "__main__":
28
+ demo.launch()