pytorch-sentiment-analysis icon indicating copy to clipboard operation
pytorch-sentiment-analysis copied to clipboard

Tutorials on getting started with PyTorch and TorchText for sentiment analysis.

Results 26 pytorch-sentiment-analysis issues
Sort by recently updated
recently updated
newest added

Hi bentrevett, am new on this field, sorry if my question sound weird. I can't seem to import RawTextIterableDataset from torchtext.experimental.datasets.raw.text_classification. Can you please check to confirm if the class...

hello, i have some questions on task6: when we print like this `print(vars(train_data.examples[6]))` we get `{'text': [1042, 4140, 1996, 2087, 2112, 1010, 2023, 3185, 5683, 2066, 1037, 1000, 2081, 1011,...

Hello hope the question is in the right place I used kind of https://github.com/bentrevett/pytorch-sentiment-analysis/blob/master/5%20-%20Multi-class%20Sentiment%20Analysis.ipynb for prediction of unique regular language. The results where realy good! I want to check if...

Hi Ben In fasttext, we can use bi-gram to get tokens, for example, I love your --> in bi-gram--> I, love, u, I love, love u. so if we set...

hello~ Thank you for your outstanding work! i got some problems when i wanted to use my own custom dataset. when i have train/validation dataset and got my model, how...

I am trying to run your exercise and i am seeing this issue. Is there a known hack for this ? root@supermicro-2xvega20:~/pytorch-sentiment-analysis# python3 4\ -\ Convolutional\ Sentiment\ Analysis.py Traceback (most...

Hi, could you migrate from the legacy API to the new API. Thanks a lot!

Thank you for the wonderful repo and tutorials. Do you have an implementation to add attention to the classification models with torchtext?

enhancement

Hi model.embedding.weight.data.copy_ is a fine-tuning way ? so is that mean they are the same as model parameters to train? I also find .pre_train to load word embedding, which means...