Skip to content

Repo to hold my implementations of various machine learning models

License

Notifications You must be signed in to change notification settings

DRodriq/ML-Models

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

This repo hosts my implementations of various machine models. Current models include

  • Linear Classifier trained with backpropogation as taught in Andrew Ng's Deep Learning course
  • L-Layer Feed Forward Neural Network as taught in Andrew Ng's Deep Learning course

Testing

Each model file contains a main() definition and can be run standalone. Results are stored in results/logs/ff_nn.log and a cost plot can be found in /results/logs and /results/plots An example log entry and plot can be found in each.

There is also an application which can be used by running /app/gui.py

Roadmap

  • Application
    • Batch running models with parallelization
    • File and results management tab
  • Model Functionality
    • Gradient Checking
    • Gradient descent with momentum, RMSProp, ADAM implementations
    • Implement a few regularization methods
    • Implement tunable/decaying learning rate methods
    • Tie learning rate decay to performance checking, try some "smart" tuning while running
    • Batch Norm
    • Expand to multi-class models, softmax
  • Benchmarks against tensorflow implementations for correctness and performance checking
  • Unit tests, defensive checks around datatypes
  • Option to save model parameters, load models from file
  • Dataset Features
    • Shuffle datasets around before each run, split into training, dev, tests sets
    • Synthesize new data examples from existing - rotations, blur, crops
    • Scale, standardize, analyze mean and variance
    • Add and test new datasets
  • Interested Models:
    • RNN
    • CNN
    • NEAT, hyperNEAT, ES-HyperNEAT
    • ART

Application UI

Load datasets and train models alt text Test models and save them to load later alt text Live cost plot alt text

System Design

alt text

About

Repo to hold my implementations of various machine learning models

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages