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: README.md
+24-4Lines changed: 24 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ SeFlow: A Self-Supervised Scene Flow Method in Autonomous Driving
6
6
[poster comming soon]
7
7
[video coming soon]
8
8
9
-
2024/07/05 11:35: I'm working on updating code here now. **Not fully ready yet** until Jul'15.
9
+
2024/07/07 13:45: I'm working on updating code here now. **Not fully ready yet** until Jul'15.
10
10
11
11
Pre-trained weights for models are available in [Zenodo](https://zenodo.org/records/12632962) link. Check usage in [2. Evaluation](#2-evaluation) or [3. Visualization](#3-visualization).
12
12
@@ -60,7 +60,19 @@ docker run -it --gpus all -v /dev/shm:/dev/shm -v /home/kin/data:/home/kin/data
60
60
61
61
Note: Prepare raw data and process train data only needed run once for the task. No need to run till you delete all data.
62
62
63
-
### Prepare raw data
63
+
### Data Preparation
64
+
65
+
Check [dataprocess/README.md](dataprocess/README.md#argoverse-20) for downloading tips for the raw Argoverse 2 dataset
66
+
67
+
Maybe you only want to have the mini processed dataset to try the code quickly, We directly provide one scene inside `train` and `val`. It already converted to `.h5` format and processed with the label data.
68
+
<!-- You can download it from [Zenodo](https://zenodo.org/record/12632962) and extract it to the data folder. -->
69
+
```bash
70
+
# TODO: update the link later when the data is ready
Extract all data to unified h5 format. [Runtime: Normally need 10 mins finished run following commands totally in my desktop, 45 mins for the cluster I used]
python dataprocess/extract_av2.py --av2_type sensor --data_mode test --mask_dir /home/kin/data/av2/3d_scene_flow
70
82
```
71
83
72
-
### Process train data
84
+
####Process train data
73
85
74
86
Process train data for self-supervised learning. Only training data needs this step. [Runtime: Normally need 15 hours for my desktop, 3 hours for the cluster with five available nodes parallel running.]
75
87
@@ -85,6 +97,13 @@ Train SeFlow needed to specify the loss function, we set the config of our best
0 commit comments