File size: 1,099 Bytes
5b633e9
 
 
 
 
 
 
 
9432bd5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41b8a30
9432bd5
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
license: odbl
---

[NCLT Dataset](http://robots.engin.umich.edu/nclt/index.html#top) is The University of Michigan North Campus Long-Term Vision and LIDAR Dataset.

This dataset is a modified version of the NCLT Dataset, which is licensed under the Open Database License (ODbL) v1.0.
As required by the license, this modified version is also released under the ODbL v1.0. You must attribute the original source and share any further modifications under the same license.

---

# ❗ Please note

**This dataset is currently not compatible with the `datasets` library.**
The recommended way to download the data is by using the `huggingface_hub` library.
Example code snippet:

```python
from pathlib import Path
from huggingface_hub import snapshot_download

out_dir = Path("/dir/to/save/data")
out_dir.mkdir(parents=True, exist_ok=True)

snapshot_download(repo_id="OPR-Project/NCLT_OpenPlaceRecognition", repo_type="dataset", local_dir=out_dir)
```

For reading and working with the data, we recommend using the OpenPlaceRecognition library: https://github.com/OPR-Project/OpenPlaceRecognition