Skip to content

Commit b1f7f46

Browse files
committed
Updated overview
1 parent 8cc2775 commit b1f7f46

9 files changed

+2021
-203
lines changed
File renamed without changes.

011-RNN-LSTM-Toxic.ipynb renamed to 011-RNN-LSTM-Toxic-Copy1.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@
792792
"name": "python",
793793
"nbconvert_exporter": "python",
794794
"pygments_lexer": "ipython3",
795-
"version": "3.6.6"
795+
"version": "3.6.4"
796796
}
797797
},
798798
"nbformat": 4,

012-CNN-1D-Toxic.ipynb

Lines changed: 892 additions & 0 deletions
Large diffs are not rendered by default.

012-PreTrained-Toxic.ipynb renamed to 013-PreTrained-Words-Toxic.ipynb

Lines changed: 143 additions & 197 deletions
Large diffs are not rendered by default.

014-PreTrained-Sentence-Toxic.ipynb

Lines changed: 970 additions & 0 deletions
Large diffs are not rendered by default.

013-Generating-Text.ipynb renamed to 015-Generating-Text.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@
11551155
"name": "python",
11561156
"nbconvert_exporter": "python",
11571157
"pygments_lexer": "ipython3",
1158-
"version": "3.6.6"
1158+
"version": "3.6.4"
11591159
}
11601160
},
11611161
"nbformat": 4,

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ Notebook Overviews
2121
- **008**: Data Augmentation - Dosa/No Dosa
2222
- **009**: Transfer Learning - Dosa/No Dosa
2323
- **010**: Theory & Concept - Natural Language Processing
24-
- **011**: Pre-Trained Embedding - NLP
25-
- **012**: Recurrent Neural Network - Toxic Classification
24+
- **011**: Recurrent Neural Network - Toxic Classification
25+
- **012**: Convolution - 1D - Toxic Classification
26+
- **013**: Pre-Trained Embedding - Words - Toxic Classification
27+
- **014**: Pre-Trained Embedding - Sentences - Toxic Classification
28+
- **015**: Generating Text
2629

2730
## Resources
2831

Version1/05-Embedding.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@
800800
"name": "python",
801801
"nbconvert_exporter": "python",
802802
"pygments_lexer": "ipython3",
803-
"version": "3.6.6"
803+
"version": "3.6.4"
804804
}
805805
},
806806
"nbformat": 4,

dl-overview.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ _**Getting Started with Image & Text**_
3131

3232
- **Supervised**: Regression, Classification, ...
3333
- Unsupervised: Dimensionality Reduction, Clustering, ...
34-
- Semi-supervised
34+
- Self-supervised
3535
- Reinforcement
3636

3737
---
@@ -126,6 +126,8 @@ Core Layers
126126

127127
# Best Practices
128128

129+
---
130+
129131
## Pre-processing
130132
- **Normalize** / **Whiten** your data
131133
- **Scale** your data appropriately (for outlier)
@@ -134,13 +136,17 @@ Core Layers
134136
- **Stratified** split for multi-class data
135137
- **Shuffle** data for non-sequence data. Careful for sequence!!
136138

139+
---
140+
137141
## General Architecture
138142
- Use **ADAM** Optimizer
139143
- Use **RELU** for non-linear activation
140144
- Add **Bias** to each layer
141145
- Use **Xavier** or **Variance-Scaling** initialisation
142146
- Refer to output layers activation & loss function guidance
143147

148+
---
149+
144150
## Dense Architecture
145151
- No. of units reduce in deeper layer
146152
- Units are typically 2^n
@@ -150,6 +156,7 @@ Core Layers
150156
- Increase **Convoluton filters** as you go deeper in 32 -> 64 -> 128
151157
- Use **Pooling** to subsample: Makes image robust from translation, scaling, rotation
152158

159+
---
153160

154161
## Learning Process
155162
- **Validation Process**

0 commit comments

Comments
 (0)