Taeuk Kim

Results 3 comments of Taeuk Kim

제가 코드를 짠 지 오래 돼서 어떤 점이 잘못됐는지 설명해주시면 감사하겠습니다.

The code line means that we build an embedding matrix that can map any word in datasets (including dev and test in addition to training) to the corresponding word representation...

You need to be familiar with [TorchText](https://github.com/pytorch/text) to understand the syntax. In [model/data.py](https://github.com/galsang/BiDAF-pytorch/blob/master/model/data.py), we make a batch in which each context is parsed as a sequence of words and the...