nlp [48350662]
Tags: ml, languages/linguistics
- nlpprogress.com/english/word_sense_disambiguation.html
- huggingface.co/transformers/perplexity.html
- github.com/jshin49/deep-nlp-reading-list
1. Counterfactuals
1. Counterfactuals
- vaguely related to judea pearl?
- Hendricks, Lisa Anne, Ronghang Hu, Trevor Darrell, and Zeynep Akata. “Generating Counterfactual Explanations with Natural Language.” ArXiv:1806.09809 [Cs], June 26, 2018. arxiv.org/abs/1806.09809.
2. Sequence2Sequence
2. Sequence2Sequence
- jalammar.github.io/visualizing-neural-machine-translation-mechanics-of-seq2seq-models-with-attention/ - translation example
-
encoder + decoder method
- encoder compiles everything together into a vector called the context, which is then sent into the decoder
- encoders and decoders tend to be recurrent neural networks (rnn)
- encoder as an rnn modifies the hidden state, and passes the final hidden state over as the context
- this is pre-attention!
- post attention, we simply pass all the hidden states over to the decoder