Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.09 KB

transfunc_on_angel.md

File metadata and controls

36 lines (29 loc) · 1.09 KB

Angel中的传递函数

1. Angel中的传递函数有:

名称 表达式 说明
Sigmoid 将任意实数变成概率
tanh 将任意实数变成-1到1之间的数
relu 丢弃负的部分
dropout 随机置0
identity 原样输出

下图给出了一些常用的传递函数(部分Angel中没有提供): 传递函数

2. 传递函数的json表示

2.1 无参数的传递函数

"transfunc": "sigmoid",

"transfunc": {
    "type": "tanh"
}

2.2 有参数的传递函数

"transfunc": "dropout",

"transfunc": {
    "type": "dropout",
    "proba": 0.5,
    "actiontype": "train"
}

注: 由于dropout传递函数在训练与测试(预测)中计算方式不一样, 所以要用actiontype表明是哪种场景, train/inctrain, predict.