Skip to content

kartik-hegde/Vectorized-Neural-Network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Vectorized-Neural-Network

Python implementation of Neural Network class, fully vectorized and makes use on numpy's matrix multiplication for better performance.

Can be used to create a neural net with as many hidden layers as needed.

Usage:

# create a network with 10 input, 5 hidden, and 2 output nodes
n = neuralNet(10, 5, 2)
# training
n.learn(data_train)
#test
n.test(data_test)

About

Python implementation of Neural Network class, fully vectorized and makes use on numpy's matrix multiplication for better performance.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages