Skip to content

Commit 0d55203

Browse files
authored
Merge pull request #213 from rowanc1/patch-1
Remove likely copy-paste of pilcrow ("¶")
2 parents af927e3 + 5ae3d37 commit 0d55203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/tutorial-nlp-from-scratch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ emb_path = textproc.unzipper(glove, 'glove.6B.300d.txt')
441441
emb_matrix = textproc.loadGloveModel(emb_path)
442442
```
443443

444-
## 3. Build the Deep Learning Model
444+
## 3. Build the Deep Learning Model
445445
It is time to start implementing our LSTM! You will have to first familiarize yourself with some high-level concepts of the basic building blocks of a deep learning model. You can refer to the [Deep learning on MNIST from scratch tutorial](https://numpy.org/numpy-tutorials/content/tutorial-deep-learning-on-mnist.html) for the same.
446446

447447
You will then learn how a Recurrent Neural Network differs from a plain Neural Network and what makes it so suitable for processing sequential data. Afterwards, you will construct the building blocks of a simple deep learning model in Python and NumPy and train it to learn to classify the sentiment of a piece of text as positive or negative with a certain level of accuracy

0 commit comments

Comments
 (0)