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
Clone the repository, then install the dependencies.
50
50
51
51
```
52
-
cd DWM
52
+
cd OpenDWM
53
53
git submodule update --init --recursive
54
-
python -m pip install requirements.txt -r
54
+
python -m pip install -r requirements.txt
55
55
```
56
56
57
57
## Models
58
58
59
+
### Video Models
60
+
59
61
Our cross-view temporal SD (CTSD) pipeline support loading the pretrained SD 2.1, 3.0, 3.5, or the checkpoints we trained on the autonomous driving datasets.
60
62
61
63
| Base model | Text conditioned <br/> driving generation | Text and layout (box, map) <br/> conditioned driving generation |
@@ -64,6 +66,15 @@ Our cross-view temporal SD (CTSD) pipeline support loading the pretrained SD 2.1
### Layout conditioned LiDAR generation with MaskGIT pipeline
99
+
100
+
1. Download LiDAR VQVAE and LiDAR MaskGIT generation model checkpoint.
101
+
2. Prepare the dataset ( [nuscenes_scene-0627_lidar_package.zip](http://103.237.29.236:10030/nuscenes_scene-0627_lidar_package.zip) ).
102
+
3. Modify the values of `json_file`, `vq_point_cloud_ckpt_path`, `vq_blank_code_path` and `model_ckpt_path` to the paths of your dataset and checkpoints in the json file `examples/lidar_maskgit_preview.json` .
103
+
4. Run the following command to visualize the LiDAR of the validation set and save the generated point cloud as `.bin` file.
0 commit comments