Generate questions with multiple choice answers from the user given passage.
- The proposed approach uses T5 Transformer.
- Keywords are also extracted from the user given passage to frame the questions.
- Sense2Vec is applied to get "distractors".
- Create a new environment.(Code: conda create --name env2)
- Activate env2. (Code: conda activate env2)
- Install python.(Code: conda install -c anaconda python=3.8)
- Install spacy. (Code: pip install spacy==3.3.1)
- Install library. (Code: python -m spacy download en_core_web_sm)
- Deactivate env2 to go to base environment. (Code: conda deactivate)
- Now run "test.py" on the terminal.(Code: python test.py)