Skip to content

Given a sentence automatically generate reading comprehension style factual questions from that sentence, such that the sentence contains answers to those questions.

License

Notifications You must be signed in to change notification settings

sumehta/question-generation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Question Generation from Declarative Sentences

Update: If you have a feature request please open an issue or feel free to submit a pull request.

Introduction

Given a statement of text such as,

Handheld devices find ways to bolster U.S. homeland defense and response.

The questions generated will be:

What do handheld devices find?

The original software is a product of PhD thesis of Michael Heilman. The original JAVA code and other instructions/resources/dependencies can be found here.

For all Pythonistas 😎 out there this repository provides a Python wrapper to simplify the execution of the code above. The hardest part of the whole project is setup. Yes you heard it right!

Setup

To run the original code you need to have a JAVA Runtime Environment installed. JAVA downloads can be found on the Oracle website here. Version 1.6.0_07 of JAVA was used in developing the original system. The code is packaged for use on UNIX systems or for use in the Eclipse IDE.

Dependencies

The following are the dependencies of the original code.

-Apache Commons Lang (http://commons.apache.org/lang/)

-Apahce Commons Logging (http://commons.apache.org/logging/)

-JUnit (http://www.junit.org/)

-JWNL (http://sourceforge.net/projects/jwordnet/)

-Stanford NLP tools (http://www-nlp.stanford.edu/software/)

-WordNet (http://wordnet.princeton.edu/)

-The sst-light-0.4 release of the SuperSenseTagger, from which we used the SemCor data for training the supersense tagger (http://sourceforge.net/projects/supersensetag/)

-The Semcor corpus, used for training the supersense tagger (http://www.cse.unt.edu/~rada/downloads.html#semcor)

-The WEKA toolkit, version 3.6.0 (http://www.cs.waikato.ac.nz/ml/weka/)

The good news is that you don't need to download each one of those individually 😀. Everything is neatly packed in the QuestionGeneration.zip bundled with the code.

Steps

  1. Clone this repository,

    git clone https://github.com/sumehta/question-generation.git

  2. cd question-generation

  3. Unzip the QuestionGeneration.zip file

    unzip QuestionGeneration.zip

  4. [Optional] Start two servers to speed up the script, Stanford Parser server and the SST servers in two separate terminals.

    cd QuestionGeneration

    bash runStanfordParserServer.sh

    bash runSSTServer.sh

  5. Finally, to get a list of questions for a statement, from the parent directory execute this command

    python question.py -s 'Handheld devices find ways to bolster U.S. homeland defense and response'

For other options exposed by the script type,

python question.py --help

Note: For developers, I have also included a QuestionGenerator class, that exposes other methods for processing large collections.

Cite this repository

If you find this repository helpful and use it in a technical report or a research paper, please cite this repository.

  author = {Sneha Mehta},
  title = {Question Generation - Python Wrapper},
  year = {2017},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/sumehta/question-generation}},
  commit = {master}
}

About

Given a sentence automatically generate reading comprehension style factual questions from that sentence, such that the sentence contains answers to those questions.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages