Click here to Skip to main content
15,879,096 members
Articles / Programming Languages / UML

Designing And Implementing A Neural Network Library For Handwriting Detection, Image Analysis etc.- The BrainNet Library - Full Code, Simplified Theory, Full Illustration, And Examples

Rate me:
Please Sign up or sign in to vote.
4.76/5 (97 votes)
21 Oct 2009CPOL26 min read 372.5K   7.8K   356  
This article will explain the actual concepts and implementation of Backward Propagation Neural Networks very easily - see project code and samples, like a simple pattern detector, a hand writing detection pad, an xml based neural network processing language etc in the source zip.
Imports System.Reflection
Imports System.Runtime.InteropServices

''' General Information about an assembly is controlled through the following 
''' set of attributes. Change these attribute values to modify the information
''' associated with an assembly.

''' Review the values of the assembly attributes

<Assembly: AssemblyTitle("")> 
<Assembly: AssemblyDescription("")> 
<Assembly: AssemblyCompany("")> 
<Assembly: AssemblyProduct("")> 
<Assembly: AssemblyCopyright("")> 
<Assembly: AssemblyTrademark("")> 
<Assembly: CLSCompliant(True)> 

'''The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("DB7B1176-D29A-4C59-8ADD-8B3960BEBCD5")> 

''' Version information for an assembly consists of the following four values:
'''
'''      Major Version
'''      Minor Version 
'''      Build Number
'''      Revision
'''
''' You can specify all the values or you can default the Build and Revision Numbers 
''' by using the '''*''' as shown below:

<Assembly: AssemblyVersion("1.0.*")> 

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 Code Project Open License (CPOL)


Written By
Architect
India India
Architect, Developer, Speaker | Wannabe GUT inventor & Data Scientist | Microsoft MVP in C#

Comments and Discussions