renll / StateNet

[EMNLP 2018] Towards Universal Dialogue State Tracking
Other
42 stars 11 forks source link

where the 'vocab.dict'? #1

Closed Circlechy closed 5 years ago

Circlechy commented 5 years ago

Thanks for you code. Could you release the 'vocab.dict' file, which needed in data.py, I can't find it in the source. And the json files 'train_nbest.json' ,'train_nbest_tagged.json' are created by data.py?

renll commented 5 years ago

You actually do not need the 'vocab.dict' file. The json files should be created by mat_data.py, which uses the vocab files in the source.

Circlechy commented 5 years ago

@renll Thanks for your help, I generated the json files successfully. But I have another question when I run the code, can't find the file 'embed_vN3.npy', What should I do with it? >-<

renll commented 5 years ago

You can generate it through the file get_embedding.py, which needs the pretrained paragram_sl999 embedding.

Circlechy commented 5 years ago

Thanks for your kind reply !