Skip to content

This repository is an attempt to create a deep learning framework to aid in faster learning process for newbies in the deep learning field.

License

Notifications You must be signed in to change notification settings

RAAKASH/DeepLearningFramework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deep Learning Framework

This repository is an attempt to create a deep learning framework to aid in faster learning process for newbies in the deep learning field.

The framework is simply an auto-differentiating program which implements the backpropagation algorithm, this is implemented in the graph class of the autogradients.py python file. The mathematical operations are recorded using the class file Tensor, all preliminary math operations are implemented in class file op.
Check the tutorial.ipynb file for information regarding how the framework can be used, the file demostrates 3 examples:

  • 4 Layer Neural network
  • Deep Neural network
  • Simple linear regression.

The tutorial spinoff.ipynb is the same as tutorial.ipynb but with more complex cost functions and the ease of training using the framework thereby exhibiting its usefullness.

The various mathematical operations that are supported currently by the framework are listed below:

  • op.add(x,y)
  • op.subtract(x,y)
  • op.multiply(x,y)
  • op.divide(x,y)
  • op.dot(x,y)
  • op.sum(x,axis=None)
  • op.mean(x)
  • op.reshape(x)
  • op.exp(x)
  • op.mse(x)
  • op.sigmoid(x)
  • op.RelU(x)
  • op.tanh(x)
  • op.softmax(x,axis=None)
  • op.crossentropy(x,y)
  • op.softmax_crossentropy(x,axis=None)

About

This repository is an attempt to create a deep learning framework to aid in faster learning process for newbies in the deep learning field.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published