Skip to content

Commit ad88224

Browse files
authored
Merge pull request #209 from partev/patch-2
Update tutorial-nlp-from-scratch.md
2 parents c2f4330 + 259cf94 commit ad88224

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
@@ -1051,7 +1051,7 @@ To further enhance and optimize your neural network model, you can consider one
10511051

10521052
Nowadays, LSTMs have been replaced by the [Transformer](https://jalammar.github.io/illustrated-transformer/)( which uses [Attention](https://jalammar.github.io/visualizing-neural-machine-translation-mechanics-of-seq2seq-models-with-attention/) to tackle all the problems that plague an LSTM such as as lack of [transfer learning](https://en.wikipedia.org/wiki/Transfer_learning), lack of [parallel training](https://web.stanford.edu/~rezab/classes/cme323/S16/projects_reports/hedge_usmani.pdf) and a long gradient chain for lengthy sequences
10531053

1054-
Building a neural network from scratch with NumPy is a great way to learn more about NumPy and about deep learning. However, for real-world applications you should use specialized frameworks — such as PyTorch, JAX, TensorFlow or MXNet — that provide NumPy-like APIs, have built-in automatic differentiation and GPU support, and are designed for high-performance numerical computing and machine learning.
1054+
Building a neural network from scratch with NumPy is a great way to learn more about NumPy and about deep learning. However, for real-world applications you should use specialized frameworks — such as PyTorch, JAX or TensorFlow — that provide NumPy-like APIs, have built-in automatic differentiation and GPU support, and are designed for high-performance numerical computing and machine learning.
10551055

10561056
Finally, to know more about how ethics come into play when developing a machine learning model, you can refer to the following resources :
10571057
- Data ethics resources by the Turing Institute. https://www.turing.ac.uk/research/data-ethics

0 commit comments

Comments
 (0)