├── .gitignore ├── LICENSE.txt ├── README.md ├── causeofwhy ├── __init__.py ├── answer_engine.py ├── indexer.py ├── static │ ├── robots.txt │ └── style.css ├── templates │ ├── answer.html │ └── index.html ├── web.py └── wiki_dump_reader.py ├── docs └── system-components.md ├── log_training_to_arff.py ├── main.py └── question-answer-pairs.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/README.md -------------------------------------------------------------------------------- /causeofwhy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/__init__.py -------------------------------------------------------------------------------- /causeofwhy/answer_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/answer_engine.py -------------------------------------------------------------------------------- /causeofwhy/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/indexer.py -------------------------------------------------------------------------------- /causeofwhy/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /causeofwhy/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/static/style.css -------------------------------------------------------------------------------- /causeofwhy/templates/answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/templates/answer.html -------------------------------------------------------------------------------- /causeofwhy/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/templates/index.html -------------------------------------------------------------------------------- /causeofwhy/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/web.py -------------------------------------------------------------------------------- /causeofwhy/wiki_dump_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/causeofwhy/wiki_dump_reader.py -------------------------------------------------------------------------------- /docs/system-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/docs/system-components.md -------------------------------------------------------------------------------- /log_training_to_arff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/log_training_to_arff.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/main.py -------------------------------------------------------------------------------- /question-answer-pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwbaugh/causeofwhy/HEAD/question-answer-pairs.txt --------------------------------------------------------------------------------