nicolas-dufour
commited on
Commit
•
9a97545
1
Parent(s):
e44dc34
Update README.md
Browse files
README.md
CHANGED
@@ -6,6 +6,8 @@ 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 +24,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 |
+
- iNaturalist
|
10 |
+
- iNat
|
11 |
---
|
12 |
|
13 |
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)
|
|
|
24 |
}
|
25 |
```
|
26 |
- Code: https://github.com/nicolas-dufour/plonk
|
27 |
+
- Docs:
|
28 |
+
The model can be simply run by doing:
|
29 |
+
```bash
|
30 |
+
pip install diff-plonk
|
31 |
+
```
|
32 |
+
|
33 |
+
```python
|
34 |
+
from plonk import PLONKPipeline
|
35 |
+
|
36 |
+
pipeline = PLONKPipeline.from_pretrained("nicolas-dufour/PLONK_iNaturalist")
|
37 |
+
|
38 |
+
gps_coords = pipeline(images, batch_size=1024)
|
39 |
+
```
|