Update app.py
Browse files
app.py
CHANGED
@@ -28,6 +28,6 @@ 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
|
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()
|
|
|
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. In this case, feel free to contact <a href='https://schnuerer.dev/contact'>me</a>.",
|
32 |
+
article="More information: <a href='https://huggingface.co/datasets/sraimund/MapPool'>MapPool - Bubbling up an extremely large corpus of maps for AI</a><br>Keywords: map identification, map recognition, map classification")
|
33 |
demo.launch()
|