Thread: Neural Networks

  1. #1
    null pointer Structure's Avatar
    Join Date
    May 2019
    Posts
    338

    Lightbulb Neural Networks

    This is an interesting subject. I have yet to dive into actually coding a neural network but i have been looking in to how it works.

    Very intriguing...
    "without goto we would be wtf'd"

  2. #2
    null pointer Structure's Avatar
    Join Date
    May 2019
    Posts
    338
    Project Neural Network....
    Code:
    struct dendrites {
        int toIndex;
        float weight;
    };
    struct neurons { 
        float value; 
        struct dendrites axon[MAX_DENDRITES];
    };
    "without goto we would be wtf'd"

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Neural networks - am i doing this properly?
    By Bobcat in forum General AI Programming
    Replies: 6
    Last Post: 04-01-2009, 08:48 PM
  2. Neural Networks - Calculating Error Gradients
    By IdioticCreation in forum General AI Programming
    Replies: 14
    Last Post: 02-10-2009, 12:53 AM
  3. Details about artificial neural networks
    By ChadJohnson in forum General AI Programming
    Replies: 1
    Last Post: 07-23-2005, 10:29 AM
  4. Need examples on Neural Networks
    By khpuce in forum General AI Programming
    Replies: 2
    Last Post: 05-23-2005, 11:26 AM
  5. Neural Networks VS. Spike Neural Networks
    By magis in forum General AI Programming
    Replies: 1
    Last Post: 04-12-2005, 06:37 AM

Tags for this Thread