Spaces:
Running
Running
Realcat
commited on
Commit
•
b5957bd
1
Parent(s):
4c930ba
update: gradio to 4.28.3
Browse files- README.md +2 -2
- common/app_class.py +6 -2
- common/config.yaml +1 -1
- requirements.txt +2 -2
README.md
CHANGED
@@ -4,10 +4,10 @@ emoji: 🤗
|
|
4 |
colorFrom: red
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
-
license:
|
11 |
---
|
12 |
|
13 |
[![Contributors][contributors-shield]][contributors-url]
|
|
|
4 |
colorFrom: red
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.28.3
|
8 |
app_file: app.py
|
9 |
pinned: true
|
10 |
+
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
[![Contributors][contributors-shield]][contributors-url]
|
common/app_class.py
CHANGED
@@ -13,6 +13,7 @@ from common.utils import (
|
|
13 |
GRADIO_VERSION,
|
14 |
)
|
15 |
|
|
|
16 |
DESCRIPTION = """
|
17 |
# Image Matching WebUI
|
18 |
This Space demonstrates [Image Matching WebUI](https://github.com/Vincentqyw/image-matching-webui) by vincent qin. Feel free to play with it, or duplicate to run image matching without a queue!
|
@@ -284,7 +285,7 @@ class ImageMatchingApp:
|
|
284 |
choice_estimate_geom,
|
285 |
]
|
286 |
button_reset.click(
|
287 |
-
fn=self.ui_reset_state, inputs=
|
288 |
)
|
289 |
|
290 |
# estimate geo
|
@@ -448,6 +449,9 @@ class ImageMatchingApp:
|
|
448 |
headers=["Algo.", "Conference", "Code", "Project", "Paper"],
|
449 |
datatype=["str", "str", "str", "str", "str"],
|
450 |
col_count=(5, "fixed"),
|
|
|
|
|
|
|
|
|
451 |
)
|
452 |
-
tab.value = data
|
453 |
return tab
|
|
|
13 |
GRADIO_VERSION,
|
14 |
)
|
15 |
|
16 |
+
|
17 |
DESCRIPTION = """
|
18 |
# Image Matching WebUI
|
19 |
This Space demonstrates [Image Matching WebUI](https://github.com/Vincentqyw/image-matching-webui) by vincent qin. Feel free to play with it, or duplicate to run image matching without a queue!
|
|
|
285 |
choice_estimate_geom,
|
286 |
]
|
287 |
button_reset.click(
|
288 |
+
fn=self.ui_reset_state, inputs=None, outputs=reset_outputs
|
289 |
)
|
290 |
|
291 |
# estimate geo
|
|
|
449 |
headers=["Algo.", "Conference", "Code", "Project", "Paper"],
|
450 |
datatype=["str", "str", "str", "str", "str"],
|
451 |
col_count=(5, "fixed"),
|
452 |
+
value=data,
|
453 |
+
# wrap=True,
|
454 |
+
# min_width = 1000,
|
455 |
+
# height=1000,
|
456 |
)
|
|
|
457 |
return tab
|
common/config.yaml
CHANGED
@@ -218,7 +218,7 @@ matcher_zoo:
|
|
218 |
source: "IROS 2021"
|
219 |
github: https://github.com/UditSinghParihar/RoRD
|
220 |
paper: https://arxiv.org/abs/2103.08573
|
221 |
-
project: https://uditsinghparihar.github.io/RoRD
|
222 |
display: true
|
223 |
alike:
|
224 |
matcher: NN-mutual
|
|
|
218 |
source: "IROS 2021"
|
219 |
github: https://github.com/UditSinghParihar/RoRD
|
220 |
paper: https://arxiv.org/abs/2103.08573
|
221 |
+
project: https://uditsinghparihar.github.io/RoRD
|
222 |
display: true
|
223 |
alike:
|
224 |
matcher: NN-mutual
|
requirements.txt
CHANGED
@@ -2,8 +2,8 @@ torch==2.2.1
|
|
2 |
e2cnn==0.2.3
|
3 |
einops==0.6.1
|
4 |
gdown==4.7.1
|
5 |
-
gradio==
|
6 |
-
gradio_client==0.
|
7 |
h5py==3.9.0
|
8 |
imageio==2.31.1
|
9 |
Jinja2==3.1.2
|
|
|
2 |
e2cnn==0.2.3
|
3 |
einops==0.6.1
|
4 |
gdown==4.7.1
|
5 |
+
gradio==4.28.3
|
6 |
+
gradio_client==0.16.0
|
7 |
h5py==3.9.0
|
8 |
imageio==2.31.1
|
9 |
Jinja2==3.1.2
|