-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
29 lines (20 loc) · 1001 Bytes
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This file contains the constant paths used in the project's scripts.
# When using these scripts, please make sure to modify the paths according to your preferences.
# Root path for the Cityscapes dataset
ROOT_PATH = 'dataset/cityscapes'
# Path for the real-world videos in the Cityscapes dataset
REAL_PATH = 'dataset/cityscapes/images'
# Path for the depth maps videos in the Cityscapes dataset
DEPTH_PATH = 'dataset/cityscapes/depth'
# Path for the denoised depth maps videos in the Cityscapes dataset
DENOISED_DEPTH_PATH = 'dataset/cityscapes/denoised_depth'
# Output directory for real-world video models
REAL_OUTDIR = 'models/cityscapes/real'
# Output directory for depth map videomodels
DEPTH_OUTDIR = 'models/cityscapes/depth'
# Output directory for generated samples
SAMPLES_OUTDIR = 'samples/cityscapes'
# Path for saving the depth model
DEPTH_MODEL_PATH = 'models/cityscapes/depth_model.pt'
# Path for saving the GD-VDM model
GD_VDM_MODEL_PATH = 'models/cityscapes/gdvdm_model.pt'