choyaa commited on
Commit
13add92
·
verified ·
1 Parent(s): cb1686b

Upload data_demo/README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. data_demo/README.md +48 -0
data_demo/README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Demo data layout (`data_demo/`)
2
+
3
+ All demo cases read from this folder. Download from
4
+ [Hugging Face — PiLoT-data](https://huggingface.co/datasets/choyaa/PiLoT-data):
5
+
6
+ ```bash
7
+ # from PiLoT repo root
8
+ ./scripts/download_data_demo.sh
9
+ ```
10
+
11
+ Partial downloads: `./scripts/download_data_demo.sh feicuiwan` or `smbu`.
12
+
13
+ ```
14
+ data_demo/
15
+ ├── 3dgs_model/ # Feicuiwan / Jadebay PLY
16
+ │ └── point_cloud.ply
17
+ ├── smbu_model/ # SMBU CityGaussian checkpoint + COLMAP sparse
18
+ │ ├── checkpoints/
19
+ │ │ └── epoch=60-step=30000.ckpt
20
+ │ └── sparse/sparse/0/
21
+ ├── pretrained_model/ # PiLoT refiner weights (shared by all cases)
22
+ │ └── model@mapscape@512@Fourier.ckpt
23
+ └── query/
24
+ ├── images/
25
+ │ ├── 3dgs_test/ # Feicuiwan query frames
26
+ │ └── smbu_seq2/ # SMBU query frames
27
+ └── poses/
28
+ ├── 3dgs_test.txt # lon lat alt roll pitch yaw
29
+ └── smbu_seq2.txt # x y z pitch roll yaw (normalized)
30
+ ```
31
+
32
+ ## Pose formats
33
+
34
+ | File | Columns |
35
+ |------|---------|
36
+ | `3dgs_test.txt` | `name lon lat alt roll pitch yaw` |
37
+ | `smbu_seq2.txt` | `name x y z pitch roll yaw` |
38
+
39
+ ## Local development note
40
+
41
+ If disk space is tight, `smbu_model/` may be a symlink to your CityGaussian
42
+ training output. The Hugging Face release ships real checkpoint files under
43
+ `data_demo/smbu_model/`.
44
+
45
+ | Variable | Default |
46
+ |----------|---------|
47
+ | `SMBU_MODEL_DIR` | `data_demo/smbu_model` |
48
+ | `CITYGAUSSIAN_ROOT` | `third_party/CityGaussian` |