Wootang01 commited on
Commit
9d3068f
·
1 Parent(s): 33cfa6a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,9 +9,9 @@ response = requests.get("https://git.io/JJkYN")
9
  labels = response.text.split("\n")
10
 
11
  title = "Image Classifier Two -- Keras Mobile Net"
12
- 13 description = """This machine has vision. It can see objects and concepts in an image. To test the machine, upload or drop an image, submit and read the results. The results comprise a list of words that the machine sees in the image. Beside a word, the length of the bar indicates the confidence with which the machine sees the word. The longer the bar, the more confident the machine is.
13
- 14 """
14
- 15 article = "This app was made by following [this Gradio guide](https://gradio.app/image_classification_in_tensorflow/)."
15
 
16
  def classify_image(inp):
17
  inp = inp.reshape((-1, 224, 224, 3))
 
9
  labels = response.text.split("\n")
10
 
11
  title = "Image Classifier Two -- Keras Mobile Net"
12
+ description = """This machine has vision. It can see objects and concepts in an image. To test the machine, upload or drop an image, submit and read the results. The results comprise a list of words that the machine sees in the image. Beside a word, the length of the bar indicates the confidence with which the machine sees the word. The longer the bar, the more confident the machine is.
13
+ """
14
+ article = "This app was made by following [this Gradio guide](https://gradio.app/image_classification_in_tensorflow/)."
15
 
16
  def classify_image(inp):
17
  inp = inp.reshape((-1, 224, 224, 3))