Vrk commited on
Commit
70964ca
·
1 Parent(s): 9fed50a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -80,12 +80,12 @@ demo = gr.Interface(
80
  outputs = [gr.outputs.Textbox(label="Output Class"), gr.outputs.Label(label='Confidences')],
81
  title = "MultiClass Classifier",
82
  examples=[
83
- ["Sample_Images/Buildings.jpg", 'EfficientNet-B0'],
84
- ["Sample_Images/Forest.jpg", 'EfficientNet-B0'],
85
- ['Sample_Images/Street.jpg', 'EfficientNet-B0'],
86
- ['Sample_Images/glacier.jpg', 'EfficientNet-B0'],
87
- ['Sample_Images/mountain.jpg', 'EfficientNet-B0'],
88
- ['Sample_Images/sea.jpg', 'EfficientNet-B0']
89
  ],
90
  )
91
 
 
80
  outputs = [gr.outputs.Textbox(label="Output Class"), gr.outputs.Label(label='Confidences')],
81
  title = "MultiClass Classifier",
82
  examples=[
83
+ ["Buildings.jpg", 'EfficientNet-B0'],
84
+ ["Forest.jpg", 'EfficientNet-B0'],
85
+ ['Street.jpg', 'EfficientNet-B0'],
86
+ ['glacier.jpg', 'EfficientNet-B0'],
87
+ ['mountain.jpg', 'EfficientNet-B0'],
88
+ ['sea.jpg', 'EfficientNet-B0']
89
  ],
90
  )
91