kin-zhang commited on
Commit
8c5cd41
β€’
1 Parent(s): fe1aa24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -4
README.md CHANGED
@@ -12,8 +12,14 @@ Please check the usage on [KTH-RPL/DeFlow](https://github.com/KTH-RPL/DeFlow) or
12
  - [DeFlow](https://github.com/KTH-RPL/DeFlow): Supervised learning scene flow, model included is trained on Argoverse 2
13
  - [SeFlow](https://github.com/KTH-RPL/SeFlow): **Self-Supervised** learning scene flow, model included is trained on Argoverse 2. Paper also reported Waymo result, the weight cannot be shared according to [Waymo Term](https://waymo.com/open/terms/). More detail discussion [issue 8](https://github.com/KTH-RPL/SeFlow/issues/8#issuecomment-2464224813).
14
 
15
- DeFlow Result Video Preview:
16
- https://github.com/KTH-RPL/DeFlow/assets/35365764/9b265d56-06a9-4300-899c-96047a0da505
 
 
 
 
 
 
17
 
18
  <details> <summary>🎁 <b>One repository, All methods!</b> </summary>
19
  <!-- <br> -->
@@ -22,8 +28,8 @@ You can try following methods in our code without any effort to make your own be
22
  - [x] [SeFlow](https://arxiv.org/abs/2407.01702) (Ours πŸš€): ECCV 2024
23
  - [x] [DeFlow](https://arxiv.org/abs/2401.16122) (Ours πŸš€): ICRA 2024
24
  - [x] [FastFlow3d](https://arxiv.org/abs/2103.01306): RA-L 2021
25
- - [x] [ZeroFlow](https://arxiv.org/abs/2305.10424): ICLR 2024, their pre-trained weight can covert into our format easily through [the script](tools/zerof2ours.py).
26
- - [ ] [NSFP](https://arxiv.org/abs/2111.01253): NeurIPS 2021, faster 3x than original version because of [our CUDA speed up](assets/cuda/README.md), same (slightly better) performance. Done coding, public after review.
27
  - [ ] [FastNSF](https://arxiv.org/abs/2304.09121): ICCV 2023. Done coding, public after review.
28
  <!-- - [ ] [Flow4D](https://arxiv.org/abs/2407.07995): 1st supervise network in the new leaderboard. Done coding, public after review. -->
29
  - [ ] ... more on the way
 
12
  - [DeFlow](https://github.com/KTH-RPL/DeFlow): Supervised learning scene flow, model included is trained on Argoverse 2
13
  - [SeFlow](https://github.com/KTH-RPL/SeFlow): **Self-Supervised** learning scene flow, model included is trained on Argoverse 2. Paper also reported Waymo result, the weight cannot be shared according to [Waymo Term](https://waymo.com/open/terms/). More detail discussion [issue 8](https://github.com/KTH-RPL/SeFlow/issues/8#issuecomment-2464224813).
14
 
15
+ The files we included and all test result reports can be found [v2 leaderboard](https://github.com/KTH-RPL/DeFlow/discussions/6) and [v1 leaderboard](https://github.com/KTH-RPL/DeFlow/discussions/2).
16
+ * [seflow_best.ckpt](https://huggingface.co/kin-zhang/OpenSceneFlow/blob/main/seflow_best.ckpt): trained on Argoverse 2 sensor set with self-supervised way.
17
+ * [deflow_best.ckpt](https://huggingface.co/kin-zhang/OpenSceneFlow/blob/main/deflow_best.ckpt): trained on Argoverse 2 sensor set with ground truth using deflowLoss function.
18
+ * [fastflow3d_best.ckpt](https://huggingface.co/kin-zhang/OpenSceneFlow/blob/main/fastflow3d_best.ckpt): trained on Argoverse 2 sensor set with ground truth using ff3dLoss function.
19
+ * ... more models on the way
20
+ * [demo_data.zip](https://huggingface.co/kin-zhang/OpenSceneFlow/blob/main/demo_data.zip): 613Mb, a mini-dataset for user to quickly run train/val code. Check usage in [this section](https://github.com/KTH-RPL/SeFlow?tab=readme-ov-file#1-run--train).
21
+ * [waymo_map.tar.gz](https://huggingface.co/kin-zhang/OpenSceneFlow/blob/main/waymo_map.tar.gz): to successfully process waymo data with ground segmentation included to unified h5 file. Check usage in [this README](https://github.com/KTH-RPL/SeFlow/blob/main/dataprocess/README.md#waymo-dataset).
22
+
23
 
24
  <details> <summary>🎁 <b>One repository, All methods!</b> </summary>
25
  <!-- <br> -->
 
28
  - [x] [SeFlow](https://arxiv.org/abs/2407.01702) (Ours πŸš€): ECCV 2024
29
  - [x] [DeFlow](https://arxiv.org/abs/2401.16122) (Ours πŸš€): ICRA 2024
30
  - [x] [FastFlow3d](https://arxiv.org/abs/2103.01306): RA-L 2021
31
+ - [x] [ZeroFlow](https://arxiv.org/abs/2305.10424): ICLR 2024, their pre-trained weight can covert into our format easily through [the script](https://github.com/KTH-RPL/SeFlow/tools/zerof2ours.py).
32
+ - [ ] [NSFP](https://arxiv.org/abs/2111.01253): NeurIPS 2021, faster 3x than original version because of [our CUDA speed up](https://github.com/KTH-RPL/SeFlow/assets/cuda/README.md), same (slightly better) performance. Done coding, public after review.
33
  - [ ] [FastNSF](https://arxiv.org/abs/2304.09121): ICCV 2023. Done coding, public after review.
34
  <!-- - [ ] [Flow4D](https://arxiv.org/abs/2407.07995): 1st supervise network in the new leaderboard. Done coding, public after review. -->
35
  - [ ] ... more on the way