Search:

Type: Posts; User: DarioP

Search: Search took 0.15 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...
  6. Thread: Hello! :)

    by DarioP
    Replies
    0
    Views
    1,081

    Hello! :)

    Hello to everyone! :o

    My name is Dario, and am I am a Computer Science student at Sheffield University. I have been learning Java for the past year, but realize I still have a long way to go. Hope...
Results 1 to 6 of 6