Skip to content

Deep Neural Network Model with Gradient Descend Optimization applied in python.

License

Notifications You must be signed in to change notification settings

Enzodtz/python-deep-neural-network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-deep-neural-network

Deep Neural Network Model with Gradient Descend Optimization applied in python

Getting Started

To use this model, you only need to:

  1. Instantiate the model
  2. Train it
  3. Predict values with it
  4. Save the model
  5. Open it later on
from deep_neural_network import *

model = DeepNeuralNetwork()
model.train(X_train, Y_train) # refer to function for more details
model.predict(X)
model.save('filename.pickle')
model = DeepNeuralNetwork.load('filename.picke')

Demo

To see how you can use this model with all its functionalities, refer to example.py.

About

Deep Neural Network Model with Gradient Descend Optimization applied in python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages