I want to know how does pybrain give the predicition according the weight. For example, I have specified
network=buildNetwork(traindata.indim, 4, traindata.outdim,
hiddenclass = TanhLayer, outclass= TanhLayer).
Suppose I know the weights of this trained network, how can I do the prediciton myself? I need to calculate the result in another program using Java. Or what is the activate function of this network?