jeffheaton / encog-java-core

http://www.heatonresearch.com/encog
Other
742 stars 268 forks source link

How to build a RBF network with two output neurons #242

Closed ChrisCSIE closed 7 years ago

ChrisCSIE commented 7 years ago

i want to build a RBF network base on MultiRadial.java (https://github.com/encog/encog-java-examples/blob/master/src/main/java/org/encog/examples/neural/radial/MultiRadial.java)

but in MultiRadial.java, it use SVDTraining as MLTrain, so it only use one output neuron

What kind of Training Type I should use for build a RBFN with two output neurons?

jeffheaton commented 7 years ago

It is quite true that SVD requires a single output neuron. For multiple output neurons you will need to use backpropagation. It will not be as effective, but it should work.