padmanabhbosamia commited on
Commit
5432269
·
1 Parent(s): 8177ad8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -68,16 +68,16 @@ description1 = "Test the model's prediction. Currently the model only supports t
68
  #images_folder = "examples"
69
 
70
  # Define the examples list with full paths
71
- examples = [["plane.jpg"), 0.5, -1],
72
- [("car.jpg"), 0.5, -1],
73
- [("bird.jpg"), 0.5, -1],
74
- [("cat.jpg"), 0.5, -1],
75
- [("deer.jpg"), 0.5, -1],
76
- [("dog.jpg"), 0.5, -1],
77
- [("frog.jpg"), 0.5, -1],
78
- [("horse.jpg"), 0.5, -1],
79
- [("ship.jpg"), 0.5, -1],
80
- [("truck.jpg"), 0.5, -1]]
81
 
82
 
83
  # Create a separate interface for the "Input an image" tab
 
68
  #images_folder = "examples"
69
 
70
  # Define the examples list with full paths
71
+ examples = [("plane.jpg", 0.5, -1),
72
+ ("car.jpg", 0.5, -1),
73
+ ("bird.jpg", 0.5, -1),
74
+ ("cat.jpg", 0.5, -1),
75
+ ("deer.jpg", 0.5, -1),
76
+ ("dog.jpg", 0.5, -1),
77
+ ("frog.jpg", 0.5, -1),
78
+ ("horse.jpg", 0.5, -1),
79
+ ("ship.jpg", 0.5, -1),
80
+ ("truck.jpg", 0.5, -1)]
81
 
82
 
83
  # Create a separate interface for the "Input an image" tab