Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ def translate_image(input_image):
|
|
85 |
return str(coords), np.array(Image.open("tmp.png").convert("RGB"))
|
86 |
|
87 |
|
88 |
-
demo = gr.Interface(fn=translate_image, inputs="image", outputs=["text", "image"], title="Street View Location")
|
89 |
|
90 |
if __name__ == "__main__":
|
91 |
demo.launch()
|
|
|
85 |
return str(coords), np.array(Image.open("tmp.png").convert("RGB"))
|
86 |
|
87 |
|
88 |
+
demo = gr.Interface(fn=translate_image, inputs="image", outputs=["text", "image"], title="Street View Location", description="Helps you guess the location of a street view image ! Use it on square images with no goole maps artefacts when possible !")
|
89 |
|
90 |
if __name__ == "__main__":
|
91 |
demo.launch()
|