在训练前馈多层感知器之后,例如,通过做
net = nl.net.newff([[0,1]] * inputs.shape[1], [10, 3], trans)
err_rprop = nl.train.train_rprop(net, inputs, targets, epochs=100, show=10)
有没有办法获得给定测试集的预测输出值?另外,这是在包文档中明确提到的吗?如果是这样,我一直无法找到它。
答案 0 :(得分:1)
如果我理解正确,我认为你正在寻找这个:http://pythonhosted.org/neurolab/ex_newff.html
# Simulate network
out = net.sim(x_test)