YuxiXie / SG-Deep-Question-Generation

This repository contains code and models for the paper: Semantic Graphs for Generating Deep Questions (ACL 2020).
MIT License
75 stars 33 forks source link

coreference_resolution: #15

Closed lizhenping closed 2 years ago

lizhenping commented 3 years ago

when process data in preprocess_raw_data.py of the coreference_resolution in coreference_resolution: raw = {d[0]: '\t'.join(d[1]) for d in raw} seems should be:

raw = {d: '\t'.join(raw[d]) for d in raw}

qjncxj commented 2 years ago

I also encounter the same problem, looking forward to the authors' answer.

YuxiXie commented 2 years ago

Thanks for pointing out the issue. Sorry that there exists some inconsistency in our processing codes. We've fixed the problem according to your advice. Thanks!