激活
梯度下降的特殊算法。
什么是激活?
用法
GraphBuilder graphBuilder = new NeuralNetConfiguration.Builder()
// 添加超参数和其他层
.addLayer("softmax", new ActivationLayer(Activation.SOFTMAX), "previous_input")
// 添加更多的层和输出
.build();Last updated
Was this helpful?