Link dataset to paper, code snippet
Browse filesThis PR links the dataset to the paper page: https://huggingface.co/papers/2407.06190, and as a code snippet to showcase how to download the data.
Cheers!
README.md
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- autonomous-driving
|
4 |
+
---
|
5 |
+
|
6 |
+
# SuperPixel dataset
|
7 |
+
|
8 |
+
This repository contains the data of the paper [4D Contrastive Superflows are Dense 3D Representation Learners(https://huggingface.co/papers/2407.06190).
|
9 |
+
|
10 |
+
Data can be downloaded using the one-liner `hf_hub_download`, for instance:
|
11 |
+
|
12 |
+
```python
|
13 |
+
from huggingface_hub import hf_hub_download
|
14 |
+
|
15 |
+
filepath = hf_hub_download(repo_id="Xiangxu-0103/SuperFlow_SuperPixel", filename="downstream_nuscenes_infos_train_1.pkl", repo_type="dataset")
|
16 |
+
```
|