名称 | 表达式 | 说明 |
---|---|---|
Sigmoid | 将任意实数变成概率 | |
tanh | 将任意实数变成-1到1之间的数 | |
relu | 丢弃负的部分 | |
dropout | 随机置0 | |
identity | 原样输出 |
"transfunc": "sigmoid",
"transfunc": {
"type": "tanh"
}
"transfunc": "dropout",
"transfunc": {
"type": "dropout",
"proba": 0.5,
"actiontype": "train"
}
注: 由于dropout传递函数在训练与测试(预测)中计算方式不一样, 所以要用actiontype表明是哪种场景, train/inctrain, predict.