Skip to content

Commit ccb89f4

Browse files
committed
add table
1 parent b3889bf commit ccb89f4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,21 @@
6868
- Paper - [BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding(2018)](https://arxiv.org/abs/1810.04805)
6969
- Colab - [BERT_Torch.ipynb](https://colab.research.google.com/github/graykode/nlp-tutorial/blob/master/5-2.BERT/BERT_Torch.ipynb)
7070

71+
| Model | Example | Framework | Lines(torch/tensor) |
72+
| :------------------------: | :--------------------------------: | :-----------: | :-----------------: |
73+
| NNLM | Predict Next Word | Torch, Tensor | 67/83 |
74+
| Word2Vec(Softmax) | Embedding Words and Show Graph | Torch, Tensor | 77/94 |
75+
| TextCNN | Sentence Classification | Torch, Tensor | 94/99 |
76+
| TextRNN | Predict Next Step | Torch, Tensor | 70/88 |
77+
| TextLSTM | Autocomplete | Torch, Tensor | 73/78 |
78+
| Bi-LSTM | Predict Next Word in Long Sentence | Torch, Tensor | 73/78 |
79+
| Seq2Seq | Change Word | Torch, Tensor | 93/111 |
80+
| Seq2Seq with Attention | Translate | Torch, Tensor | 108/118 |
81+
| Bi-LSTM with Attention | Binary Sentiment Classification | Torch, Tensor | 92/104 |
82+
| Transformer | Translate | Torch | 222/0 |
83+
| Greedy Decoder Transformer | Translate | Torch | 246/0 |
84+
| BERT | how to train | Torch | 242/0 |
85+
7186

7287

7388

0 commit comments

Comments
 (0)