NNDial is an open source toolkit for building end-to-end trainable task-oriented dialogue models. It is released by Tsung-Hsien (Shawn) Wen from Cambridge Dialogue Systems Group under Apache License 2.0.
Other
348
stars
105
forks
source link
Possible bug in DataReader.py when loading vocab from dialogues #7
Hi, I would like to clarify if this is a bug.
https://github.com/shawnwun/NNDIAL/blob/740f6d34594bcdd889080ce60c95384bda7594a2/loader/DataReader.py#L876-L880
Should the
extractSeq
method in line878
be called onturn['usr']['transcript']
instead?The
words
variable in line877
is totally ignored, and replaced by the return values ofextractSeq
in line878
.