You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dataprocess/README.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,47 +12,47 @@ We've updated the process dataset for:
12
12
-[x] Waymo: check [here](#waymo-dataset). The process script was involved from [SeFlow](https://github.com/KTH-RPL/SeFlow).
13
13
-[ ] nuScenes: done coding, public after review. Will be involved later by another paper.
14
14
15
-
If you want to use all datasets above, there is a specific process environment in [envprocess.yml](../envprocess.yml) to install all the necessary packages. As Waymo package have different configuration and conflict with the main environment. Setup through the following command:
15
+
If you want to use all datasets above, there is a specific process environment in [envprocess.yaml](../envprocess.yaml) to install all the necessary packages. As Waymo package have different configuration and conflict with the main environment. Setup through the following command:
16
16
17
17
```bash
18
-
conda env create -f envprocess.yml
18
+
conda env create -f envprocess.yaml
19
19
conda activate dataprocess
20
+
# NOTE we need **manually reinstall numpy** (higher than 1.22)
21
+
# * since waymo package force numpy==1.21.5, BUT!
22
+
# * hdbscan w. numpy<1.22.0 will raise error: 'numpy.float64' object cannot be interpreted as an integer
23
+
# * av2 need numpy >=1.22.0, waymo with numpy==1.22.0 will be fine on code running.
24
+
pip install numpy==1.22
20
25
```
21
26
22
27
## Download
23
28
24
29
### Argoverse 2.0
25
30
26
-
Install their download tool:
27
-
```bash
28
-
mamba install s5cmd -c conda-forge
29
-
```
30
-
31
-
Download the dataset:
31
+
Install their download tool `s5cmd`, already in our envprocess.yaml. Then download the dataset:
Then to quickly pre-process the data, we can [read these commands](#process) on how to generate the pre-processed data for training and evaluation. This will take around 0.5-2 hour for the whole dataset (train & val) based on how powerful your CPU is.
45
45
46
-
More [self-supervised data in AV2 LiDAR only](https://www.argoverse.org/av2.html#lidar-link), note: It **does not** include **imagery or 3D annotations**. The dataset is designed to support research into self-supervised learning in the lidar domain, as well as point cloud forecasting.
46
+
Optional: More [self-supervised data in AV2 LiDAR only](https://www.argoverse.org/av2.html#lidar-link), note: It **does not** include **imagery or 3D annotations**. The dataset is designed to support research into self-supervised learning in the lidar domain, as well as point cloud forecasting.
0 commit comments