dkliang commited on
Commit
c9ae363
·
verified ·
1 Parent(s): aa0d9e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -7
README.md CHANGED
@@ -1,7 +1,72 @@
1
- ---
2
- license: apache-2.0
3
-
4
- ---
5
-
6
- UniFuture
7
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: pytorch
3
+ pipeline_tag: other
4
+ license: apache-2.0
5
+ tags:
6
+ - computer-vision
7
+ - autonomous-driving
8
+ - world-model
9
+ - future-prediction
10
+ - depth-estimation
11
+ - image-to-image
12
+ - 4d-scene-understanding
13
+ - nuscenes
14
+ - unifuture
15
+ ---
16
+
17
+ # UniFuture
18
+
19
+ **UniFuture: A 4D Driving World Model for Future Generation and Perception**
20
+
21
+ Official Hugging Face repository for **UniFuture**.
22
+
23
+ ## Model description
24
+
25
+ UniFuture is a driving world model that jointly models future scene **appearance** and **geometry** within a unified framework.
26
+ Given the current image as input, it predicts future **RGB-depth pairs** for future generation and perception.
27
+
28
+ According to the project description, UniFuture introduces:
29
+
30
+ - **Dual-Latent Sharing** for shared latent learning between image and depth sequences
31
+ - **Multi-scale Latent Interaction** for bidirectional refinement between image and depth features across spatial scales
32
+
33
+ ## Paper
34
+
35
+ **UniFuture: A 4D Driving World Model for Future Generation and Perception**
36
+ ICRA 2026
37
+
38
+ ## Repository contents
39
+
40
+ - `unifuture.safetensors`: pretrained model weights
41
+
42
+ ## Task
43
+
44
+ This repository is intended for research use on **driving world modeling**, including:
45
+
46
+ - future scene generation
47
+ - future depth prediction
48
+ - future perception
49
+
50
+ ## Dataset
51
+
52
+ The paper reports experiments on **nuScenes**.
53
+
54
+ ## Usage
55
+
56
+ Please refer to the official GitHub repository for training, evaluation, and detailed usage instructions:
57
+
58
+ `https://github.com/dk-liang/UniFuture`
59
+
60
+ ## License
61
+
62
+ Apache-2.0
63
+
64
+ ## Citation
65
+
66
+ ```bibtex
67
+ @inproceedings{liang2026UniFuture,
68
+ title={UniFuture: A 4D Driving World Model for Future Generation and Perception},
69
+ author={Liang, Dingkang and Zhang, Dingyuan and Zhou, Xin and Tu, Sifan and Feng, Tianrui and Li, Xiaofan and Zhang, Yumeng and Du, Mingyang and Tan, Xiao and Bai, Xiang},
70
+ booktitle={IEEE International Conference on Robotics and Automation},
71
+ year={2026}
72
+ }