pytorch-pos-tagging icon indicating copy to clipboard operation
pytorch-pos-tagging copied to clipboard

A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.

Results 5 pytorch-pos-tagging issues
Sort by recently updated
recently updated
newest added

Could you please provide your datasets used in this project?

Although there is an example of transformers in other repo (for sentiment analysis) and is easy to adapt it to other cases, I think for sequential tagging is a bit...

train_data, valid_data, test_data = datasets.UDPOS.splits(fields) here error shown as Traceback (most recent call last): File "/home/balamurugan/myresearch/lstm.py", line 27, in train_data, valid_data, test_data = datasets.UDPOS.split(fields) AttributeError: 'function' object has no attribute...

For varying-length sequences,Why don't have pack pad? ```python def forward(self, text): embedded = self.dropout(self.embedding(text)) outputs, (hidden, cell) = self.lstm(embedded) predictions = self.fc(self.dropout(outputs)) return predictions ```

Hi Ben..fanstactic repo.. quick one while running the same code - BiLSTM for PoS Tagging , I am getting the error in google colab : RuntimeError: Expected all tensors to...