Skip to content

Commit 4c13b46

Browse files
committed
docs(README): update poster, video link.
TBD update submit to v2 leaderboard.
1 parent 072486b commit 4c13b46

12 files changed

Lines changed: 29 additions & 19 deletions

File tree

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,8 @@ cancel.sh
1616

1717
# slurm log files
1818
*.err
19-
*.out
19+
*.out
20+
21+
# figure
22+
*.png
23+
*.pdf

0_preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Created: 2023-11-01 17:02
33
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
4-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
4+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

1_train.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Created: 2023-07-12 19:30
33
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
4-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
4+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.
@@ -92,6 +92,7 @@ def main(cfg):
9292
print("Total Train Dataset Size: ", len(train_dataset))
9393
print("-"*40+"\n")
9494

95+
# NOTE(Qingwen): search & check: def training_step(self, batch, batch_idx)
9596
trainer.fit(model, train_dataloaders = train_loader, val_dataloaders = val_loader, ckpt_path = cfg.checkpoint)
9697
wandb.finish()
9798

2_eval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Created: 2023-08-09 10:28
33
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
4-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
4+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

3_vis.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Created: 2023-12-26 12:41
33
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
4-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
4+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.
@@ -35,8 +35,8 @@ def main(cfg):
3535
mymodel = ModelWrapper.load_from_checkpoint(cfg.checkpoint, cfg=cfg, eval=True)
3636

3737
wandb_logger = WandbLogger(save_dir=output_dir,
38-
entity="hdmaptest",
39-
project=f"sceneflow-eval",
38+
entity="kth-rpl",
39+
project=f"deflow-eval",
4040
name=f"{cfg.output}",
4141
offline=(cfg.wandb_mode == "offline"))
4242

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
DeFlow
1+
DeFlow: Decoder of Scene Flow Network in Autonomous Driving
22
---
33

4-
[![arXiv](https://img.shields.io/badge/arXiv-2401.16122-b31b1b.svg)](https://arxiv.org/abs/2401.16122) [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/deflow-decoder-of-scene-flow-network-in/scene-flow-estimation-on-argoverse-2)](https://paperswithcode.com/sota/scene-flow-estimation-on-argoverse-2?p=deflow-decoder-of-scene-flow-network-in) [poster coming soon] [video coming soon]
4+
[![arXiv](https://img.shields.io/badge/arXiv-2401.16122-b31b1b?logo=arxiv&logoColor=white)](https://arxiv.org/abs/2401.16122)
5+
[![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/deflow-decoder-of-scene-flow-network-in/scene-flow-estimation-on-argoverse-2)](https://paperswithcode.com/sota/scene-flow-estimation-on-argoverse-2?p=deflow-decoder-of-scene-flow-network-in)
6+
[![poster](https://img.shields.io/badge/Poster-6495ed?style=flat&logo=Shotcut&logoColor=wihte)](https://hkustconnect-my.sharepoint.com/:b:/g/personal/qzhangcb_connect_ust_hk/EXP_uXYmm_tItTWc8MafXHoB-1dVrMnvF1-lCzU1PXAvqQ?e=2FPfBS)
7+
[![video](https://img.shields.io/badge/video-YouTube-FF0000?logo=youtube&logoColor=white)](https://youtu.be/bZ4uUv0nDa0)
58

69
Will present in ICRA'24.
710

811
Task: Scene Flow Estimation in Autonomous Driving. Pre-trained weights for models are available in [Onedrive link](https://hkustconnect-my.sharepoint.com/:f:/g/personal/qzhangcb_connect_ust_hk/Et85xv7IGMRKgqrVeJEVkMoB_vxlcXk6OZUyiPjd4AArIg?e=lqRGhx). Check usage in [2. Evaluation](#2-evaluation) or [3. Visualization](#3-visualization).
912

10-
https://github.com/KTH-RPL/DeFlow/assets/35365764/15581af1-3066-4865-bf72-1242a478b938
11-
1213
**Scripts** quick view in our scripts:
1314

1415
- `0_preprocess.py` : pre-process data before training to speed up the whole training time.
@@ -111,7 +112,9 @@ python tests/scene_flow.py --flow_mode='flow_est' --data_dir=/home/kin/data/av2/
111112

112113
Note: ego_motion already compensated, so the visualization is more clear.
113114

114-
![](assets/docs/vis_res.png)
115+
<!-- ![](assets/docs/vis_res.png) -->
116+
117+
https://github.com/KTH-RPL/DeFlow/assets/35365764/15581af1-3066-4865-bf72-1242a478b938
115118

116119
## Cite & Acknowledgements
117120

@@ -124,6 +127,8 @@ Note: ego_motion already compensated, so the visualization is more clear.
124127
}
125128
```
126129

127-
This implementation is based on codes from several repositories. Thanks to these authors who kindly open-sourcing their work to the community. Please see our paper reference part to get more information. Thanks to Kyle Vedder (ZeroFlow) who kindly discussed their results with us and HKUST Ramlab's member: Jin Wu who gave constructive comments on this work. The computations were enabled by the supercomputing resource Berzelius provided by National Supercomputer Centre at Linköping University and the Knut and Alice Wallenberg Foundation, Sweden.
130+
This implementation is based on codes from several repositories. Thanks to these authors who kindly open-sourcing their work to the community. Please see our paper reference part to get more information.
131+
Thanks to [Kyle Vedder (ZeroFlow)](https://github.com/kylevedder) who kindly discussed their results with us and HKUST Ramlab's member: Jin Wu who gave constructive comments on this work.
132+
The computations were enabled by the supercomputing resource Berzelius provided by National Supercomputer Centre at Linköping University and the Knut and Alice Wallenberg Foundation, Sweden.
128133

129134
❤️: [ZeroFlow](https://github.com/kylevedder/zeroflow), [NSFP](https://github.com/Lilac-Lee/Neural_Scene_Flow_Prior), [FastNSF](https://github.com/Lilac-Lee/FastNSF). Others good code style and tools: [forecast-mae](https://github.com/jchengai/forecast-mae), [kiss-icp](https://github.com/PRBonn/kiss-icp)

scripts/network/dataloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Created: 2023-11-04 15:52
33
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
4-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
4+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

scripts/network/loss_func.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Created: 2023-07-17 00:00
33
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
4-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
4+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
55
#
66
# This work is licensed under the terms of the MIT license.
77
# For a copy, see <https://opensource.org/licenses/MIT>.

scripts/network/models/deflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
# Created: 2023-07-18 15:08
44
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
5-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
5+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
66
#
77
# This work is licensed under the terms of the MIT license.
88
# For a copy, see <https://opensource.org/licenses/MIT>.

scripts/pl_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
# Created: 2023-11-05 10:00
44
# Copyright (C) 2023-now, RPL, KTH Royal Institute of Technology
5-
# Author: Kin ZHANG (https://kin-zhang.github.io/)
5+
# Author: Qingwen Zhang (https://kin-zhang.github.io/)
66
#
77
# This work is licensed under the terms of the MIT license.
88
# For a copy, see <https://opensource.org/licenses/MIT>.

0 commit comments

Comments
 (0)