├── Official Documents ├── NLPInitialPlan.pdf └── TuneAFish_Progress.pdf ├── README.md ├── README.txt ├── answer ├── pos.py ├── sampleData ├── cities │ ├── cities_a1.htm │ ├── cities_a10.htm │ ├── cities_a2.htm │ ├── cities_a3.htm │ ├── cities_a4.htm │ ├── cities_a5.htm │ ├── cities_a6.htm │ ├── cities_a7.htm │ ├── cities_a8.htm │ └── cities_a9.htm ├── constellations │ ├── constellations_a1.htm │ ├── constellations_a10.htm │ ├── constellations_a2.htm │ ├── constellations_a3.htm │ ├── constellations_a4.htm │ ├── constellations_a5.htm │ ├── constellations_a6.htm │ ├── constellations_a7.htm │ ├── constellations_a8.htm │ └── constellations_a9.htm ├── languages │ ├── languages_a1.htm │ ├── languages_a10.htm │ ├── languages_a2.htm │ ├── languages_a3.htm │ ├── languages_a4.htm │ ├── languages_a5.htm │ ├── languages_a6.htm │ ├── languages_a7.htm │ ├── languages_a8.htm │ └── languages_a9.htm └── music_instruments │ ├── music_instruments_a1.htm │ ├── music_instruments_a10.htm │ ├── music_instruments_a2.htm │ ├── music_instruments_a3.htm │ ├── music_instruments_a4.htm │ ├── music_instruments_a5.htm │ ├── music_instruments_a6.htm │ ├── music_instruments_a7.htm │ ├── music_instruments_a8.htm │ └── music_instruments_a9.htm ├── simpleQueryAnswering.py ├── stanford-corenlp-python ├── .gitignore ├── LICENSE ├── README.md ├── changes.zip ├── client.py ├── convertfinal.py ├── corenlp.py ├── default.properties ├── demoNew.py ├── files │ ├── extract.py │ ├── extractCanonical.py │ └── parse.py ├── jsonrpc.py ├── parseNLPNew.py ├── progressbar.py ├── simpleExtract.py ├── testCoreNLP.py ├── untitled └── v1_modules │ ├── demo1.py │ ├── extractNLP1.py │ └── parseNLP1.py ├── testCoreNLP.py └── yesno.py /Official Documents/NLPInitialPlan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/Official Documents/NLPInitialPlan.pdf -------------------------------------------------------------------------------- /Official Documents/TuneAFish_Progress.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/Official Documents/TuneAFish_Progress.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/README.txt -------------------------------------------------------------------------------- /answer: -------------------------------------------------------------------------------- 1 | python simpleQueryAnswering.py $1 $2 2 | -------------------------------------------------------------------------------- /pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/pos.py -------------------------------------------------------------------------------- /sampleData/cities/cities_a1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a1.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a10.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a10.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a2.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a3.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a4.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a5.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a6.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a7.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a7.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a8.htm -------------------------------------------------------------------------------- /sampleData/cities/cities_a9.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/cities/cities_a9.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a1.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a10.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a10.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a2.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a3.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a4.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a5.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a6.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a7.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a7.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a8.htm -------------------------------------------------------------------------------- /sampleData/constellations/constellations_a9.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/constellations/constellations_a9.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a1.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a10.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a10.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a2.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a3.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a4.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a5.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a6.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a7.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a7.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a8.htm -------------------------------------------------------------------------------- /sampleData/languages/languages_a9.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/languages/languages_a9.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a1.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a10.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a10.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a2.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a3.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a4.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a5.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a6.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a7.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a7.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a8.htm -------------------------------------------------------------------------------- /sampleData/music_instruments/music_instruments_a9.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/sampleData/music_instruments/music_instruments_a9.htm -------------------------------------------------------------------------------- /simpleQueryAnswering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/simpleQueryAnswering.py -------------------------------------------------------------------------------- /stanford-corenlp-python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /stanford-corenlp-* 3 | .*project 4 | 5 | -------------------------------------------------------------------------------- /stanford-corenlp-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/LICENSE -------------------------------------------------------------------------------- /stanford-corenlp-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/README.md -------------------------------------------------------------------------------- /stanford-corenlp-python/changes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/changes.zip -------------------------------------------------------------------------------- /stanford-corenlp-python/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/client.py -------------------------------------------------------------------------------- /stanford-corenlp-python/convertfinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/convertfinal.py -------------------------------------------------------------------------------- /stanford-corenlp-python/corenlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/corenlp.py -------------------------------------------------------------------------------- /stanford-corenlp-python/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/default.properties -------------------------------------------------------------------------------- /stanford-corenlp-python/demoNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/demoNew.py -------------------------------------------------------------------------------- /stanford-corenlp-python/files/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/files/extract.py -------------------------------------------------------------------------------- /stanford-corenlp-python/files/extractCanonical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/files/extractCanonical.py -------------------------------------------------------------------------------- /stanford-corenlp-python/files/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/files/parse.py -------------------------------------------------------------------------------- /stanford-corenlp-python/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/jsonrpc.py -------------------------------------------------------------------------------- /stanford-corenlp-python/parseNLPNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/parseNLPNew.py -------------------------------------------------------------------------------- /stanford-corenlp-python/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/progressbar.py -------------------------------------------------------------------------------- /stanford-corenlp-python/simpleExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/simpleExtract.py -------------------------------------------------------------------------------- /stanford-corenlp-python/testCoreNLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/testCoreNLP.py -------------------------------------------------------------------------------- /stanford-corenlp-python/untitled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/untitled -------------------------------------------------------------------------------- /stanford-corenlp-python/v1_modules/demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/v1_modules/demo1.py -------------------------------------------------------------------------------- /stanford-corenlp-python/v1_modules/extractNLP1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/v1_modules/extractNLP1.py -------------------------------------------------------------------------------- /stanford-corenlp-python/v1_modules/parseNLP1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/stanford-corenlp-python/v1_modules/parseNLP1.py -------------------------------------------------------------------------------- /testCoreNLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/testCoreNLP.py -------------------------------------------------------------------------------- /yesno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoariel/NLP-Question-Answer-System/HEAD/yesno.py --------------------------------------------------------------------------------