rushic24 commited on
Commit
b6bdd53
1 Parent(s): 7ea1d16

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -23,6 +23,14 @@ def flower_classifier(image):
23
  label = CLASSES[pred]
24
  return label
25
 
 
 
 
 
 
 
 
 
26
 
27
  iface = gr.Interface(flower_classifier,
28
  title = "Image Classification using BigTransfer (BiT)",
 
23
  label = CLASSES[pred]
24
  return label
25
 
26
+ title = "Image Classification using BigTransfer (BiT)"
27
+ description = "This space finetunes BigTransfer (BiT) to classify images from Flower dataset"
28
+ article = """<p style='text-align: center'>
29
+ <a href='https://keras.io/examples/vision/bit/' target='_blank'>Keras Example given by Sayan Nath</a>
30
+ <br>
31
+ Space by @rushic24
32
+ </p>
33
+ """
34
 
35
  iface = gr.Interface(flower_classifier,
36
  title = "Image Classification using BigTransfer (BiT)",