-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a55b132
commit 9b3b5be
Showing
6 changed files
with
42 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Normalization | ||
- [ ] Batch Normalization | ||
- [ ] Layer Normalization | ||
- [ ] Group Normalization |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Optimizers | ||
- [ ] Stochastic Gradient Descent | ||
- [ ] Adam | ||
- [ ] AdaGrad | ||
- [ ] RMSprop |