NLP_scripts
NLP_scripts copied to clipboard
Contains notebooks related to various transformers based models for different nlp based tasks
May I know the data location please!
The current code is unable to support multi-GPU environment. I parallelized the model using torch.nn.DataParallel(model).cuda() I got this error when I try : 
I noticed the fine-tuned roberta script saved the fine-tuned model locally by ``` model_to_save = model torch.save(model_to_save, output_model_file) tokenizer.save_vocabulary(output_vocab_file) ``` How to load this model from the local folder? I...
i am using this code only for multilabel classification of text into 26 labels but getting only 38% hamming score and 28% flat_score. please suggest some changes in my cod...