├── .dockerignore ├── .gitignore ├── .gitmodules ├── .idea ├── awesome-chatbot.iml ├── inspectionProfiles │ └── Project_Default.xml ├── markdown-navigator.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Dockerfile.amd64 ├── Dockerfile.armv7 ├── LICENSE.md ├── OLD-README.md ├── README.md ├── __init__.py ├── asoundrc ├── bot ├── README.md ├── __init__.py ├── game.py ├── game_sr.py ├── game_voice.py └── test_gpio.py ├── classifier ├── README.md ├── do_make_hundred_bert_interactive.sh ├── do_make_hundred_bert_train.sh ├── run_classifier.py └── run_torch_bert_transformers.py ├── data ├── README.md ├── beep.mp3 ├── commands.xml ├── hp_config.json ├── hp_config_1558.json ├── hp_config_774.json ├── sentences.xml └── std_startup.xml ├── do_calc_gpt2.sh ├── do_calc_gru.sh ├── do_calc_raw.sh ├── do_calc_t2t.sh ├── do_launch_game.sh ├── do_launch_game_s2s.sh ├── do_launch_gpt2.sh ├── do_launch_gpt2_apps.sh ├── do_launch_gpt2_signal.sh ├── do_launch_gpt2_wiki.sh ├── do_launch_transformer.sh ├── do_launch_transformer_arm.sh ├── do_make_apt_aarch64.sh ├── do_make_apt_amd64.sh ├── do_make_apt_armv7.sh ├── do_make_bert_L_12_download.sh ├── do_make_bert_L_6_download.sh ├── do_make_db_from_reddit.py ├── do_make_db_tab_from_cornell_movie.py ├── do_make_deepspeech_download.sh ├── do_make_docker_arm32v7.sh ├── do_make_movie_download.sh ├── do_make_persona_download.sh ├── do_make_reddit_download.sh ├── do_make_rename_train_valid_test.sh ├── do_make_skip_hide_from_corpus.py ├── do_make_sr_test.sh ├── do_make_submodule_init.sh ├── do_make_submodule_init_117M.sh ├── do_make_submodule_init_1558M.sh ├── do_make_submodule_init_774M.sh ├── do_make_tab_file_from_persona.py ├── do_make_tab_file_from_srt.py ├── do_make_text_file_from_aiml.py ├── do_make_text_file_gpt2_hello.py ├── do_make_text_file_mixin.py ├── do_make_tf_aarch64_download.sh ├── do_make_tf_armv7_download.sh ├── do_make_tf_model_server_download.sh ├── do_make_transformer_link.sh ├── do_make_unpack_text.sh ├── do_make_zip_pytorch_copy.py ├── do_make_zip_tf_t2t_server_copy.py ├── do_plot.py ├── docker ├── README.md ├── do_build_amd64.sh ├── do_build_armv7.sh ├── do_find_credentials.sh ├── do_launch_amd64.sh ├── do_launch_armv7.sh └── scripts │ ├── LICENSE │ ├── build_tensorflow.sh │ ├── check-config.sh │ ├── do_dind_launch.sh │ ├── get-docker.sh │ └── wrapdocker.sh ├── experiments ├── README.md ├── aiml_bert.py ├── aiml_run_example.py ├── chat_model_calc.py └── startup.xml ├── model ├── README.md ├── __init__.py ├── do_launch_tensorboard.sh ├── do_make_find_credentials.sh ├── do_split_run.sh ├── nmt_aiml_commands.py ├── nmt_wiki_commands.py ├── settings.py ├── sub.txt ├── tf_gpt2_download_model.py ├── tf_gpt2_torch_convert.py ├── tf_gpt2_train.py ├── tokenize_weak.py ├── torch_gpt2_run_memory.py ├── torch_gpt2_run_memory_bert_aiml_sm.py ├── torch_gpt2_run_memory_common.py ├── torch_gpt2_run_memory_substitute_aiml_lrg.py ├── torch_gpt2_run_memory_substitute_aiml_sm.py ├── torch_gpt2_run_memory_trained.py └── torch_gpt3_run_memory.py ├── raw ├── README.md ├── sentences.xml └── srt_zip │ └── README.md ├── requirements.aarch64.txt ├── requirements.amd64.txt ├── requirements.armv7.txt ├── requirements.txt ├── seq_2_seq ├── README.md ├── __init__.py ├── do_make_train_test_from_db.py ├── do_make_vocab.py ├── do_split.py ├── seq_2_seq.py ├── seq_2_seq_srt_corpus.py ├── seq_2_seq_tutorial.py ├── settings.py └── tokenize_weak.py ├── shutdown.py ├── start_test.py ├── stt ├── README.md ├── game_sr.py └── test.py ├── test.txt ├── torch_t2t ├── README.md ├── read_pickle.py ├── torch_t2t_train.py ├── torch_t2t_transformer_preprocess.py ├── torch_t2t_transformer_test.py └── torch_t2t_transformer_train.py ├── transformer ├── README.md ├── chat │ ├── __init__.py │ ├── setup.py │ └── trainer │ │ ├── __init__.py │ │ └── problem.py ├── do_launch_chat_movie_30.sh ├── do_launch_tensorboard.sh ├── tf_t2t_train_chat.py ├── tf_t2t_train_run.py └── tf_t2t_train_serve.py ├── virtualenv ├── README.md ├── do_make_virtualenv_setup36.sh ├── do_make_virtualenv_setup37.sh ├── do_make_virtualenv_use_36.sh └── do_make_virtualenv_use_37.sh └── vis ├── head_view_gpt2.ipynb └── tf_t2t_vis.ipynb /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/awesome-chatbot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/awesome-chatbot.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Dockerfile.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/Dockerfile.amd64 -------------------------------------------------------------------------------- /Dockerfile.armv7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/Dockerfile.armv7 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OLD-README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/asoundrc -------------------------------------------------------------------------------- /bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/bot/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/bot/game.py -------------------------------------------------------------------------------- /bot/game_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/bot/game_sr.py -------------------------------------------------------------------------------- /bot/game_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/bot/game_voice.py -------------------------------------------------------------------------------- /bot/test_gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/bot/test_gpio.py -------------------------------------------------------------------------------- /classifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/classifier/README.md -------------------------------------------------------------------------------- /classifier/do_make_hundred_bert_interactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/classifier/do_make_hundred_bert_interactive.sh -------------------------------------------------------------------------------- /classifier/do_make_hundred_bert_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/classifier/do_make_hundred_bert_train.sh -------------------------------------------------------------------------------- /classifier/run_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/classifier/run_classifier.py -------------------------------------------------------------------------------- /classifier/run_torch_bert_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/classifier/run_torch_bert_transformers.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/README.md -------------------------------------------------------------------------------- /data/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/beep.mp3 -------------------------------------------------------------------------------- /data/commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/commands.xml -------------------------------------------------------------------------------- /data/hp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/hp_config.json -------------------------------------------------------------------------------- /data/hp_config_1558.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/hp_config_1558.json -------------------------------------------------------------------------------- /data/hp_config_774.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/hp_config_774.json -------------------------------------------------------------------------------- /data/sentences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/sentences.xml -------------------------------------------------------------------------------- /data/std_startup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/data/std_startup.xml -------------------------------------------------------------------------------- /do_calc_gpt2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_calc_gpt2.sh -------------------------------------------------------------------------------- /do_calc_gru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_calc_gru.sh -------------------------------------------------------------------------------- /do_calc_raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_calc_raw.sh -------------------------------------------------------------------------------- /do_calc_t2t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_calc_t2t.sh -------------------------------------------------------------------------------- /do_launch_game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_game.sh -------------------------------------------------------------------------------- /do_launch_game_s2s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_game_s2s.sh -------------------------------------------------------------------------------- /do_launch_gpt2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_gpt2.sh -------------------------------------------------------------------------------- /do_launch_gpt2_apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_gpt2_apps.sh -------------------------------------------------------------------------------- /do_launch_gpt2_signal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_gpt2_signal.sh -------------------------------------------------------------------------------- /do_launch_gpt2_wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_gpt2_wiki.sh -------------------------------------------------------------------------------- /do_launch_transformer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_transformer.sh -------------------------------------------------------------------------------- /do_launch_transformer_arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_launch_transformer_arm.sh -------------------------------------------------------------------------------- /do_make_apt_aarch64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_apt_aarch64.sh -------------------------------------------------------------------------------- /do_make_apt_amd64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_apt_amd64.sh -------------------------------------------------------------------------------- /do_make_apt_armv7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_apt_armv7.sh -------------------------------------------------------------------------------- /do_make_bert_L_12_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_bert_L_12_download.sh -------------------------------------------------------------------------------- /do_make_bert_L_6_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_bert_L_6_download.sh -------------------------------------------------------------------------------- /do_make_db_from_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_db_from_reddit.py -------------------------------------------------------------------------------- /do_make_db_tab_from_cornell_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_db_tab_from_cornell_movie.py -------------------------------------------------------------------------------- /do_make_deepspeech_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_deepspeech_download.sh -------------------------------------------------------------------------------- /do_make_docker_arm32v7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_docker_arm32v7.sh -------------------------------------------------------------------------------- /do_make_movie_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_movie_download.sh -------------------------------------------------------------------------------- /do_make_persona_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_persona_download.sh -------------------------------------------------------------------------------- /do_make_reddit_download.sh: -------------------------------------------------------------------------------- 1 | cd raw 2 | 3 | wget http://files.pushshift.io/reddit/comments/RC_2017-11.bz2 -------------------------------------------------------------------------------- /do_make_rename_train_valid_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_rename_train_valid_test.sh -------------------------------------------------------------------------------- /do_make_skip_hide_from_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_skip_hide_from_corpus.py -------------------------------------------------------------------------------- /do_make_sr_test.sh: -------------------------------------------------------------------------------- 1 | 2 | cd bot 3 | ./game_sr.py 4 | -------------------------------------------------------------------------------- /do_make_submodule_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_submodule_init.sh -------------------------------------------------------------------------------- /do_make_submodule_init_117M.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_submodule_init_117M.sh -------------------------------------------------------------------------------- /do_make_submodule_init_1558M.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_submodule_init_1558M.sh -------------------------------------------------------------------------------- /do_make_submodule_init_774M.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_submodule_init_774M.sh -------------------------------------------------------------------------------- /do_make_tab_file_from_persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_tab_file_from_persona.py -------------------------------------------------------------------------------- /do_make_tab_file_from_srt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_tab_file_from_srt.py -------------------------------------------------------------------------------- /do_make_text_file_from_aiml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_text_file_from_aiml.py -------------------------------------------------------------------------------- /do_make_text_file_gpt2_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_text_file_gpt2_hello.py -------------------------------------------------------------------------------- /do_make_text_file_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_text_file_mixin.py -------------------------------------------------------------------------------- /do_make_tf_aarch64_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_tf_aarch64_download.sh -------------------------------------------------------------------------------- /do_make_tf_armv7_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_tf_armv7_download.sh -------------------------------------------------------------------------------- /do_make_tf_model_server_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_tf_model_server_download.sh -------------------------------------------------------------------------------- /do_make_transformer_link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_transformer_link.sh -------------------------------------------------------------------------------- /do_make_unpack_text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_unpack_text.sh -------------------------------------------------------------------------------- /do_make_zip_pytorch_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_zip_pytorch_copy.py -------------------------------------------------------------------------------- /do_make_zip_tf_t2t_server_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_make_zip_tf_t2t_server_copy.py -------------------------------------------------------------------------------- /do_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/do_plot.py -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/do_build_amd64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/do_build_amd64.sh -------------------------------------------------------------------------------- /docker/do_build_armv7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/do_build_armv7.sh -------------------------------------------------------------------------------- /docker/do_find_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/do_find_credentials.sh -------------------------------------------------------------------------------- /docker/do_launch_amd64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/do_launch_amd64.sh -------------------------------------------------------------------------------- /docker/do_launch_armv7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/do_launch_armv7.sh -------------------------------------------------------------------------------- /docker/scripts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/scripts/LICENSE -------------------------------------------------------------------------------- /docker/scripts/build_tensorflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/scripts/build_tensorflow.sh -------------------------------------------------------------------------------- /docker/scripts/check-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/scripts/check-config.sh -------------------------------------------------------------------------------- /docker/scripts/do_dind_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/scripts/do_dind_launch.sh -------------------------------------------------------------------------------- /docker/scripts/get-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/scripts/get-docker.sh -------------------------------------------------------------------------------- /docker/scripts/wrapdocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/docker/scripts/wrapdocker.sh -------------------------------------------------------------------------------- /experiments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/experiments/README.md -------------------------------------------------------------------------------- /experiments/aiml_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/experiments/aiml_bert.py -------------------------------------------------------------------------------- /experiments/aiml_run_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/experiments/aiml_run_example.py -------------------------------------------------------------------------------- /experiments/chat_model_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/experiments/chat_model_calc.py -------------------------------------------------------------------------------- /experiments/startup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/experiments/startup.xml -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/README.md -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/do_launch_tensorboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/do_launch_tensorboard.sh -------------------------------------------------------------------------------- /model/do_make_find_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/do_make_find_credentials.sh -------------------------------------------------------------------------------- /model/do_split_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/do_split_run.sh -------------------------------------------------------------------------------- /model/nmt_aiml_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/nmt_aiml_commands.py -------------------------------------------------------------------------------- /model/nmt_wiki_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/nmt_wiki_commands.py -------------------------------------------------------------------------------- /model/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/settings.py -------------------------------------------------------------------------------- /model/sub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/sub.txt -------------------------------------------------------------------------------- /model/tf_gpt2_download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/tf_gpt2_download_model.py -------------------------------------------------------------------------------- /model/tf_gpt2_torch_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/tf_gpt2_torch_convert.py -------------------------------------------------------------------------------- /model/tf_gpt2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/tf_gpt2_train.py -------------------------------------------------------------------------------- /model/tokenize_weak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/tokenize_weak.py -------------------------------------------------------------------------------- /model/torch_gpt2_run_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt2_run_memory.py -------------------------------------------------------------------------------- /model/torch_gpt2_run_memory_bert_aiml_sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt2_run_memory_bert_aiml_sm.py -------------------------------------------------------------------------------- /model/torch_gpt2_run_memory_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt2_run_memory_common.py -------------------------------------------------------------------------------- /model/torch_gpt2_run_memory_substitute_aiml_lrg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt2_run_memory_substitute_aiml_lrg.py -------------------------------------------------------------------------------- /model/torch_gpt2_run_memory_substitute_aiml_sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt2_run_memory_substitute_aiml_sm.py -------------------------------------------------------------------------------- /model/torch_gpt2_run_memory_trained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt2_run_memory_trained.py -------------------------------------------------------------------------------- /model/torch_gpt3_run_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/model/torch_gpt3_run_memory.py -------------------------------------------------------------------------------- /raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/raw/README.md -------------------------------------------------------------------------------- /raw/sentences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/raw/sentences.xml -------------------------------------------------------------------------------- /raw/srt_zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/raw/srt_zip/README.md -------------------------------------------------------------------------------- /requirements.aarch64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/requirements.aarch64.txt -------------------------------------------------------------------------------- /requirements.amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/requirements.amd64.txt -------------------------------------------------------------------------------- /requirements.armv7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/requirements.armv7.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/requirements.txt -------------------------------------------------------------------------------- /seq_2_seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/README.md -------------------------------------------------------------------------------- /seq_2_seq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seq_2_seq/do_make_train_test_from_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/do_make_train_test_from_db.py -------------------------------------------------------------------------------- /seq_2_seq/do_make_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/do_make_vocab.py -------------------------------------------------------------------------------- /seq_2_seq/do_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/do_split.py -------------------------------------------------------------------------------- /seq_2_seq/seq_2_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/seq_2_seq.py -------------------------------------------------------------------------------- /seq_2_seq/seq_2_seq_srt_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/seq_2_seq_srt_corpus.py -------------------------------------------------------------------------------- /seq_2_seq/seq_2_seq_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/seq_2_seq_tutorial.py -------------------------------------------------------------------------------- /seq_2_seq/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/settings.py -------------------------------------------------------------------------------- /seq_2_seq/tokenize_weak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/seq_2_seq/tokenize_weak.py -------------------------------------------------------------------------------- /shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/shutdown.py -------------------------------------------------------------------------------- /start_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/start_test.py -------------------------------------------------------------------------------- /stt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/stt/README.md -------------------------------------------------------------------------------- /stt/game_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/stt/game_sr.py -------------------------------------------------------------------------------- /stt/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/stt/test.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/test.txt -------------------------------------------------------------------------------- /torch_t2t/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/torch_t2t/README.md -------------------------------------------------------------------------------- /torch_t2t/read_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/torch_t2t/read_pickle.py -------------------------------------------------------------------------------- /torch_t2t/torch_t2t_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/torch_t2t/torch_t2t_train.py -------------------------------------------------------------------------------- /torch_t2t/torch_t2t_transformer_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/torch_t2t/torch_t2t_transformer_preprocess.py -------------------------------------------------------------------------------- /torch_t2t/torch_t2t_transformer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/torch_t2t/torch_t2t_transformer_test.py -------------------------------------------------------------------------------- /torch_t2t/torch_t2t_transformer_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/torch_t2t/torch_t2t_transformer_train.py -------------------------------------------------------------------------------- /transformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/README.md -------------------------------------------------------------------------------- /transformer/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformer/chat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/chat/setup.py -------------------------------------------------------------------------------- /transformer/chat/trainer/__init__.py: -------------------------------------------------------------------------------- 1 | from . import problem -------------------------------------------------------------------------------- /transformer/chat/trainer/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/chat/trainer/problem.py -------------------------------------------------------------------------------- /transformer/do_launch_chat_movie_30.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/do_launch_chat_movie_30.sh -------------------------------------------------------------------------------- /transformer/do_launch_tensorboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/do_launch_tensorboard.sh -------------------------------------------------------------------------------- /transformer/tf_t2t_train_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/tf_t2t_train_chat.py -------------------------------------------------------------------------------- /transformer/tf_t2t_train_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/tf_t2t_train_run.py -------------------------------------------------------------------------------- /transformer/tf_t2t_train_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/transformer/tf_t2t_train_serve.py -------------------------------------------------------------------------------- /virtualenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/virtualenv/README.md -------------------------------------------------------------------------------- /virtualenv/do_make_virtualenv_setup36.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/virtualenv/do_make_virtualenv_setup36.sh -------------------------------------------------------------------------------- /virtualenv/do_make_virtualenv_setup37.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/virtualenv/do_make_virtualenv_setup37.sh -------------------------------------------------------------------------------- /virtualenv/do_make_virtualenv_use_36.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/virtualenv/do_make_virtualenv_use_36.sh -------------------------------------------------------------------------------- /virtualenv/do_make_virtualenv_use_37.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/virtualenv/do_make_virtualenv_use_37.sh -------------------------------------------------------------------------------- /vis/head_view_gpt2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/vis/head_view_gpt2.ipynb -------------------------------------------------------------------------------- /vis/tf_t2t_vis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanovico/chatbot-khan/HEAD/vis/tf_t2t_vis.ipynb --------------------------------------------------------------------------------