gitextract_mxhf1sqm/ ├── .github/ │ └── workflows/ │ └── python-app.yml ├── .gitignore ├── 1-1.NNLM/ │ ├── NNLM.ipynb │ └── NNLM.py ├── 1-2.Word2Vec/ │ ├── Word2Vec-Skipgram(Softmax).ipynb │ └── Word2Vec-Skipgram(Softmax).py ├── 1-3.FastText/ │ ├── FastText.ipynb │ ├── test.txt │ └── train.txt ├── 2-1.TextCNN/ │ ├── TextCNN.ipynb │ └── TextCNN.py ├── 3-1.TextRNN/ │ ├── TextRNN.ipynb │ └── TextRNN.py ├── 3-2.TextLSTM/ │ ├── TextLSTM.ipynb │ └── TextLSTM.py ├── 3-3.Bi-LSTM/ │ ├── Bi-LSTM.ipynb │ └── Bi-LSTM.py ├── 4-1.Seq2Seq/ │ ├── Seq2Seq.ipynb │ └── Seq2Seq.py ├── 4-2.Seq2Seq(Attention)/ │ ├── Seq2Seq(Attention).ipynb │ └── Seq2Seq(Attention).py ├── 4-3.Bi-LSTM(Attention)/ │ ├── Bi-LSTM(Attention).ipynb │ └── Bi-LSTM(Attention).py ├── 5-1.Transformer/ │ ├── Transformer(Greedy_decoder).ipynb │ ├── Transformer(Greedy_decoder).py │ ├── Transformer.ipynb │ └── Transformer.py ├── 5-2.BERT/ │ ├── BERT.ipynb │ └── BERT.py ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── archive/ └── tensorflow/ └── v1/ ├── 1-1.NNLM/ │ └── NNLM.py ├── 1-2.Word2Vec/ │ ├── Word2Vec-Skipgram(NCE_loss).py │ └── Word2Vec-Skipgram(Softmax).py ├── 2-1.TextCNN/ │ └── TextCNN.py ├── 3-1.TextRNN/ │ └── TextRNN.py ├── 3-2.TextLSTM/ │ └── TextLSTM.py ├── 3-3.Bi-LSTM/ │ └── Bi-LSTM.py ├── 4-1.Seq2Seq/ │ └── Seq2Seq.py ├── 4-2.Seq2Seq(Attention)/ │ └── Seq2Seq(Attention).py └── 4-3.Bi-LSTM(Attention)/ └── Bi-LSTM(Attention).py