-
Beam Search
September 8, 2021Explanation of beam search decoding as a trade-off between greedy decoding and exhaustive search in sequence generation.
2 min read ·nlp -
Attention
September 8, 2021Explanation of the attention mechanism in Seq2Seq models, covering attention vectors, context vectors, teacher forcing, and similarity functions.
4 min read ·nlp -
LSTM, GRU
September 7, 2021Detailed explanation of LSTM and GRU architectures, covering gate mechanisms, cell state, and how they solve RNN's long-term dependency problem.
2 min read ·nlp -
RNNs
September 7, 2021Deep dive into RNN types (one-to-one, one-to-many, many-to-many), character-level language models, and LSTM/GRU architectures.
4 min read ·nlp -
pathlib
September 7, 2021Introduction to Python's pathlib module for cleaner, object-oriented file path manipulation as an alternative to os.path.
1 min read ·python -
NLP Preprocessing
September 6, 2021NLP text preprocessing techniques: stopword removal, lemmatization, and punctuation handling with NLTK and spaCy.
1 min read ·nlp
2021