标签: python machine-learning scikit-learn neural-network
文档没有提到任何初始化偏倚神经元的方法。装配后我的准确度相当低。我想这是因为网络中没有偏置神经元。
答案 0 :(得分:0)
根据文档,MultiLayerPerceptron接受weights参数作为每个图层的(weights, biases)元组列表。要检查培训期间偏差是否发生变化,您可以在安装前后检查get_parameters()。
MultiLayerPerceptron
weights
(weights, biases)
get_parameters()