duyduong9htv commited on
Commit
5edc626
1 Parent(s): 5d43a0c

Added description

Browse files
Files changed (1) hide show
  1. app.py +26 -3
app.py CHANGED
@@ -30,7 +30,30 @@ def classify(im):
30
  return confidences
31
 
32
 
33
- description = "Simple car recognition model"
34
- interface = gr.Interface(fn=classify, inputs="image", outputs="label", title="Car classification demo :)", description=description )
35
 
36
- interface.launch(debug=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  return confidences
31
 
32
 
33
+ description = """
34
+ Simple car recognition model. Can recognize one of the followings:
35
 
36
+ Chevrolet Equinox
37
+ Chevrolet Silverado 1500
38
+ Ford Escape
39
+ Ford Explorer
40
+ Ford F-150
41
+ GMC Sierra 1500
42
+ Honda CR-V
43
+ Jeep Compass
44
+ Jeep Grand Cherokee
45
+ Jeep Wrangler
46
+ Mazda CX-5
47
+ Nissan Rogue
48
+ RAM 1500
49
+ RAM 2500
50
+ Toyota Camry
51
+
52
+ """
53
+ interface = gr.Interface(fn=classify,
54
+ inputs="image",
55
+ outputs="label",
56
+ title="Car classification demo :)",
57
+ description=description )
58
+
59
+ interface.launch(share=True)