BERT-Dialog-State-Tracking
BERT-Dialog-State-Tracking copied to clipboard
A Simple but Effective BERT Model for Dialog State Tracking on Resource-Limited Systems
I've been trying to reproduce your code. Running your original code produces the results on the paper. Changing only these two lines: ``` tokenizer = BertTokenizer.from_pretrained(bert_model) bert = BertForSequenceClassification.from_pretrained(bert_model, num_labels=2)...
Traceback (most recent call last): File "E:\Project\DST\BERT-Dialog-State-Tracking-master21\main.py", line 120, in main(opts) File "E:\Project\DST\BERT-Dialog-State-Tracking-master21\main.py", line 75, in main model.move_to_device(opts) File "E:\Project\DST\BERT-Dialog-State-Tracking-master21\models.py", line 78, in move_to_device self.bert.to(args.device) AttributeError: 'NoneType' object has no...