Datasets:

ArXiv:
License:
alexmelekhin commited on
Commit
14ac6ad
·
verified ·
1 Parent(s): c9f54c7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -12,3 +12,23 @@ This is a modification of the original Oxford RobotCar dataset:
12
  - W. Maddern, G. Pascoe, M. Gadd, D. Barnes, B. Yeomans, and P. Newman, "Real-time Kinematic Ground Truth for the Oxford RobotCar Dataset," *arXiv preprint arXiv:2002.10152*, 2020.
13
 
14
  Authorship belongs to Maddern et al. This version is released under the same [Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/) license.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  - W. Maddern, G. Pascoe, M. Gadd, D. Barnes, B. Yeomans, and P. Newman, "Real-time Kinematic Ground Truth for the Oxford RobotCar Dataset," *arXiv preprint arXiv:2002.10152*, 2020.
13
 
14
  Authorship belongs to Maddern et al. This version is released under the same [Attribution-NonCommercial-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/) license.
15
+
16
+ ---
17
+
18
+ # ❗ Please note
19
+
20
+ **This dataset is currently not compatible with the `datasets` library.**
21
+ The recommended way to download the data is by using the `huggingface_hub` library.
22
+ Example code snippet:
23
+
24
+ ```python
25
+ from pathlib import Path
26
+ from huggingface_hub import snapshot_download
27
+
28
+ out_dir = Path("/dir/to/save/data")
29
+ out_dir.mkdir(parents=True, exist_ok=True)
30
+
31
+ snapshot_download(repo_id="OPR-Project/OxfordRobotCar_OpenPlaceRecognition", repo_type="dataset", local_dir=out_dir)
32
+ ```
33
+
34
+ For reading and working with the data, we recommend using the OpenPlaceRecognition library: https://github.com/OPR-Project/OpenPlaceRecognition