-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmeta.py
More file actions
25 lines (22 loc) · 692 Bytes
/
meta.py
File metadata and controls
25 lines (22 loc) · 692 Bytes
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
mixture = {
'train_root': '/data/fuzhuolin/cross_age/data/aligned_dlib_112x96/mixture/train',
'val_root': '/data/fuzhuolin/cross_age/data/aligned_dlib_112x96/mixture/val',
'pat': '_|\.',
'pos': 1,
'n_cls': 24652
}
FGNET = {
'train_root': '/data/fuzhuolin/cross_age/data/aligned_dlib_112x96/FGNET/train',
'val_root': '/data/fuzhuolin/cross_age/data/aligned_dlib_112x96/FGNET/val',
'pat': '_|\.',
'pos': 1,
'n_cls': 82
}
vgg_toy = {
'train_root': '/data/fuzhuolin/cross_age/data/aligned_dlib_112x96/VGG_toy',
'val_root': None,
'pat': '_|\.',
'pos': 1,
'n_cls': 8
}
age_cutoffs = [12, 18, 25, 35, 45, 55, 65]