sraimund commited on
Commit
45e6a5a
·
verified ·
1 Parent(s): f4e7b13

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -27,7 +27,7 @@ def predict(input_image):
27
  demo = gr.Interface(fn=predict,
28
  inputs=gr.Image(label="Input image", type="pil"),
29
  outputs="text",
30
- title="Map identification",
31
- description="The model predicts whether an image is a map or not. It takes about 30 seconds since it runs on a CPU (it is much faster on a GPU).",
32
- article="<a href='https://huggingface.co/datasets/sraimund/MapPool'>MapPool - Bubbling up an extremely large corpus of maps for AI</a>")
33
  demo.launch()
 
27
  demo = gr.Interface(fn=predict,
28
  inputs=gr.Image(label="Input image", type="pil"),
29
  outputs="text",
30
+ title="MapPool model",
31
+ description="The model predicts whether an image is a map or not. It takes about 30 seconds since it runs on a CPU (it is much faster on a GPU). Although the validation accuracy of the model is 98.5%, some outputs may not be correct.<br>Keywords: map identification, map recognition, map classification",
32
+ article="More information: <a href='https://huggingface.co/datasets/sraimund/MapPool'>MapPool - Bubbling up an extremely large corpus of maps for AI</a>")
33
  demo.launch()