如何删除Pybrain中的连接?我使用one-neuron-per-module技术来定制输入层,单个隐藏层和输出层之间的连接。但是现在我想在训练期间操纵连接,并且一个这样的操作是移除连接/边缘。
在Network类中,我看到addConnection但没有removeConnection函数。有什么好办法吗?
提前致谢。
答案 0 :(得分:0)
您必须修改Connection,将其替换为IdentityConnection - https://github.com/pybrain/pybrain/blob/master/pybrain/structure/connections/identity.py - 我不确定100%。
您还可以查看其他连接类。