Search:

Type: Posts; User: DarioP

Search: Search took 0.10 seconds.

  1. Re: Neural Network Programming - Wrong result after training

    Hi Copeg,

    Admittedly I was forgetting to reset lists of inputs and outputs. I added the following:


    public void ResetNetwork() {

    for(int i=0; i < networkLayers.size(); i++) {
    ...
  2. Re: Neural Network Programming - Wrong result after training

    Ho copeg,

    Yes, this is simply a challenge I set myself. I would like to stress that it is not an academic work that will earn me a grade, just something I decided to do. This said, I've been...
  3. Re: Neural Network Programming - Wrong result after training

    Hi angstream, in what ways are they better? I'm not trying to sound skeptical, I'm just not very familiar with them.
  4. Re: Neural Network Programming - Wrong result after training

    Hi copeg,

    You are right, testC appeared to have been wrong. I have fixed it to:



    ArrayList<Double> testC = new ArrayList<Double>();
    testC.add(1.0);
    testC.add(1.0);
    testC.add(0.0);
  5. Neural Network Programming - Wrong result after training

    I am attempting to write a Java implementation of a NeuralNetwork. This consists of:

    A "Network" class
    An abstract "Neuron" class
    An "Hidden Neuron" class, which extends Neuron
    An "Output...
Results 1 to 5 of 5