├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Graph NLU- Natural Language Understanding with Python and Neo4j.pdf └── IPA_Memory_Dan_Kondratyuk_2017.04.30.pdf ├── notebooks ├── babi_dialogue_ridge.ipynb ├── dynamic_memory_1.ipynb ├── dynamic_memory_2.ipynb ├── dynamic_memory_3.ipynb ├── dynamic_memory_4.ipynb ├── resources │ ├── qa1_single-supporting-fact_test.txt │ ├── qa1_single-supporting-fact_train.txt │ ├── qa2_two-supporting-facts_test.txt │ ├── qa2_two-supporting-facts_train.txt │ ├── qa3_three-supporting-facts_test.txt │ ├── qa3_three-supporting-facts_train.txt │ ├── qa6_yes-no-questions_test.txt │ ├── qa6_yes-no-questions_train.txt │ ├── restaurants_props.pkl │ └── utts_refs.pkl └── screenshots │ ├── dialog-system.png │ ├── global-and-local-list.png │ ├── local-list.png │ ├── mary-john-example.png │ ├── prezzo.png │ ├── qa2-multiple-list.png │ ├── simple-relation.png │ ├── state-graph-1.png │ ├── state-graph-2.png │ └── v4-mary.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/README.md -------------------------------------------------------------------------------- /docs/Graph NLU- Natural Language Understanding with Python and Neo4j.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/docs/Graph NLU- Natural Language Understanding with Python and Neo4j.pdf -------------------------------------------------------------------------------- /docs/IPA_Memory_Dan_Kondratyuk_2017.04.30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/docs/IPA_Memory_Dan_Kondratyuk_2017.04.30.pdf -------------------------------------------------------------------------------- /notebooks/babi_dialogue_ridge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/babi_dialogue_ridge.ipynb -------------------------------------------------------------------------------- /notebooks/dynamic_memory_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/dynamic_memory_1.ipynb -------------------------------------------------------------------------------- /notebooks/dynamic_memory_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/dynamic_memory_2.ipynb -------------------------------------------------------------------------------- /notebooks/dynamic_memory_3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/dynamic_memory_3.ipynb -------------------------------------------------------------------------------- /notebooks/dynamic_memory_4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/dynamic_memory_4.ipynb -------------------------------------------------------------------------------- /notebooks/resources/qa1_single-supporting-fact_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa1_single-supporting-fact_test.txt -------------------------------------------------------------------------------- /notebooks/resources/qa1_single-supporting-fact_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa1_single-supporting-fact_train.txt -------------------------------------------------------------------------------- /notebooks/resources/qa2_two-supporting-facts_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa2_two-supporting-facts_test.txt -------------------------------------------------------------------------------- /notebooks/resources/qa2_two-supporting-facts_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa2_two-supporting-facts_train.txt -------------------------------------------------------------------------------- /notebooks/resources/qa3_three-supporting-facts_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa3_three-supporting-facts_test.txt -------------------------------------------------------------------------------- /notebooks/resources/qa3_three-supporting-facts_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa3_three-supporting-facts_train.txt -------------------------------------------------------------------------------- /notebooks/resources/qa6_yes-no-questions_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa6_yes-no-questions_test.txt -------------------------------------------------------------------------------- /notebooks/resources/qa6_yes-no-questions_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/qa6_yes-no-questions_train.txt -------------------------------------------------------------------------------- /notebooks/resources/restaurants_props.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/restaurants_props.pkl -------------------------------------------------------------------------------- /notebooks/resources/utts_refs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/resources/utts_refs.pkl -------------------------------------------------------------------------------- /notebooks/screenshots/dialog-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/dialog-system.png -------------------------------------------------------------------------------- /notebooks/screenshots/global-and-local-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/global-and-local-list.png -------------------------------------------------------------------------------- /notebooks/screenshots/local-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/local-list.png -------------------------------------------------------------------------------- /notebooks/screenshots/mary-john-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/mary-john-example.png -------------------------------------------------------------------------------- /notebooks/screenshots/prezzo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/prezzo.png -------------------------------------------------------------------------------- /notebooks/screenshots/qa2-multiple-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/qa2-multiple-list.png -------------------------------------------------------------------------------- /notebooks/screenshots/simple-relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/simple-relation.png -------------------------------------------------------------------------------- /notebooks/screenshots/state-graph-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/state-graph-1.png -------------------------------------------------------------------------------- /notebooks/screenshots/state-graph-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/state-graph-2.png -------------------------------------------------------------------------------- /notebooks/screenshots/v4-mary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/notebooks/screenshots/v4-mary.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hyperparticle/graph-nlu/HEAD/requirements.txt --------------------------------------------------------------------------------