Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C#

Neural Network for Recognition of Handwritten Digits in C#

Rate me:
Please Sign up or sign in to vote.
4.93/5 (89 votes)
14 Mar 2012MIT9 min read 307.8K   48K   217  
This article is an example of an artificial neural network designed to recognize handwritten digits.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace NeuralNetworkLibrary
{
    public class NNNeuronOutputsList:List<NNNeuronOutputs>
    {
        public NNNeuronOutputsList()
       {
       
       }
        public NNNeuronOutputsList(int capacity)
            : base(capacity)
        {
            
        }
        public NNNeuronOutputsList(IEnumerable<NNNeuronOutputs> collection)
            : base(collection)
        {
            
        }
        
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Vietnam Maritime University
Vietnam Vietnam
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions