Question_Answering_on_SQuAD
Question_Answering_on_SQuAD copied to clipboard
Some problems about the code
First thanks for your contribution of this implement of DCN+ by pytorch, and it's really useful for me to understand this task. However, during running the model, i met some bugs, though i fixed it, the results after several epoch are not good.So i want to know the results on SQuAD2 which you get from this model, then i can have a compare to know it's my mistake or the model. Bugs: batch_ids = copy(val_ids[number_of_examples * batch: number_of_examples * (batch + 1)]) fix: batch_ids = copy(val_ids[batch_sizes * batch: batch_sizes * batch + number_of_examples])
Wish your feedback on your free time! And thank you again for you work!