nicolas-dufour commited on
Commit
267d9af
·
verified ·
1 Parent(s): 15ac1f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -5
README.md CHANGED
@@ -1,14 +1,39 @@
1
  ---
2
  license: mit
3
  tags:
4
- - diffusion
5
- - geolocalization
6
  - model_hub_mixin
7
  - plonk
 
 
8
  - pytorch_model_hub_mixin
 
 
9
  ---
10
 
11
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
 
 
 
 
 
 
 
 
 
 
 
 
12
  - Code: https://github.com/nicolas-dufour/plonk
13
- - Paper: [More Information Needed]
14
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  tags:
 
 
4
  - model_hub_mixin
5
  - plonk
6
+ - geolocalization
7
+ - diffusion
8
  - pytorch_model_hub_mixin
9
+ - yfcc
10
+ - flow
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)
14
+
15
+ ```
16
+ @misc{dufour2024world80timestepsgenerative,
17
+ title={Around the World in 80 Timesteps: A Generative Approach to Global Visual Geolocation},
18
+ author={Nicolas Dufour and David Picard and Vicky Kalogeiton and Loic Landrieu},
19
+ year={2024},
20
+ eprint={2412.06781},
21
+ archivePrefix={arXiv},
22
+ primaryClass={cs.CV},
23
+ url={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_YFCC_flow")
37
+
38
+ gps_coords = pipeline(images, batch_size=1024)
39
+ ```