An open API service indexing awesome lists of open source software.

https://github.com/bonifatius94/backprop

Deep Learning Reference Implementation
https://github.com/bonifatius94/backprop

deep-learning numpy reference-implementation

Last synced: 4 months ago
JSON representation

Deep Learning Reference Implementation

Awesome Lists containing this project

README

        

# Backprop - Deep Learning Reference Implementation

## About
This repository outlines the math behind popular deep learning
frameworks like TensorFlow or PyTorch facilitating techniques
based on backpropagation and math calculus.

## Contents

### Deep Regression: Estimate sin(x)
- Architecture: Feed-forward neural network
- Layers: Dense, ReLU, Sigmoid
- Losses: MSE
- Optimizers: SGD, ADAM

```sh
python3 deep_regression.py
```

### Deep Classification: Categorize Hand-Written Digits
- Architecture: Feed-forward neural network
- Layers: Dense, ReLU, Sigmoid
- Losses: Cross Entropy
- Optimizers: SGD, ADAM

```sh
python3 deep_classification.py
```