-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
99 lines (87 loc) · 2.28 KB
/
config.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
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
# 选择你的LaTeX编译引擎:
# - pdflatex
# - xelatex
# - lualatex
engine: pdflatex
# 填写你的文件名
filename: example
# 网络层数
layers: 8
# 不同层之间的间隔
# - default(96)
# - 自定义的数值(eg. 20, 55)
layerSpace: default
# 建议width,height不要超过50
# layers中设置了几层,后面就写几层,例如我这里是5层,所以我需要写1,2,3,4,5
# 第一层
1:
# 特征图数量
feature maps: 3
# 绘制图片的宽度
width: 42
# 绘制图片的长度
height: 42
# 是否绘制巻积核(巻积核+放缩线),注意:如果你下一层的feature maps为1,那么
# 你将exist kernel设为True是没有作用的,它只会画出一个巻积核
exist kernel: True
# 按照latex的语法填写 ~表示空格 \times表示乘号
maps information: Input\\ 3 @ 32\times 32
layer information: Convolution\\ 5\times 5~kernel
# 第二层
2:
feature maps: 8
width: 30
height: 30
exist kernel: True
maps information: Feature~maps\\ 32 @ 18\times 18
layer information: Convolution\\ 2\times 2~kernel
# 第三层
3:
feature maps: 16
width: 24
height: 24
exist kernel: True
maps information: Feature~maps\\ 32 @ 10\times 10
layer information: Convolution\\ 5\times 5~kernel
# 第三层
4:
feature maps: 24
width: 16
height: 16
exist kernel: True
maps information: Feature~maps\\ 48 @ 6\times 6
layer information: Maxpooling\\ 2\times 2~kernel
# 第五层
5:
feature maps: 28
width: 12
height: 12
exist kernel: False
maps information: Feature~maps\\ 48 @ 4\times 4
layer information: Flatten
# 第六层
6:
# feature maps为1,意味着只有1张特征图,这时候用height表示有多少个unit,
# width代表可视化unit的边长
feature maps: 1
width: 1
height: 40
exist kernel: False
maps information: Hidden~units\\ 768
layer information: Fully\\ connected
# 第七层
7:
feature maps: 1
width: 1
height: 32
exist kernel: False
maps information: Hidden~units\\ 500
layer information: Fully\\ connected
# 第八层
8:
feature maps: 1
width: 1
height: 2
exist kernel: False
maps information: Outputs~2
layer information: " "