JoeyZUU commited on
Commit
138114b
·
verified ·
1 Parent(s): 5c10a71

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md CHANGED
@@ -1,3 +1,49 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ tags:
4
+ - robotics
5
+ - autonomous-vehicles
6
+ - object-tracking
7
+ - kalman-filter
8
+ - fmcw-lidar
9
+ - doppler-lidar
10
+ - pytorch
11
+ datasets:
12
+ - AevaScenes
13
+ metrics:
14
+ - prediction-error
15
+ pipeline_tag: motion-prediction
16
  ---
17
+
18
+ # D-KalmanNet: Neural Kalman Filtering for Doppler LiDAR Tracking
19
+
20
+ This repository contains the pre-trained weights for **D-KalmanNet**, the tracking component of the DPNet framework. D-KalmanNet integrates a structured Gaussian State Space (GSS) model with a recurrent neural network to accurately predict and track the future states of dynamic obstacles using measurements from (FMCW) **Doppler LiDAR**.
21
+
22
+ The full framework can be found in the official GitHub repository.
23
+
24
+ ## Model Details
25
+
26
+ - **Developed by:** [UUwei-zuo](https://github.com/UUwei-zuo)
27
+ - **Dataset Trained On:** [AevaScenes](https://github.com/aevainc/aevascenes)
28
+ - **Framework:** PyTorch
29
+ - **Associated Code:** [GitHub: UUwei-zuo/DPNet](https://github.com/UUwei-zuo/DPNet)
30
+ - **Paper:** [RA-L '26][DPNet: Doppler LiDAR Motion Planning for Highly-Dynamic Environments](https://arxiv.org/abs/2512.00375)
31
+
32
+ ## How to Use
33
+
34
+ Intructions for loading the pretraining `model.pt` or training your custom model can be found in [GitHub: UUwei-zuo/DPNet](https://github.com/UUwei-zuo/DPNet).
35
+
36
+ ## Citation
37
+
38
+ ```bibtex
39
+ @article{zuo2026dpnet,
40
+ author={Zuo, Wei and Ren, Zeyi and Li, Chengyang and Wang, Yikun and Zhao, Mingle and Wang, Shuai and Sui, Wei and Gao, Fei and Wu, Yik-Chung and Xu, Chengzhong},
41
+ journal={IEEE Robotics and Automation Letters},
42
+ title={DPNet: Doppler LiDAR Motion Planning for Highly-Dynamic Environments},
43
+ year={2026},
44
+ volume={11},
45
+ number={6},
46
+ pages={7190-7197},
47
+ doi={10.1109/LRA.2026.3685933}
48
+ }
49
+ ```