-
Notifications
You must be signed in to change notification settings - Fork 5
/
DirSpec.txt
103 lines (102 loc) · 3.78 KB
/
DirSpec.txt
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.
├── CameraTest.py
├── CheckPoints
│ ├── snapshot_linear
│ │ └── checkpoint.pth.tar
│ ├── snapshot_pfld
│ │ └── checkpoint.pth.tar
│ ├── tensorboard_linear
│ │ ├── data
│ │ │ └── loss
│ │ │ ├── train loss
│ │ │ │ └── events.out.tfevents.1573549381.kenny-desktop
│ │ │ └── val loss
│ │ │ └── events.out.tfevents.1573549381.kenny-desktop
│ │ └── events.out.tfevents.1573549359.kenny-desktop
│ ├── tensorboard_pfld
│ │ ├── data
│ │ │ └── loss
│ │ │ ├── train loss
│ │ │ │ └── events.out.tfevents.1573561640.kenny-desktop
│ │ │ └── val loss
│ │ │ └── events.out.tfevents.1573561640.kenny-desktop
│ │ └── events.out.tfevents.1573561341.kenny-desktop
│ ├── train_linear.logs
│ └── train_pfld.logs
├── Data
│ ├── ODATA
│ │ ├── linear.py
│ │ ├── Mirror21.txt
│ │ ├── pfld.py
│ │ ├── SrcImage
│ │ │ ├── I
│ │ │ └── II
│ │ ├── TestData
│ │ │ ├── imgs
│ │ │ └── labels.txt
│ │ └── TrainData
│ │ ├── imgs
│ │ └── labels.txt
│ └── WFLW
│ ├── Mirror98.txt
│ ├── pfld.py
│ ├── WFLW_annotations
│ │ ├── list_98pt_rect_attr_train_test
│ │ │ ├── list_98pt_rect_attr_test.txt
│ │ │ ├── list_98pt_rect_attr_train.txt
│ │ │ └── README
│ │ └── list_98pt_test
│ │ ├── list_98pt_test_blur.txt
│ │ ├── list_98pt_test_expression.txt
│ │ ├── list_98pt_test_illumination.txt
│ │ ├── list_98pt_test_largepose.txt
│ │ ├── list_98pt_test_makeup.txt
│ │ ├── list_98pt_test_occlusion.txt
│ │ ├── list_98pt_test.txt
│ │ └── README
│ └── WFLW_images
├── DataLoader
│ ├── linear.py
│ ├── pfld.py
│ └── __pycache__
│ ├── linear.cpython-37.pyc
│ └── pfld.cpython-37.pyc
├── DirSpec.txt
├── Loss
│ ├── linear.py
│ ├── pfld.py
│ └── __pycache__
│ ├── linear.cpython-37.pyc
│ └── pfld.cpython-37.pyc
├── Models
│ ├── linear.py
│ ├── pfld.py
│ └── __pycache__
│ ├── linear.cpython-37.pyc
│ └── pfld.cpython-37.pyc
├── Mtcnn
│ ├── detector.py
│ ├── onet.npy
│ ├── pnet.npy
│ └── rnet.npy
├── README.md
├── Requirements.txt
├── Results
│ ├── LinearModel
│ │ ├── loss.png
│ │ ├── result1.png
│ │ └── result2.png
│ └── PfldModel
│ ├── loss.png
│ └── result.png
├── ShowTime.py
├── Test_linear.py
├── Test_pfld.py
├── Train_linear.py
├── Train_pfld.py
└── Utils
├── parallel.py
├── __pycache__
│ └── utils.cpython-37.pyc
└── utils.py
39 directories, 61 files