├── .dockerignore ├── .gitignore ├── Dockerfile.gpu ├── LICENSE ├── README.md ├── config.sample.ini ├── data ├── README.md ├── cornell │ ├── README.txt │ ├── chameleons.pdf │ ├── movie_characters_metadata.txt │ ├── movie_conversations.txt │ ├── movie_lines.txt │ ├── movie_titles_metadata.txt │ └── raw_script_urls.txt └── egret-wenda │ ├── README.md │ ├── egret_wenda_conversations.txt │ └── egret_wenda_lines.txt ├── deepqa2 ├── config.py ├── dataset │ ├── __init__.py │ ├── cornelldata.py │ ├── egretdata.py │ ├── preprocesser.py │ └── textdata.py ├── models │ ├── __init__.py │ └── rnn.py ├── serve │ ├── api │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── chatbotmanager.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sample.sqlite3 │ ├── manage.py │ └── server │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py ├── train.py └── utils │ ├── __init__.py │ ├── helper.py │ ├── log.py │ └── segmenter.py ├── logs └── README.md ├── requirements.txt ├── save └── README.md ├── scripts ├── build_docker_image.sh ├── start_serving.sh ├── start_tensorboard.sh ├── start_training.sh └── train_with_docker.sh └── start_training_docker.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | data 2 | save 3 | logs 4 | nohup.out 5 | config.ini 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/Dockerfile.gpu -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/README.md -------------------------------------------------------------------------------- /config.sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/config.sample.ini -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/cornell/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/README.txt -------------------------------------------------------------------------------- /data/cornell/chameleons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/chameleons.pdf -------------------------------------------------------------------------------- /data/cornell/movie_characters_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/movie_characters_metadata.txt -------------------------------------------------------------------------------- /data/cornell/movie_conversations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/movie_conversations.txt -------------------------------------------------------------------------------- /data/cornell/movie_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/movie_lines.txt -------------------------------------------------------------------------------- /data/cornell/movie_titles_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/movie_titles_metadata.txt -------------------------------------------------------------------------------- /data/cornell/raw_script_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/cornell/raw_script_urls.txt -------------------------------------------------------------------------------- /data/egret-wenda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/egret-wenda/README.md -------------------------------------------------------------------------------- /data/egret-wenda/egret_wenda_conversations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/egret-wenda/egret_wenda_conversations.txt -------------------------------------------------------------------------------- /data/egret-wenda/egret_wenda_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/data/egret-wenda/egret_wenda_lines.txt -------------------------------------------------------------------------------- /deepqa2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/config.py -------------------------------------------------------------------------------- /deepqa2/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepqa2/dataset/cornelldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/dataset/cornelldata.py -------------------------------------------------------------------------------- /deepqa2/dataset/egretdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/dataset/egretdata.py -------------------------------------------------------------------------------- /deepqa2/dataset/preprocesser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/dataset/preprocesser.py -------------------------------------------------------------------------------- /deepqa2/dataset/textdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/dataset/textdata.py -------------------------------------------------------------------------------- /deepqa2/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepqa2/models/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/models/rnn.py -------------------------------------------------------------------------------- /deepqa2/serve/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/__init__.py -------------------------------------------------------------------------------- /deepqa2/serve/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/admin.py -------------------------------------------------------------------------------- /deepqa2/serve/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/apps.py -------------------------------------------------------------------------------- /deepqa2/serve/api/chatbotmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/chatbotmanager.py -------------------------------------------------------------------------------- /deepqa2/serve/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepqa2/serve/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/models.py -------------------------------------------------------------------------------- /deepqa2/serve/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/tests.py -------------------------------------------------------------------------------- /deepqa2/serve/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/urls.py -------------------------------------------------------------------------------- /deepqa2/serve/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/api/views.py -------------------------------------------------------------------------------- /deepqa2/serve/db.sample.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/db.sample.sqlite3 -------------------------------------------------------------------------------- /deepqa2/serve/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/manage.py -------------------------------------------------------------------------------- /deepqa2/serve/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepqa2/serve/server/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/server/asgi.py -------------------------------------------------------------------------------- /deepqa2/serve/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/server/settings.py -------------------------------------------------------------------------------- /deepqa2/serve/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/server/urls.py -------------------------------------------------------------------------------- /deepqa2/serve/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/serve/server/wsgi.py -------------------------------------------------------------------------------- /deepqa2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/train.py -------------------------------------------------------------------------------- /deepqa2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepqa2/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/utils/helper.py -------------------------------------------------------------------------------- /deepqa2/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/utils/log.py -------------------------------------------------------------------------------- /deepqa2/utils/segmenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/deepqa2/utils/segmenter.py -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/requirements.txt -------------------------------------------------------------------------------- /save/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/build_docker_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/scripts/build_docker_image.sh -------------------------------------------------------------------------------- /scripts/start_serving.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/scripts/start_serving.sh -------------------------------------------------------------------------------- /scripts/start_tensorboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/scripts/start_tensorboard.sh -------------------------------------------------------------------------------- /scripts/start_training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/scripts/start_training.sh -------------------------------------------------------------------------------- /scripts/train_with_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/scripts/train_with_docker.sh -------------------------------------------------------------------------------- /start_training_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatopera/deep-qa/HEAD/start_training_docker.sh --------------------------------------------------------------------------------