├── .idea ├── NLP.iml ├── misc.xml └── modules.xml ├── BERT └── BERT.py ├── BiLSTM ├── BiLSTM+Attention.py └── BiLSTM.py ├── Config.json ├── Data_Processing.py ├── FastText └── FastText.py ├── GloVe └── 1 ├── NNLM └── NNLM.py ├── README.md ├── Seq2Seq ├── Seq2Seq+Attention.py └── Seq2Seq.py ├── TextCNN └── textCNN.py ├── TextLSTM └── TextLSTM.py ├── TextRCNN └── TextRCNN.py ├── Transformer └── Transformer.py ├── Vocab_Built.py ├── Word2Vec └── 1 └── images ├── 1667471-ad054c3a8b703f28.png ├── H-softmax.jpg ├── TextRCNN.jpg ├── fasttext.jpg ├── fasttext_model.jpg ├── nnlm.png ├── textCNN.jpg ├── tr_dot.jpg └── transformer.jpg /.idea/NLP.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/.idea/NLP.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /BERT/BERT.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BiLSTM/BiLSTM+Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/BiLSTM/BiLSTM+Attention.py -------------------------------------------------------------------------------- /BiLSTM/BiLSTM.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/Config.json -------------------------------------------------------------------------------- /Data_Processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/Data_Processing.py -------------------------------------------------------------------------------- /FastText/FastText.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GloVe/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NNLM/NNLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/NNLM/NNLM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/README.md -------------------------------------------------------------------------------- /Seq2Seq/Seq2Seq+Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/Seq2Seq/Seq2Seq+Attention.py -------------------------------------------------------------------------------- /Seq2Seq/Seq2Seq.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TextCNN/textCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/TextCNN/textCNN.py -------------------------------------------------------------------------------- /TextLSTM/TextLSTM.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TextRCNN/TextRCNN.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Transformer/Transformer.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Vocab_Built.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/Vocab_Built.py -------------------------------------------------------------------------------- /Word2Vec/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/1667471-ad054c3a8b703f28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/1667471-ad054c3a8b703f28.png -------------------------------------------------------------------------------- /images/H-softmax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/H-softmax.jpg -------------------------------------------------------------------------------- /images/TextRCNN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/TextRCNN.jpg -------------------------------------------------------------------------------- /images/fasttext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/fasttext.jpg -------------------------------------------------------------------------------- /images/fasttext_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/fasttext_model.jpg -------------------------------------------------------------------------------- /images/nnlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/nnlm.png -------------------------------------------------------------------------------- /images/textCNN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/textCNN.jpg -------------------------------------------------------------------------------- /images/tr_dot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/tr_dot.jpg -------------------------------------------------------------------------------- /images/transformer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangzhongkai/NLP_From_Zero_to_One/HEAD/images/transformer.jpg --------------------------------------------------------------------------------