-
Notifications
You must be signed in to change notification settings - Fork 17
/
data.yaml
33 lines (30 loc) · 987 Bytes
/
data.yaml
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
30
31
32
33
_shapenet_path: "../data/shapenet/"
_shapenet_categories: ['02691156', '02828884', '02933112', '02958343', '03211117', '03001627', '03636649',
'03691459', '04090263', '04256520', '04379243', '04401088', '04530566']
_shapenet_custom_name: "shapenet"
train_dataset: ShapeNetDataset
train_val_num_workers: 16
train_kwargs:
onet_base_path: ${_shapenet_path}
resolution: ${resolution}
categories: ${_shapenet_categories}
custom_name: ${_shapenet_custom_name}
split: "train"
random_seed: 0
val_dataset: ShapeNetDataset
val_kwargs:
onet_base_path: ${_shapenet_path}
resolution: ${resolution}
categories: ${_shapenet_categories}
custom_name: ${_shapenet_custom_name}
split: "val"
random_seed: "fixed"
test_dataset: ShapeNetDataset
test_num_workers: 8
test_kwargs:
onet_base_path: ${_shapenet_path}
resolution: ${resolution}
categories: ${_shapenet_categories}
custom_name: ${_shapenet_custom_name}
split: "test"
random_seed: "fixed"