File size: 982 Bytes
e942f64
 
 
 
 
 
 
 
5696e63
e942f64
 
0455df4
 
 
 
 
 
 
 
 
 
 
 
 
 
5696e63
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
license: mit
tags:
- model_hub_mixin
- plonk
- geolocalization
- diffusion
- pytorch_model_hub_mixin
- yfcc
---

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)

```
@misc{dufour2024world80timestepsgenerative,
      title={Around the World in 80 Timesteps: A Generative Approach to Global Visual Geolocation}, 
      author={Nicolas Dufour and David Picard and Vicky Kalogeiton and Loic Landrieu},
      year={2024},
      eprint={2412.06781},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2412.06781}, 
}
```
- Code: https://github.com/nicolas-dufour/plonk
- Docs:
The model can be simply run by doing:
```bash
pip install diff-plonk
```

```python
from plonk import PLONKPipeline

pipeline = PLONKPipeline.from_pretrained("nicolas-dufour/PLONK_YFCC")

gps_coords = pipeline(images, batch_size=1024)
```