有没有办法为CNTK(Python API)中的层提供用户定义的激活功能,而不仅仅是tanh,relu等原始层?
像这样
def f(x):
return x * x
LSTM(number_of_cells, activation=f)
最佳答案
是的,您编写的内容应该可以正常使用。
本教程可能对您有用:
https://www.cntk.ai/Tutorials/CVPR2017/CVPR_2017_Tutorial_final.pdf
另外,CNTK还提供了许多教程和手册:
https://github.com/Microsoft/CNTK/tree/master/Tutorials
https://github.com/Microsoft/CNTK/tree/master/Manual
关于python - CNTK中的用户定义的激活功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45513998/