nicolas-dufour commited on
Commit
442f3f8
1 Parent(s): b4a5ac2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -6,6 +6,9 @@ tags:
6
  - geolocalization
7
  - diffusion
8
  - pytorch_model_hub_mixin
 
 
 
9
  ---
10
  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)
11
 
@@ -22,4 +25,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: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - geolocalization
7
  - diffusion
8
  - pytorch_model_hub_mixin
9
+ - osv5m
10
+ datasets:
11
+ - osv5m/osv5m-wds
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)
14
 
 
25
  ```
26
 
27
  - Code: https://github.com/nicolas-dufour/plonk
28
+ - Docs:
29
+ The model can be simply run by doing:
30
+ ```bash
31
+ pip install diff-plonk
32
+ ```
33
+
34
+ ```python
35
+ from plonk import PLONKPipeline
36
+
37
+ pipeline = PLONKPipeline.from_pretrained("nicolas-dufour/PLONK_OSV_5M")
38
+
39
+ gps_coords = pipeline(images, batch_size=1024)
40
+ ```