-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.yml
75 lines (61 loc) · 1.55 KB
/
example.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
BASE_DIR: <change_me>
DATA_DIR: datasets
MODEL_DIR: models
MODELS:
cvmodelz.InceptionV3:
folder: inception
weights:
inat: model.inat.ckpt.npz
imagenet: model.imagenet.ckpt.npz
DATASETS:
CUB200: &cub200
folder: birds/cub200
annotations: "ORIGINAL"
annotation_type: FILE_LIST
n_classes: 200
NAB:
folder: birds/nabirds
annotations: "ORIGINAL"
annotation_type: FILE_LIST
n_classes: 555
BIRDSNAP:
folder: birds/birdsnap
annotations: "RESIZED"
annotation_type: FILE_LIST
n_classes: 500
DOGS:
folder: dogs
annotations: "ORIGINAL"
annotation_type: FILE_LIST
n_classes: 120
EU_MOTHS:
folder: moths
annotation_type: FILE_LIST
annotations: "ORIGINAL"
############ Existing Part Annotations and Part Features
### final dataset composition:
# ${BASE_DIR}/${DATA_DIR}/${DATASETS->folder}/${DATASETS->annotations}
### or if a part type overrides 'annotations'
# ${BASE_DIR}/${DATA_DIR}/${DATASETS->folder}/${PART_TYPES->annotations}
PART_TYPES:
GLOBAL:
feature_suffix: ""
GT:
feature_suffix: _16parts_gt
rescale_size: !!int -1
scales: [0.31]
GT2:
annotations: GT_regrouped
feature_suffix: _5parts_gt
rescale_size: !!int -1
scales: [0.31]
CS_PARTS:
annotations: CS_parts
feature_suffix: _5parts_CS_parts
rescale_size: !!int 427
scales: [-1]
PARTS:
# all <DATASET>_<PART_TYPES> combinations are created implicitely.
# if you want some changes in the configs, then crete here an entry
# and update the config values
{}