0

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?

alko
  • 46,136
  • 12
  • 94
  • 102

1 Answers1

1

For different layer activation functions meaning, just google tanh activation function. One of the links, containing java implementation details.

If you're not familar with neueral network computations, pleas refer to NEURAL NETWORKS

There are lot of different already built NN libraries for almost all programming languages. Here is one for java.

alko
  • 46,136
  • 12
  • 94
  • 102