bloomsburyai / question-generation

Neural text-to-text question generation
MIT License
217 stars 52 forks source link

is this repo finished now? #12

Closed shizhediao closed 5 years ago

shizhediao commented 5 years ago

Thanks for your contribution. I was wondering if this repo finished and how to use my corpus to train this model? thanks

tomhosking commented 5 years ago

You can now train a model using this repo. Put your corpus in the same format as the squad files in ./data/train-v1.1,json and ./data/dev-v1.1.json, then run train.sh --num_dev_samples ??? where ??? is the size of your dev split. Check ./src/flags.py for more configuration options.

shizhediao commented 5 years ago

You can now train a model using this repo. Put your corpus in the same format as the squad files in ./data/train-v1.1,json and ./data/dev-v1.1.json, then run train.sh --num_dev_samples ??? where ??? is the size of your dev split. Check ./src/flags.py for more configuration options.

thanks so much!