harshaUwm163 commited on
Commit
9174347
·
1 Parent(s): ad33e02

fixed the escape character in the author link

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ output = [gr.outputs.Label()]
60
  # it's good practice to pass examples, description and a title to guide users
61
  examples = [["./content/examples/Frog.jpg"], ["./content/examples/Truck.jpg"]]
62
  title = "Image classification"
63
- description = "Upload an image or select from examples to classify it. This is a ConvMixer Model trained on CIFAR-10. The allowed classes are - Airplane, Automobile, Bird, Cat, Deer, Dog, Frog, Horse, Ship, Truck <p><b>Space author: Harshavardhan</b> <br><b> Keras example author: <a href=\"https://twitter.com/RisingSayak"> Sayak Paul </a> </b> <br> <a href=\"https://keras.io/examples/vision/convmixer/\">link to the original Keras example</a> </p>"
64
 
65
  gr_interface = gr.Interface(infer, input, output, examples=examples, allow_flagging=False, analytics_enabled=False, title=title, description=description).launch(enable_queue=True, debug=False)
66
  gr_interface.launch()
 
60
  # it's good practice to pass examples, description and a title to guide users
61
  examples = [["./content/examples/Frog.jpg"], ["./content/examples/Truck.jpg"]]
62
  title = "Image classification"
63
+ description = "Upload an image or select from examples to classify it. This is a ConvMixer Model trained on CIFAR-10. The allowed classes are - Airplane, Automobile, Bird, Cat, Deer, Dog, Frog, Horse, Ship, Truck <p><b>Space author: Harshavardhan</b> <br><b> Keras example author: <a href=\"https://twitter.com/RisingSayak\"> Sayak Paul </a> </b> <br> <a href=\"https://keras.io/examples/vision/convmixer/\">link to the original Keras example</a> </p>"
64
 
65
  gr_interface = gr.Interface(infer, input, output, examples=examples, allow_flagging=False, analytics_enabled=False, title=title, description=description).launch(enable_queue=True, debug=False)
66
  gr_interface.launch()