nicolas-dufour
commited on
Commit
•
5696e63
1
Parent(s):
0455df4
Update README.md
Browse files
README.md
CHANGED
@@ -6,6 +6,7 @@ tags:
|
|
6 |
- geolocalization
|
7 |
- diffusion
|
8 |
- pytorch_model_hub_mixin
|
|
|
9 |
---
|
10 |
|
11 |
This is a model of the approach described in the paper ["Around the World in 80 Timesteps: A Generative Approach to Global Visual Geolocation"](https://arxiv.org/abs/2412.06781)
|
@@ -22,4 +23,16 @@ This is a model of the approach described in the paper ["Around the World in 80
|
|
22 |
}
|
23 |
```
|
24 |
- Code: https://github.com/nicolas-dufour/plonk
|
25 |
-
- Docs:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
- geolocalization
|
7 |
- diffusion
|
8 |
- pytorch_model_hub_mixin
|
9 |
+
- yfcc
|
10 |
---
|
11 |
|
12 |
This is a model of the approach described in the paper ["Around the World in 80 Timesteps: A Generative Approach to Global Visual Geolocation"](https://arxiv.org/abs/2412.06781)
|
|
|
23 |
}
|
24 |
```
|
25 |
- Code: https://github.com/nicolas-dufour/plonk
|
26 |
+
- Docs:
|
27 |
+
The model can be simply run by doing:
|
28 |
+
```bash
|
29 |
+
pip install diff-plonk
|
30 |
+
```
|
31 |
+
|
32 |
+
```python
|
33 |
+
from plonk import PLONKPipeline
|
34 |
+
|
35 |
+
pipeline = PLONKPipeline.from_pretrained("nicolas-dufour/PLONK_YFCC")
|
36 |
+
|
37 |
+
gps_coords = pipeline(images, batch_size=1024)
|
38 |
+
```
|