Skip to content

Commit

Permalink
Updated directory format
Browse files Browse the repository at this point in the history
  • Loading branch information
alishdipani committed Nov 21, 2020
1 parent a55b132 commit 9b3b5be
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 30 deletions.
35 changes: 5 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,12 @@
# Machine-Learning-concepts
This repository contains explanation for various Machine Learning and Deep Learning concepts with Python code implementations from scratch and/or using PyTorch.

## Non-Linearities
- [ ] Sigmoid
- [ ] Tanh
- [ ] ReLU
- [ ] LeakyReLU
## [Non-Linearities](non-linearities)

## Optimizers
- [ ] Stochastic Gradient Descent
- [ ] Adam
- [ ] AdaGrad
- [ ] RMSprop
## [Optimizers](optimizers)

## Losses
- [ ] Mean Squared Error Loss/ L2 Loss
- [ ] Mean Absolute Error/ L1 Loss
- [ ] Cross Entropy Loss
- [ ] Hinge Loss
- [ ] Kullback-Leibler Loss
- [ ] Softmax
- [ ] AM-Softmax
- [ ] AAM-Softmax
- [ ] Prototypical Loss
- [ ] Angular Prototypical Loss
## [Losses](losses)

## Architectures
- [ ] LeNet
- [ ] AlexNet
- [ ] VGG-19
- [ ] ResNet-34
- [ ] ResNet-50
## [Architectures](architectures)

## Normalization
- [ ] Batch Normalization
- [ ] Layer Normalization
## [Normalization](normalization)
7 changes: 7 additions & 0 deletions architectures/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Architectures
- [ ] LeNet
- [ ] AlexNet
- [ ] VGG-19
- [ ] ResNet-18
- [ ] ResNet-34
- [ ] ResNet-50
13 changes: 13 additions & 0 deletions losses/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Losses
- [x] Mean Squared Error Loss/ L2 Loss
- [x] Mean Absolute Error/ L1 Loss
- [ ] Cross Entropy Loss
- [ ] Hinge Loss
- [ ] Kullback-Leibler Loss
- [ ] Softmax
- [ ] AM-Softmax
- [ ] AAM-Softmax
- [ ] Prototypical Loss
- [ ] Angular Prototypical Loss
- [ ] Si-SDR
- [ ] Si-SNR
8 changes: 8 additions & 0 deletions non-linearities/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Non-Linearities
- [x] Sigmoid
- [x] Tanh
- [x] ReLU
- [x] LeakyReLU
- [ ] ELU
- [ ] pReLU
- [ ] GELU
4 changes: 4 additions & 0 deletions normalization/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Normalization
- [ ] Batch Normalization
- [ ] Layer Normalization
- [ ] Group Normalization
5 changes: 5 additions & 0 deletions optimizers/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Optimizers
- [ ] Stochastic Gradient Descent
- [ ] Adam
- [ ] AdaGrad
- [ ] RMSprop

0 comments on commit 9b3b5be

Please sign in to comment.