Heng Ee (Osbert) Tay

Results 3 issues of Heng Ee (Osbert) Tay

Referring to: [PoolingLinearClassifier](https://docs.fast.ai/text.models.core.html#poolinglinearclassifier) The example code given is as below, which is the same code for [SentenceEncoder](https://docs.fast.ai/text.models.core.html#sentenceencoder) ```python mod = nn.Embedding(5, 10) tst = SentenceEncoder(5, mod, pad_idx=0) x = torch.randint(1,...

I saw that there is a Hierarchical Attention Network model included in the directory: reproduction/text_classification/model/HAN.py. I realized that the input for HAN is different from other models (LSTM and CNN):...

## ❓ How to build vocab from Glove embedding? **Description** How to build vocab from Glove embedding? I have gone through the documentation and the release update, I got to...