Datasets:

Modalities:
Image
Libraries:
Datasets
License:
alexmelekhin commited on
Commit
f090828
·
verified ·
1 Parent(s): 3d31e3a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -11,3 +11,23 @@ pretty_name: ' ITLP Campus Indoor'
11
  - 📚 **Educational and research projects** on multimodal localization, machine learning, and computer vision.
12
  - 📈 **Benchmarking** and comparative analysis of global localization algorithms.
13
  - 🎯 **Creating machine learning models** robust to environmental changes and external conditions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  - 📚 **Educational and research projects** on multimodal localization, machine learning, and computer vision.
12
  - 📈 **Benchmarking** and comparative analysis of global localization algorithms.
13
  - 🎯 **Creating machine learning models** robust to environmental changes and external conditions.
14
+
15
+ ---
16
+
17
+ # ❗ Please note
18
+
19
+ **This dataset is currently not compatible with the `datasets` library.**
20
+ The recommended way to download the data is by using the `huggingface_hub` library.
21
+ Example code snippet:
22
+
23
+ ```python
24
+ from pathlib import Path
25
+ from huggingface_hub import snapshot_download
26
+
27
+ out_dir = Path("/dir/to/save/data")
28
+ out_dir.mkdir(parents=True, exist_ok=True)
29
+
30
+ snapshot_download(repo_id="OPR-Project/ITLP-Campus-Indoor", repo_type="dataset", local_dir=out_dir)
31
+ ```
32
+
33
+ For reading and working with the data, we recommend using the OpenPlaceRecognition library: https://github.com/OPR-Project/OpenPlaceRecognition