├── .circleci └── config.yml ├── .coveragerc ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── agent-bug.md │ ├── feature-request.md │ ├── mturk-bug.md │ └── other.md ├── pull_request_template.md ├── scripts │ └── git-secrets └── workflows │ ├── lint.yml │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NEWS.md ├── README.md ├── autoformat.sh ├── codecov.yml ├── conftest.py ├── docs ├── Makefile ├── README.md └── source │ ├── _static │ ├── css │ │ └── parlai_theme.css │ └── img │ │ ├── ParlAI_Logo-Icon.png │ │ ├── act-obs-dict.png │ │ ├── aod-ex.png │ │ ├── datasets.png │ │ ├── main.png │ │ ├── messenger-example.png │ │ ├── mturk-small.png │ │ ├── mturk.png │ │ ├── parlai.png │ │ ├── parlai_example.png │ │ ├── personachat_example.png │ │ ├── task_tutorial_skateboard.jpg │ │ ├── tasks.png │ │ ├── tasks2.png │ │ ├── world_basic.png │ │ ├── world_batchagent.png │ │ ├── world_batchbasic.png │ │ ├── world_batchteacher.png │ │ └── world_share.png │ ├── agents_list.md │ ├── chat_service.md │ ├── cli_advanced.md │ ├── cli_custom.md │ ├── cli_usage.md │ ├── conf.py │ ├── core.md │ ├── core │ ├── agents.md │ ├── build_data.md │ ├── dict.md │ ├── loader.md │ ├── messages.md │ ├── metrics_api.md │ ├── mutators.md │ ├── params.md │ ├── script.md │ ├── teachers.md │ ├── torch_agent.md │ └── worlds.md │ ├── faq.md │ ├── generate_agent_list.py │ ├── generate_cli.py │ ├── generate_metric_list.py │ ├── generate_mutator_list.py │ ├── generate_task_READMEs.py │ ├── generate_task_list.py │ ├── generate_zoo_list.py │ ├── index.md │ ├── mutators.md │ ├── tasks.md │ ├── tutorial_basic.md │ ├── tutorial_chat_service.md │ ├── tutorial_crowdsourcing.md │ ├── tutorial_fast.md │ ├── tutorial_metrics.md │ ├── tutorial_mutators.md │ ├── tutorial_quick.md │ ├── tutorial_task.md │ ├── tutorial_tests.md │ ├── tutorial_tipsntricks.md │ ├── tutorial_torch_generator_agent.md │ ├── tutorial_torch_ranker_agent.md │ ├── tutorial_worlds.md │ ├── utils.md │ └── zoo.md ├── example_parlai_internal ├── README.md ├── __init__.py ├── agents │ └── parrot │ │ └── parrot.py └── zoo │ └── .internal_zoo_path ├── mypy.ini ├── parlai ├── README.md ├── __init__.py ├── __main__.py ├── agents │ ├── README.md │ ├── __init__.py │ ├── alice │ │ ├── README.md │ │ ├── __init__.py │ │ └── alice.py │ ├── bart │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bart.py │ │ ├── convert_fairseq_to_parlai.py │ │ └── modules.py │ ├── bert_classifier │ │ ├── README.md │ │ ├── __init__.py │ │ └── bert_classifier.py │ ├── bert_ranker │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bert_dictionary.py │ │ ├── bert_ranker.py │ │ ├── bi_encoder_ranker.py │ │ ├── both_encoder_ranker.py │ │ ├── cross_encoder_ranker.py │ │ └── helpers.py │ ├── examples │ │ ├── README.md │ │ ├── __init__.py │ │ ├── seq2seq.py │ │ └── tra.py │ ├── fixed_response │ │ ├── README.md │ │ ├── __init__.py │ │ └── fixed_response.py │ ├── hred │ │ ├── README.md │ │ ├── __init__.py │ │ ├── hred.py │ │ └── modules.py │ ├── hugging_face │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dialogpt.py │ │ ├── dict.py │ │ ├── gpt2.py │ │ ├── hugging_face.py │ │ └── t5.py │ ├── image_seq2seq │ │ ├── README.md │ │ ├── __init__.py │ │ ├── image_seq2seq.py │ │ └── modules.py │ ├── ir_baseline │ │ ├── README.md │ │ ├── __init__.py │ │ └── ir_baseline.py │ ├── local_human │ │ ├── README.md │ │ ├── __init__.py │ │ └── local_human.py │ ├── memnn │ │ ├── README.md │ │ ├── __init__.py │ │ ├── memnn.py │ │ └── modules.py │ ├── random_candidate │ │ ├── README.md │ │ ├── __init__.py │ │ └── random_candidate.py │ ├── repeat_label │ │ ├── README.md │ │ ├── __init__.py │ │ └── repeat_label.py │ ├── repeat_query │ │ ├── README.md │ │ ├── __init__.py │ │ └── repeat_query.py │ ├── retriever_reader │ │ ├── README.md │ │ ├── __init__.py │ │ └── retriever_reader.py │ ├── safe_local_human │ │ ├── README.md │ │ ├── __init__.py │ │ └── safe_local_human.py │ ├── seq2seq │ │ ├── README.md │ │ ├── __init__.py │ │ ├── modules.py │ │ └── seq2seq.py │ ├── starspace │ │ ├── README.md │ │ ├── __init__.py │ │ ├── modules.py │ │ └── starspace.py │ ├── test_agents │ │ ├── README.md │ │ ├── __init__.py │ │ ├── counter.py │ │ ├── null.py │ │ ├── test_agents.py │ │ └── unigram.py │ ├── tfidf_retriever │ │ ├── README.md │ │ ├── __init__.py │ │ ├── build_tfidf.py │ │ ├── doc_db.py │ │ ├── tfidf_doc_ranker.py │ │ ├── tfidf_retriever.py │ │ ├── tokenizers │ │ │ ├── __init__.py │ │ │ ├── regexp_tokenizer.py │ │ │ ├── simple_tokenizer.py │ │ │ ├── spacy_tokenizer.py │ │ │ └── tokenizer.py │ │ └── utils.py │ ├── transformer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── biencoder.py │ │ ├── classifier.py │ │ ├── crossencoder.py │ │ ├── generator.py │ │ ├── image_polyencoder.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── attention.py │ │ │ ├── constants.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ffn.py │ │ │ ├── functions.py │ │ │ ├── generator.py │ │ │ ├── mem_net.py │ │ │ └── wrappers.py │ │ ├── polyencoder.py │ │ ├── ranker.py │ │ └── transformer.py │ └── unigram │ │ ├── README.md │ │ ├── __init__.py │ │ └── unigram.py ├── chat_service │ ├── README.md │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── chat_service_manager.py │ │ ├── server │ │ │ ├── __init__.py │ │ │ ├── package.json │ │ │ └── server.js │ │ ├── socket.py │ │ └── world_runner.py │ ├── services │ │ ├── __init__.py │ │ ├── browser_chat │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── browser_manager.py │ │ │ ├── client.py │ │ │ └── run.py │ │ ├── messenger │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── message_sender.py │ │ │ ├── messenger_manager.py │ │ │ ├── run.py │ │ │ └── worlds.py │ │ ├── terminal_chat │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── client.py │ │ │ ├── run.py │ │ │ └── terminal_manager.py │ │ └── websocket │ │ │ ├── __init__.py │ │ │ ├── agents.py │ │ │ ├── run.py │ │ │ ├── sockets.py │ │ │ └── websocket_manager.py │ ├── tasks │ │ ├── __init__.py │ │ ├── chatbot │ │ │ ├── __init__.py │ │ │ ├── config.yml │ │ │ └── worlds.py │ │ ├── overworld_demo │ │ │ ├── __init__.py │ │ │ ├── config.yml │ │ │ └── worlds.py │ │ └── qa_data_collection │ │ │ ├── __init__.py │ │ │ ├── config.yml │ │ │ └── worlds.py │ └── utils │ │ ├── __init__.py │ │ ├── config.py │ │ ├── image.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── server.py │ │ └── timeout.py ├── core │ ├── README.md │ ├── __init__.py │ ├── agents.py │ ├── build_data.py │ ├── dict.py │ ├── exceptions.py │ ├── image_featurizers.py │ ├── loader.py │ ├── logs.py │ ├── message.py │ ├── metrics.py │ ├── mutators.py │ ├── opt.py │ ├── params.py │ ├── script.py │ ├── teachers.py │ ├── torch_agent.py │ ├── torch_classifier_agent.py │ ├── torch_generator_agent.py │ ├── torch_image_agent.py │ ├── torch_ranker_agent.py │ └── worlds.py ├── crowdsourcing │ ├── README.md │ ├── __init__.py │ ├── tasks │ │ ├── __init__.py │ │ ├── acute_eval │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── acute_eval_agent_state.py │ │ │ ├── acute_eval_blueprint.py │ │ │ ├── acute_eval_builder.py │ │ │ ├── acute_eval_runner.py │ │ │ ├── analysis.py │ │ │ ├── conf │ │ │ │ ├── base_fast_acute.yaml │ │ │ │ ├── example.yaml │ │ │ │ └── example_fast_acute.yaml │ │ │ ├── dump_task_to_acute_format.py │ │ │ ├── fast_acute_blueprint.py │ │ │ ├── fast_eval.py │ │ │ ├── run.py │ │ │ ├── task_config │ │ │ │ ├── model_config_dataset.json │ │ │ │ ├── model_config_logs.json │ │ │ │ ├── model_config_self_chat.json │ │ │ │ ├── onboarding.json │ │ │ │ ├── pairings.jsonl │ │ │ │ └── self_chats │ │ │ │ │ ├── model1.blended_skill_talk.jsonl │ │ │ │ │ ├── model1.blended_skill_talk.metadata │ │ │ │ │ ├── model2.blended_skill_talk.jsonl │ │ │ │ │ └── model2.blended_skill_talk.metadata │ │ │ ├── util.py │ │ │ └── webapp │ │ │ │ ├── .babelrc │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── app.jsx │ │ │ │ ├── components │ │ │ │ │ └── core_components.jsx │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ ├── main.js │ │ │ │ └── static │ │ │ │ │ └── index.html │ │ │ │ └── webpack.config.js │ │ ├── chat_demo │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── run.py │ │ ├── model_chat │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── analysis │ │ │ │ ├── __init__.py │ │ │ │ └── compile_results.py │ │ │ ├── bot_agent.py │ │ │ ├── conf │ │ │ │ ├── example.yaml │ │ │ │ └── example_image_chat.yaml │ │ │ ├── constants.py │ │ │ ├── frontend │ │ │ │ ├── components │ │ │ │ │ ├── chat_app_with_onboarding.jsx │ │ │ │ │ ├── checkboxes.jsx │ │ │ │ │ ├── error_boundary.jsx │ │ │ │ │ ├── message.jsx │ │ │ │ │ ├── onboarding_components.jsx │ │ │ │ │ └── response_panes.jsx │ │ │ │ └── main.js │ │ │ ├── impl.py │ │ │ ├── model_chat_blueprint.py │ │ │ ├── run.py │ │ │ ├── run_image_chat.py │ │ │ ├── scripts │ │ │ │ ├── __init__.py │ │ │ │ └── save_image_contexts.py │ │ │ ├── task_config │ │ │ │ ├── annotations_config.json │ │ │ │ ├── image_model_opts.yaml │ │ │ │ ├── left_pane_text.html │ │ │ │ ├── model_opts.yaml │ │ │ │ ├── onboard_task_data.json │ │ │ │ └── task_description.html │ │ │ ├── utils.py │ │ │ ├── worlds.py │ │ │ └── worlds_image_chat.py │ │ ├── qa_data_collection │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── conf │ │ │ │ └── example.yaml │ │ │ ├── run.py │ │ │ ├── task_config │ │ │ │ └── task_description.html │ │ │ ├── util.py │ │ │ ├── webapp │ │ │ │ ├── .babelrc │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── main.js │ │ │ │ │ └── static │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── notif.mp3 │ │ │ │ └── webpack.config.js │ │ │ └── worlds.py │ │ └── turn_annotations_static │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── analysis │ │ │ ├── __init__.py │ │ │ └── compile_results.py │ │ │ ├── conf │ │ │ ├── example.yaml │ │ │ └── example_in_flight_qa.yaml │ │ │ ├── run.py │ │ │ ├── run_in_flight_qa.py │ │ │ ├── task_config │ │ │ ├── annotation_buckets.json │ │ │ ├── annotation_indices_example.jsonl │ │ │ ├── onboarding.json │ │ │ └── onboarding_in_flight.jsonl │ │ │ ├── turn_annotations_blueprint.py │ │ │ ├── util.py │ │ │ └── webapp │ │ │ ├── .babelrc │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── app.jsx │ │ │ ├── components │ │ │ │ ├── checkboxes.jsx │ │ │ │ ├── core_components.jsx │ │ │ │ ├── error_boundary.jsx │ │ │ │ ├── onboarding_components.jsx │ │ │ │ └── task_components.jsx │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── main.js │ │ │ └── static │ │ │ │ └── index.html │ │ │ └── webpack.config.js │ └── utils │ │ ├── README.md │ │ ├── __init__.py │ │ ├── acceptability.py │ │ ├── analysis.py │ │ ├── frontend.py │ │ ├── mturk.py │ │ ├── tests.py │ │ └── worlds.py ├── mturk │ └── README.md ├── mutators │ ├── __init__.py │ ├── context_shuffle.py │ ├── episode_reverse.py │ ├── episode_shuffle.py │ ├── flatten.py │ ├── last_turn.py │ ├── word_reverse.py │ └── word_shuffle.py ├── nn │ ├── __init__.py │ └── lr_scheduler.py ├── scripts │ ├── __init__.py │ ├── build_candidates.py │ ├── build_dict.py │ ├── compare_opts.py │ ├── convert_data_to_json_format.py │ ├── convert_data_to_parlai_format.py │ ├── convo_render.py │ ├── data_stats.py │ ├── detect_offensive_language.py │ ├── display_data.py │ ├── display_model.py │ ├── distributed_eval.py │ ├── distributed_train.py │ ├── eval_model.py │ ├── eval_wordstat.py │ ├── extract_image_feature.py │ ├── interactive.py │ ├── interactive_web.py │ ├── multiprocessing_eval.py │ ├── multiprocessing_train.py │ ├── party.py │ ├── profile_interactive.py │ ├── profile_train.py │ ├── safe_interactive.py │ ├── self_chat.py │ ├── token_stats.py │ ├── torchscript.py │ ├── train_model.py │ ├── vacuum.py │ └── verify_data.py ├── tasks │ ├── README.md │ ├── __init__.py │ ├── airdialogue │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── airdialogue_air_dialogue_test.yml │ │ │ ├── airdialogue_air_dialogue_train.yml │ │ │ ├── airdialogue_air_dialogue_valid.yml │ │ │ ├── airdialogue_test.yml │ │ │ ├── airdialogue_train.yml │ │ │ └── airdialogue_valid.yml │ ├── amazon_qa │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── anli │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── anli_test.yml │ │ │ ├── anli_train.yml │ │ │ └── anli_valid.yml │ ├── aqua │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── aqua_test.yml │ │ │ ├── aqua_train.yml │ │ │ └── aqua_valid.yml │ ├── babi │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── babi_all10k_test.yml │ │ │ ├── babi_all10k_train.yml │ │ │ ├── babi_all10k_valid.yml │ │ │ ├── babi_all1k_test.yml │ │ │ ├── babi_all1k_train.yml │ │ │ ├── babi_all1k_valid.yml │ │ │ ├── babi_test.yml │ │ │ ├── babi_train.yml │ │ │ └── babi_valid.yml │ ├── blended_skill_talk │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ ├── test │ │ │ ├── blended_skill_talk_all_test.yml │ │ │ ├── blended_skill_talk_all_train.yml │ │ │ ├── blended_skill_talk_all_valid.yml │ │ │ ├── blended_skill_talk_blended_skill_talk_test.yml │ │ │ ├── blended_skill_talk_blended_skill_talk_train.yml │ │ │ ├── blended_skill_talk_blended_skill_talk_valid.yml │ │ │ ├── blended_skill_talk_convAI2_persona_topicifier_test.yml │ │ │ ├── blended_skill_talk_convAI2_persona_topicifier_train.yml │ │ │ ├── blended_skill_talk_convAI2_persona_topicifier_valid.yml │ │ │ ├── blended_skill_talk_e_d_persona_topicifier_test.yml │ │ │ ├── blended_skill_talk_e_d_persona_topicifier_train.yml │ │ │ ├── blended_skill_talk_e_d_persona_topicifier_valid.yml │ │ │ ├── blended_skill_talk_test.yml │ │ │ ├── blended_skill_talk_train.yml │ │ │ ├── blended_skill_talk_valid.yml │ │ │ ├── blended_skill_talk_wo_w_persona_topicifier_test.yml │ │ │ ├── blended_skill_talk_wo_w_persona_topicifier_train.yml │ │ │ └── blended_skill_talk_wo_w_persona_topicifier_valid.yml │ │ └── worlds.py │ ├── booktest │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── bot_adversarial_dialogue │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── bot_adversarial_dialogue_HumanSafetyEvaluation_test.yml │ │ │ ├── bot_adversarial_dialogue_HumanSafetyEvaluation_train.yml │ │ │ ├── bot_adversarial_dialogue_HumanSafetyEvaluation_valid.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=all_bad_safety_mix=all_bad_num_turns=4_test.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=all_bad_safety_mix=all_bad_num_turns=4_train.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=all_bad_safety_mix=all_bad_num_turns=4_valid.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=all_bad_safety_mix=safe_bad_num_turns=4_test.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=all_bad_safety_mix=safe_bad_num_turns=4_train.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=all_bad_safety_mix=safe_bad_num_turns=4_valid.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=human_bad_safety_mix=all_bad_num_turns=4_test.yml │ │ │ ├── bot_adversarial_dialogue_bad_speaker_to_eval=human_bad_safety_mix=all_bad_num_turns=4_train.yml │ │ │ └── bot_adversarial_dialogue_bad_speaker_to_eval=human_bad_safety_mix=all_bad_num_turns=4_valid.yml │ ├── c3 │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── c3_c3_test.yml │ │ │ ├── c3_c3_train.yml │ │ │ ├── c3_c3_valid.yml │ │ │ ├── c3_test.yml │ │ │ ├── c3_train.yml │ │ │ └── c3_valid.yml │ ├── cbt │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── cbt_test.yml │ │ │ ├── cbt_train.yml │ │ │ └── cbt_valid.yml │ ├── ccpe │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── clevr │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── cnn_dm │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── coco_caption │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build_2014.py │ │ ├── build_2015.py │ │ └── build_2017.py │ ├── commonsenseqa │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── convai2 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ ├── test │ │ │ ├── convai2_both_test.yml │ │ │ ├── convai2_both_train.yml │ │ │ ├── convai2_both_valid.yml │ │ │ ├── convai2_none_test.yml │ │ │ ├── convai2_none_train.yml │ │ │ ├── convai2_none_valid.yml │ │ │ ├── convai2_normalized_test.yml │ │ │ ├── convai2_normalized_train.yml │ │ │ ├── convai2_normalized_valid.yml │ │ │ ├── convai2_self_revised_test.yml │ │ │ ├── convai2_self_revised_train.yml │ │ │ ├── convai2_self_revised_valid.yml │ │ │ ├── convai2_test.yml │ │ │ ├── convai2_train.yml │ │ │ └── convai2_valid.yml │ │ └── worlds.py │ ├── convai2_wild_evaluation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── convai_chitchat │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── copa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── coqa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── cornell_movie │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── cornell_movie_double_test.yml │ │ │ ├── cornell_movie_double_train.yml │ │ │ ├── cornell_movie_double_valid.yml │ │ │ ├── cornell_movie_test.yml │ │ │ ├── cornell_movie_train.yml │ │ │ └── cornell_movie_valid.yml │ ├── dailydialog │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── parse.py │ │ ├── test.py │ │ └── test │ │ │ ├── dailydialog_no_start_test.yml │ │ │ ├── dailydialog_no_start_train.yml │ │ │ ├── dailydialog_no_start_valid.yml │ │ │ ├── dailydialog_test.yml │ │ │ ├── dailydialog_train.yml │ │ │ └── dailydialog_valid.yml │ ├── dbll_babi │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dbll_babi_test.yml │ │ │ ├── dbll_babi_train.yml │ │ │ └── dbll_babi_valid.yml │ ├── dbll_movie │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dbll_movie_KB_test.yml │ │ │ ├── dbll_movie_KB_train.yml │ │ │ ├── dbll_movie_KB_valid.yml │ │ │ ├── dbll_movie_test.yml │ │ │ ├── dbll_movie_train.yml │ │ │ └── dbll_movie_valid.yml │ ├── dealnodeal │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dealnodeal_test.yml │ │ │ ├── dealnodeal_train.yml │ │ │ └── dealnodeal_valid.yml │ ├── decanlp │ │ ├── README.md │ │ ├── __init__.py │ │ └── agents.py │ ├── decode │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── decode_test.yml │ │ │ ├── decode_train.yml │ │ │ └── decode_valid.yml │ ├── dialog_babi │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dialog_babi_test.yml │ │ │ ├── dialog_babi_train.yml │ │ │ └── dialog_babi_valid.yml │ ├── dialog_babi_plus │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dialog_babi_plus_KB_test.yml │ │ │ ├── dialog_babi_plus_KB_train.yml │ │ │ ├── dialog_babi_plus_KB_valid.yml │ │ │ ├── dialog_babi_plus_test.yml │ │ │ ├── dialog_babi_plus_train.yml │ │ │ └── dialog_babi_plus_valid.yml │ ├── dialogue_nli │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dialogue_nli_test.yml │ │ │ ├── dialogue_nli_train.yml │ │ │ └── dialogue_nli_valid.yml │ ├── dialogue_qe │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dialogue_qe_test.yml │ │ │ ├── dialogue_qe_train.yml │ │ │ └── dialogue_qe_valid.yml │ ├── dialogue_safety │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── base_agent.py │ │ └── build.py │ ├── dream │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dream_d_r_e_a_m_test.yml │ │ │ ├── dream_d_r_e_a_m_train.yml │ │ │ ├── dream_d_r_e_a_m_valid.yml │ │ │ ├── dream_test.yml │ │ │ ├── dream_train.yml │ │ │ └── dream_valid.yml │ ├── dstc7 │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── dstc7_test.yml │ │ │ ├── dstc7_train.yml │ │ │ └── dstc7_valid.yml │ ├── eli5 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ └── data_creation │ │ │ ├── __init__.py │ │ │ ├── data_utils.py │ │ │ ├── download_reddit_qalist.py │ │ │ ├── download_support_docs.py │ │ │ ├── finalize_qda.py │ │ │ ├── merge_support_docs.py │ │ │ ├── select_sentences_tfidf.py │ │ │ └── slurm_scripts │ │ │ ├── __init__.py │ │ │ ├── eli_download_docs.sbatch │ │ │ ├── eli_download_docs.sh │ │ │ ├── eli_download_docs_launcher.sh │ │ │ ├── eli_merge_docs.sbatch │ │ │ ├── eli_merge_docs.sh │ │ │ ├── eli_merge_docs_launcher.sh │ │ │ ├── eli_select_docs.sbatch │ │ │ ├── eli_select_docs.sh │ │ │ └── eli_select_docs_launcher.sh │ ├── empathetic_dialogues │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ ├── test │ │ │ ├── empathetic_dialogues_test.yml │ │ │ ├── empathetic_dialogues_train.yml │ │ │ └── empathetic_dialogues_valid.yml │ │ └── worlds.py │ ├── flickr30k │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── fromfile │ │ ├── README.md │ │ ├── __init__.py │ │ └── agents.py │ ├── funpedia │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── funpedia_echo_test.yml │ │ │ ├── funpedia_echo_train.yml │ │ │ ├── funpedia_echo_valid.yml │ │ │ ├── funpedia_funpedia_test.yml │ │ │ ├── funpedia_funpedia_train.yml │ │ │ ├── funpedia_funpedia_valid.yml │ │ │ ├── funpedia_lm_test.yml │ │ │ ├── funpedia_lm_train.yml │ │ │ ├── funpedia_lm_valid.yml │ │ │ ├── funpedia_nopersona_test.yml │ │ │ ├── funpedia_nopersona_train.yml │ │ │ ├── funpedia_nopersona_valid.yml │ │ │ ├── funpedia_sentencechoose_test.yml │ │ │ ├── funpedia_sentencechoose_train.yml │ │ │ ├── funpedia_sentencechoose_valid.yml │ │ │ ├── funpedia_test.yml │ │ │ ├── funpedia_train.yml │ │ │ └── funpedia_valid.yml │ ├── fvqa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── genderation_bias │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ └── utils.py │ ├── google_sgd │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── google_sgd_test.yml │ │ │ ├── google_sgd_text2_a_p_i2_text_test.yml │ │ │ ├── google_sgd_text2_a_p_i2_text_train.yml │ │ │ ├── google_sgd_text2_a_p_i2_text_valid.yml │ │ │ ├── google_sgd_text2_text_test.yml │ │ │ ├── google_sgd_text2_text_train.yml │ │ │ ├── google_sgd_text2_text_valid.yml │ │ │ ├── google_sgd_train.yml │ │ │ └── google_sgd_valid.yml │ ├── holl_e │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── holl_e_holl_e_test.yml │ │ │ ├── holl_e_holl_e_train.yml │ │ │ ├── holl_e_holl_e_valid.yml │ │ │ ├── holl_e_test.yml │ │ │ ├── holl_e_train.yml │ │ │ └── holl_e_valid.yml │ ├── hotpotqa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── hotpotqa_distractor_test.yml │ │ │ ├── hotpotqa_distractor_train.yml │ │ │ ├── hotpotqa_distractor_valid.yml │ │ │ ├── hotpotqa_fullwiki_test.yml │ │ │ ├── hotpotqa_fullwiki_train.yml │ │ │ ├── hotpotqa_fullwiki_valid.yml │ │ │ ├── hotpotqa_test.yml │ │ │ ├── hotpotqa_train.yml │ │ │ └── hotpotqa_valid.yml │ ├── igc │ │ ├── __init__.py │ │ └── agents.py │ ├── image_chat │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── download_data.py │ │ └── download_data.sh │ ├── insuranceqa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── insuranceqa_test.yml │ │ │ ├── insuranceqa_train.yml │ │ │ ├── insuranceqa_v1_test.yml │ │ │ ├── insuranceqa_v1_train.yml │ │ │ ├── insuranceqa_v1_valid.yml │ │ │ ├── insuranceqa_v2_test.yml │ │ │ ├── insuranceqa_v2_train.yml │ │ │ ├── insuranceqa_v2_valid.yml │ │ │ └── insuranceqa_valid.yml │ ├── integration_tests │ │ ├── README.md │ │ ├── __init__.py │ │ └── agents.py │ ├── interactive │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── worlds.py │ ├── iwslt14 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── iwslt14_test.yml │ │ │ ├── iwslt14_train.yml │ │ │ └── iwslt14_valid.yml │ ├── jsonfile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── example_data.json │ ├── light_dialog │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── builder.py │ │ ├── test.py │ │ ├── test │ │ │ ├── light_dialog_test.yml │ │ │ ├── light_dialog_train.yml │ │ │ └── light_dialog_valid.yml │ │ └── worlds.py │ ├── light_dialog_wild │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── builder.py │ │ ├── test.py │ │ └── test │ │ │ ├── light_dialog_wild_test.yml │ │ │ ├── light_dialog_wild_train.yml │ │ │ └── light_dialog_wild_valid.yml │ ├── light_genderation_bias │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── mctest │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── mctest_test.yml │ │ │ ├── mctest_train.yml │ │ │ └── mctest_valid.yml │ ├── md_gender │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── convai2.py │ │ ├── funpedia.py │ │ ├── image_chat.py │ │ ├── light.py │ │ ├── new_data.py │ │ ├── opensubtitles.py │ │ ├── utils.py │ │ ├── wikipedia.py │ │ ├── wizard.py │ │ ├── worlds.py │ │ └── yelp.py │ ├── mnist_qa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── mnist_qa_test.yml │ │ │ ├── mnist_qa_train.yml │ │ │ └── mnist_qa_valid.yml │ ├── moviedialog │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── ms_marco │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── mturkwikimovies │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── multinli │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── multinli_test.yml │ │ │ ├── multinli_train.yml │ │ │ └── multinli_valid.yml │ ├── multiwoz_v20 │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── multiwoz_v20_multi_woz_test.yml │ │ │ ├── multiwoz_v20_multi_woz_train.yml │ │ │ ├── multiwoz_v20_multi_woz_valid.yml │ │ │ ├── multiwoz_v20_test.yml │ │ │ ├── multiwoz_v20_train.yml │ │ │ └── multiwoz_v20_valid.yml │ ├── multiwoz_v21 │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── multiwoz_v21_multi_woz_test.yml │ │ │ ├── multiwoz_v21_multi_woz_train.yml │ │ │ ├── multiwoz_v21_multi_woz_valid.yml │ │ │ ├── multiwoz_v21_test.yml │ │ │ ├── multiwoz_v21_train.yml │ │ │ └── multiwoz_v21_valid.yml │ ├── mutualfriends │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── mwsc │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── narrative_qa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── natural_questions │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ └── utils │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── text_utils.py │ ├── nli │ │ ├── __init__.py │ │ └── agents.py │ ├── nlvr │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── onecommon │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── opensubtitles │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build_2009.py │ │ └── build_2018.py │ ├── personachat │ │ ├── LICENSE_DOCUMENTATION │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── personachat_both_original_test.yml │ │ │ ├── personachat_both_original_train.yml │ │ │ ├── personachat_both_original_valid.yml │ │ │ ├── personachat_both_revised_test.yml │ │ │ ├── personachat_both_revised_train.yml │ │ │ ├── personachat_both_revised_valid.yml │ │ │ ├── personachat_both_test.yml │ │ │ ├── personachat_both_train.yml │ │ │ ├── personachat_both_valid.yml │ │ │ ├── personachat_none_test.yml │ │ │ ├── personachat_none_train.yml │ │ │ ├── personachat_none_valid.yml │ │ │ ├── personachat_other_original_test.yml │ │ │ ├── personachat_other_original_train.yml │ │ │ ├── personachat_other_original_valid.yml │ │ │ ├── personachat_other_revised_test.yml │ │ │ ├── personachat_other_revised_train.yml │ │ │ ├── personachat_other_revised_valid.yml │ │ │ ├── personachat_other_test.yml │ │ │ ├── personachat_other_train.yml │ │ │ ├── personachat_other_valid.yml │ │ │ ├── personachat_self_original_test.yml │ │ │ ├── personachat_self_original_train.yml │ │ │ ├── personachat_self_original_valid.yml │ │ │ ├── personachat_self_revised_test.yml │ │ │ ├── personachat_self_revised_train.yml │ │ │ ├── personachat_self_revised_valid.yml │ │ │ ├── personachat_self_test.yml │ │ │ ├── personachat_self_train.yml │ │ │ ├── personachat_self_valid.yml │ │ │ ├── personachat_test.yml │ │ │ ├── personachat_train.yml │ │ │ └── personachat_valid.yml │ ├── personality_captions │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ └── download_images.py │ ├── personalized_dialog │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── qacnn │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── qadailymail │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── qangaroo │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── qasrl │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── qazre │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── quac │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── quac_test.yml │ │ │ ├── quac_train.yml │ │ │ └── quac_valid.yml │ ├── redial │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── redial_re_dial_test.yml │ │ │ ├── redial_re_dial_train.yml │ │ │ ├── redial_re_dial_valid.yml │ │ │ ├── redial_test.yml │ │ │ ├── redial_train.yml │ │ │ └── redial_valid.yml │ ├── scan │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── scan_test.yml │ │ │ ├── scan_train.yml │ │ │ └── scan_valid.yml │ ├── self_chat │ │ ├── __init__.py │ │ ├── agents.py │ │ └── worlds.py │ ├── sensitive_topics_evaluation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── simplequestions │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── simplequestions_test.yml │ │ │ ├── simplequestions_train.yml │ │ │ └── simplequestions_valid.yml │ ├── snli │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── snli_test.yml │ │ │ ├── snli_train.yml │ │ │ └── snli_valid.yml │ ├── squad │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── squad_fulldoc_test.yml │ │ │ ├── squad_fulldoc_train.yml │ │ │ ├── squad_fulldoc_valid.yml │ │ │ ├── squad_fulldocsentence_test.yml │ │ │ ├── squad_fulldocsentence_train.yml │ │ │ ├── squad_fulldocsentence_valid.yml │ │ │ ├── squad_index_test.yml │ │ │ ├── squad_index_train.yml │ │ │ ├── squad_index_valid.yml │ │ │ ├── squad_opensquad_test.yml │ │ │ ├── squad_opensquad_train.yml │ │ │ ├── squad_opensquad_valid.yml │ │ │ ├── squad_sentence_test.yml │ │ │ ├── squad_sentence_train.yml │ │ │ ├── squad_sentence_valid.yml │ │ │ ├── squad_test.yml │ │ │ ├── squad_train.yml │ │ │ └── squad_valid.yml │ ├── squad2 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── squad2_index_test.yml │ │ │ ├── squad2_index_train.yml │ │ │ ├── squad2_index_valid.yml │ │ │ ├── squad2_open_squad_test.yml │ │ │ ├── squad2_open_squad_train.yml │ │ │ ├── squad2_open_squad_valid.yml │ │ │ ├── squad2_sentence_index_edit_test.yml │ │ │ ├── squad2_sentence_index_edit_train.yml │ │ │ ├── squad2_sentence_index_edit_valid.yml │ │ │ ├── squad2_sentence_index_test.yml │ │ │ ├── squad2_sentence_index_train.yml │ │ │ ├── squad2_sentence_index_valid.yml │ │ │ ├── squad2_sentence_labels_test.yml │ │ │ ├── squad2_sentence_labels_train.yml │ │ │ ├── squad2_sentence_labels_valid.yml │ │ │ ├── squad2_test.yml │ │ │ ├── squad2_train.yml │ │ │ └── squad2_valid.yml │ ├── sst │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── sst_s_s_t_test.yml │ │ │ ├── sst_s_s_t_train.yml │ │ │ ├── sst_s_s_t_valid.yml │ │ │ ├── sst_test.yml │ │ │ ├── sst_train.yml │ │ │ └── sst_valid.yml │ ├── style_gen │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── style_gen_labeled_ED_persona_topicifier_test.yml │ │ │ ├── style_gen_labeled_ED_persona_topicifier_train.yml │ │ │ ├── style_gen_labeled_ED_persona_topicifier_valid.yml │ │ │ ├── style_gen_labeled_WoW_persona_topicifier_test.yml │ │ │ ├── style_gen_labeled_WoW_persona_topicifier_train.yml │ │ │ ├── style_gen_labeled_WoW_persona_topicifier_valid.yml │ │ │ ├── style_gen_labeled_blended_skill_talk_test.yml │ │ │ ├── style_gen_labeled_blended_skill_talk_train.yml │ │ │ ├── style_gen_labeled_blended_skill_talk_valid.yml │ │ │ ├── style_gen_labeled_convAI2_persona_topicifier_test.yml │ │ │ ├── style_gen_labeled_convAI2_persona_topicifier_train.yml │ │ │ └── style_gen_labeled_convAI2_persona_topicifier_valid.yml │ ├── task_list.py │ ├── taskmaster │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ ├── test │ │ │ ├── taskmaster_self_dialogue_segment_test.yml │ │ │ ├── taskmaster_self_dialogue_segment_train.yml │ │ │ ├── taskmaster_self_dialogue_segment_valid.yml │ │ │ ├── taskmaster_self_dialogue_test.yml │ │ │ ├── taskmaster_self_dialogue_train.yml │ │ │ ├── taskmaster_self_dialogue_valid.yml │ │ │ ├── taskmaster_test.yml │ │ │ ├── taskmaster_train.yml │ │ │ ├── taskmaster_valid.yml │ │ │ ├── taskmaster_woz_dialogue_test.yml │ │ │ ├── taskmaster_woz_dialogue_train.yml │ │ │ └── taskmaster_woz_dialogue_valid.yml │ │ └── tm_utils.py │ ├── taskmaster2 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── taskntalk │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── tasks.py │ ├── triviaqa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── twitter │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── twitter_test.yml │ │ │ ├── twitter_train.yml │ │ │ └── twitter_valid.yml │ ├── ubuntu │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── ubuntu_multiturn_test.yml │ │ │ ├── ubuntu_multiturn_train.yml │ │ │ ├── ubuntu_multiturn_valid.yml │ │ │ ├── ubuntu_test.yml │ │ │ ├── ubuntu_train.yml │ │ │ └── ubuntu_valid.yml │ ├── visdial │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── vqa_v1 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── vqa_v2 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── webquestions │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── wikimovies │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── wikimovies_test.yml │ │ │ ├── wikimovies_train.yml │ │ │ └── wikimovies_valid.yml │ ├── wikipedia │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── wikiqa │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── wikiqa_test.yml │ │ │ ├── wikiqa_train.yml │ │ │ └── wikiqa_valid.yml │ ├── wikisql │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── wikisql_test.yml │ │ │ ├── wikisql_train.yml │ │ │ ├── wikisql_valid.yml │ │ │ ├── wikisql_wiki_s_q_l_test.yml │ │ │ ├── wikisql_wiki_s_q_l_train.yml │ │ │ └── wikisql_wiki_s_q_l_valid.yml │ ├── wizard_of_wikipedia │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ ├── test │ │ │ ├── wizard_of_wikipedia_basic_apprentice_dialog_test.yml │ │ │ ├── wizard_of_wikipedia_basic_apprentice_dialog_train.yml │ │ │ ├── wizard_of_wikipedia_basic_apprentice_dialog_valid.yml │ │ │ ├── wizard_of_wikipedia_basic_both_dialog_test.yml │ │ │ ├── wizard_of_wikipedia_basic_both_dialog_train.yml │ │ │ ├── wizard_of_wikipedia_basic_both_dialog_valid.yml │ │ │ ├── wizard_of_wikipedia_basic_wizard_dialog_test.yml │ │ │ ├── wizard_of_wikipedia_basic_wizard_dialog_train.yml │ │ │ ├── wizard_of_wikipedia_basic_wizard_dialog_valid.yml │ │ │ ├── wizard_of_wikipedia_basicdialog_test.yml │ │ │ ├── wizard_of_wikipedia_basicdialog_train.yml │ │ │ ├── wizard_of_wikipedia_basicdialog_valid.yml │ │ │ ├── wizard_of_wikipedia_docreader_test.yml │ │ │ ├── wizard_of_wikipedia_docreader_train.yml │ │ │ ├── wizard_of_wikipedia_docreader_valid.yml │ │ │ ├── wizard_of_wikipedia_generator_test.yml │ │ │ ├── wizard_of_wikipedia_generator_train.yml │ │ │ ├── wizard_of_wikipedia_generator_valid.yml │ │ │ ├── wizard_of_wikipedia_wizard_dialog_knowledge_test.yml │ │ │ ├── wizard_of_wikipedia_wizard_dialog_knowledge_train.yml │ │ │ ├── wizard_of_wikipedia_wizard_dialog_knowledge_valid.yml │ │ │ ├── wizard_of_wikipedia_wizard_of_wikipedia_test.yml │ │ │ ├── wizard_of_wikipedia_wizard_of_wikipedia_train.yml │ │ │ └── wizard_of_wikipedia_wizard_of_wikipedia_valid.yml │ │ └── worlds.py │ ├── wizard_of_wikipedia_ko │ │ ├── __init__.py │ │ ├── agents.py │ │ └── build.py │ ├── wmt │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── wmt_en_de_test.yml │ │ │ ├── wmt_en_de_train.yml │ │ │ ├── wmt_en_de_valid.yml │ │ │ ├── wmt_test.yml │ │ │ ├── wmt_train.yml │ │ │ └── wmt_valid.yml │ ├── woz │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── build.py │ │ ├── test.py │ │ └── test │ │ │ ├── woz_test.yml │ │ │ ├── woz_train.yml │ │ │ ├── woz_valid.yml │ │ │ ├── woz_wo_z_test.yml │ │ │ ├── woz_wo_z_train.yml │ │ │ └── woz_wo_z_valid.yml │ └── wrapper │ │ ├── README.md │ │ ├── __init__.py │ │ └── agents.py ├── torchscript │ ├── README.md │ ├── __init__.py │ ├── agents.py │ ├── modules.py │ └── scripts │ │ ├── __init__.py │ │ └── test_exported_model.py ├── utils │ ├── __init__.py │ ├── bpe.py │ ├── conversations.py │ ├── data.py │ ├── distributed.py │ ├── flake8.py │ ├── fp16.py │ ├── io.py │ ├── logging.py │ ├── misc.py │ ├── pickle.py │ ├── safety.py │ ├── strings.py │ ├── testing.py │ ├── torch.py │ ├── typing.py │ └── world_logging.py └── zoo │ ├── README.md │ ├── __init__.py │ ├── bart │ ├── __init__.py │ └── build.py │ ├── bert │ ├── __init__.py │ └── build.py │ ├── blended_skill_talk │ ├── __init__.py │ ├── bst_single_task.py │ ├── convai2_single_task.py │ ├── ed_single_task.py │ ├── multi_task.py │ ├── multi_task_bst_tuned.py │ └── wizard_single_task.py │ ├── blender │ ├── __init__.py │ ├── blender_1Bdistill.py │ ├── blender_3B.py │ ├── blender_400Mdistill.py │ ├── blender_90M.py │ ├── blender_9B.py │ ├── blender_ascii.txt │ ├── build.py │ ├── dict_3B.py │ ├── dict_90M.py │ ├── reddit_3B.py │ └── reddit_9B.py │ ├── bot_adversarial_dialogue │ ├── __init__.py │ ├── multi_turn.py │ └── multi_turn_v0.py │ ├── detectron │ ├── __init__.py │ └── build.py │ ├── dialogue_safety │ ├── __init__.py │ ├── multi_turn.py │ └── single_turn.py │ ├── dialogue_unlikelihood │ ├── __init__.py │ ├── build.py │ ├── rep_convai2_ctxt.py │ ├── rep_convai2_ctxt_and_label.py │ ├── rep_convai2_label.py │ ├── rep_eli5_ctxt.py │ ├── rep_eli5_ctxt_and_label.py │ ├── rep_eli5_label.py │ ├── rep_wiki_ctxt.py │ ├── rep_wiki_ctxt_and_label.py │ ├── rep_wiki_label.py │ ├── vocab_alpha1e0.py │ ├── vocab_alpha1e1.py │ ├── vocab_alpha1e2.py │ └── vocab_alpha1e3.py │ ├── dodecadialogue │ ├── __init__.py │ ├── all_tasks_mt.py │ ├── build.py │ ├── convai2_ft.py │ ├── cornell_movie_ft.py │ ├── daily_dialog_ft.py │ ├── eli5_ft.py │ ├── empathetic_dialogues_ft.py │ ├── igc_ft.py │ ├── image_chat_ft.py │ ├── light_dialog_ft.py │ ├── reddit_ft.py │ ├── twitter_ft.py │ ├── ubuntu_ft.py │ └── wizard_of_wikipedia_ft.py │ ├── fasttext_cc_vectors │ ├── __init__.py │ └── build.py │ ├── fasttext_vectors │ ├── __init__.py │ └── build.py │ ├── glove_vectors │ ├── __init__.py │ └── build.py │ ├── image_chat │ ├── __init__.py │ └── transresnet_multimodal.py │ ├── light │ ├── __init__.py │ └── biranker_dialogue.py │ ├── md_gender │ ├── __init__.py │ └── build.py │ ├── model_list.py │ ├── multimodal_blenderbot │ ├── README.md │ └── __init__.py │ ├── personality_captions │ ├── __init__.py │ └── transresnet.py │ ├── pretrained_transformers │ ├── README.md │ ├── __init__.py │ ├── bi_model_huge_reddit.py │ ├── bi_model_huge_wikito.py │ ├── build.py │ ├── cross_model_huge_reddit.py │ ├── cross_model_huge_wikito.py │ ├── model_bi.py │ ├── model_poly.py │ ├── poly_model_huge_reddit.py │ └── poly_model_huge_wikito.py │ ├── sensitive_topics_classifier │ ├── __init__.py │ └── build.py │ ├── style_gen │ ├── __init__.py │ ├── c75_labeled_dialogue_generator.py │ └── prev_curr_classifier.py │ ├── tutorial_transformer_generator │ ├── __init__.py │ └── build.py │ ├── unittest │ ├── __init__.py │ └── build.py │ ├── wikipedia_full │ ├── __init__.py │ └── tfidf_retriever.py │ └── wizard_of_wikipedia │ ├── __init__.py │ ├── end2end_generator.py │ ├── full_dialogue_retrieval_model.py │ └── knowledge_retriever.py ├── projects ├── README.md ├── __init__.py ├── anti_scaling │ ├── README.md │ ├── __init__.py │ ├── distillation.py │ └── scripts │ │ ├── __init__.py │ │ └── remove_projection_matrices.py ├── babi │ └── memnn │ │ ├── memnn_bAbI_10k_task_parameter_sweep.sh │ │ └── memnn_bAbI_1k_task_parameter_sweep.sh ├── beat_the_bot │ ├── README.md │ ├── beatthebot.gif │ └── bot.png ├── blender │ └── README.md ├── bst │ ├── README.md │ └── bst_fig.png ├── contradiction │ ├── README.md │ └── download_with_raw_format.md ├── controllable_dialogue │ └── README.md ├── convai2 │ └── README.md ├── dialogue_safety │ ├── README.md │ └── diagram.png ├── dialogue_unlikelihood │ ├── README.md │ ├── __init__.py │ └── agents.py ├── dodecadialogue │ ├── Baseline.png │ ├── Comparison.png │ ├── README.md │ ├── Tasks.png │ ├── image_chat.png │ └── wizard.png ├── drqa │ └── README.md ├── genderation_bias │ ├── README.md │ └── agents.py ├── image_chat │ ├── Examples.png │ ├── README.md │ ├── __init__.py │ ├── interactive.py │ └── transresnet_multimodal │ │ ├── __init__.py │ │ ├── modules.py │ │ └── transresnet_multimodal.py ├── light │ ├── README.md │ ├── example-dialog.png │ ├── scribe.png │ └── tavern.png ├── mastering_the_dungeon │ └── README.md ├── md_gender │ ├── README.md │ └── bert_ranker_classifier │ │ └── agents.py ├── memnn_feedback │ └── README.md ├── multimodal_blenderbot │ ├── README.md │ ├── __init__.py │ ├── agents.py │ ├── bear.png │ └── flowers.png ├── personachat │ └── README.md ├── personality_captions │ ├── Examples.png │ ├── README.md │ ├── __init__.py │ ├── interactive.py │ └── transresnet │ │ ├── __init__.py │ │ ├── modules.py │ │ └── transresnet.py ├── polyencoder │ └── README.md ├── recipes │ ├── README.md │ ├── chatlog_2.7B.json │ ├── chatlog_2.7B_render.html │ ├── funguy.png │ └── steve_jobs.png ├── safety_recipes │ ├── BAD_safety_diagram.png │ ├── README.md │ └── human_safety_evaluation │ │ ├── conf │ │ └── example.yaml │ │ ├── run.py │ │ └── task_config │ │ ├── annotation_buckets_radio.json │ │ ├── annotation_indices.jsonl │ │ ├── onboarding.json │ │ └── task_data.jsonl ├── self_feeding │ └── README.md ├── style_gen │ ├── README.md │ ├── __init__.py │ ├── classifier.py │ ├── modules.py │ └── style_gen.py ├── talkthewalk │ └── README.md ├── wizard_of_wikipedia │ ├── README.md │ ├── __init__.py │ ├── chat_example1.jsonl │ ├── chat_example2.jsonl │ ├── diagram.png │ ├── generator │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── modules.py │ │ └── train_end2end.py │ ├── knowledge_retriever │ │ ├── __init__.py │ │ └── knowledge_retriever.py │ ├── mage.png │ ├── mturk_evaluation_task │ │ └── README.md │ ├── parrot.png │ ├── scripts │ │ ├── __init__.py │ │ ├── eval_retrieval_model.py │ │ └── interactive_retrieval_model.py │ └── wizard_transformer_ranker │ │ ├── __init__.py │ │ ├── wizard_dict.py │ │ └── wizard_transformer_ranker.py └── wizard_of_wikipedia_ko │ ├── __init__.py │ └── generator │ ├── __init__.py │ ├── t5.py │ └── train_end2end.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── setup.py ├── tests ├── README.md ├── __init__.py ├── crowdsourcing │ ├── tasks │ │ ├── acute_eval │ │ │ ├── test_acute_eval.py │ │ │ ├── test_acute_eval │ │ │ │ └── test_base_task.yml │ │ │ ├── test_fast_acute_dataset.py │ │ │ ├── test_fast_acute_dataset │ │ │ │ ├── test_agent_state.yml │ │ │ │ ├── test_all_convo_pairs_txt.txt │ │ │ │ ├── test_all_html.txt │ │ │ │ ├── test_full_csv.csv │ │ │ │ ├── test_grid_csv.csv │ │ │ │ ├── test_grid_winners_as_rows_csv.csv │ │ │ │ ├── test_ratings_per_worker_csv.csv │ │ │ │ ├── test_reason_html.txt │ │ │ │ └── test_significance_csv.csv │ │ │ ├── test_fast_acute_logs.py │ │ │ ├── test_fast_acute_logs │ │ │ │ ├── test_agent_state.yml │ │ │ │ ├── test_all_convo_pairs_txt.txt │ │ │ │ ├── test_all_html.txt │ │ │ │ ├── test_full_csv.csv │ │ │ │ ├── test_grid_csv.csv │ │ │ │ ├── test_grid_winners_as_rows_csv.csv │ │ │ │ ├── test_ratings_per_worker_csv.csv │ │ │ │ ├── test_reason_html.txt │ │ │ │ └── test_significance_csv.csv │ │ │ ├── test_fast_acute_self_chat.py │ │ │ └── test_fast_acute_self_chat │ │ │ │ ├── test_agent_state.yml │ │ │ │ ├── test_all_convo_pairs_txt.txt │ │ │ │ ├── test_all_html.txt │ │ │ │ ├── test_full_csv.csv │ │ │ │ ├── test_grid_csv.csv │ │ │ │ ├── test_grid_winners_as_rows_csv.csv │ │ │ │ ├── test_ratings_per_worker_csv.csv │ │ │ │ ├── test_reason_html.txt │ │ │ │ └── test_significance_csv.csv │ │ ├── model_chat │ │ │ ├── analysis_samples │ │ │ │ └── 2020_12_29 │ │ │ │ │ ├── 20201229_173200_1_live.json │ │ │ │ │ ├── 20201229_173200_2_live.json │ │ │ │ │ └── 20201229_173200_3_live.json │ │ │ ├── expected_states │ │ │ │ ├── final_chat_data.json │ │ │ │ ├── final_chat_data__image_chat.json │ │ │ │ ├── state.json │ │ │ │ └── state__image_chat.json │ │ │ ├── test_image_stack.py │ │ │ ├── test_image_stack │ │ │ │ ├── sample_image.jpg │ │ │ │ └── test_fill_stack.txt │ │ │ ├── test_model_chat.py │ │ │ ├── test_model_chat_analysis.py │ │ │ ├── test_model_chat_analysis │ │ │ │ ├── results.txt │ │ │ │ ├── test_stdout.txt │ │ │ │ └── worker_results.txt │ │ │ └── test_model_image_chat.py │ │ ├── qa_data_collection │ │ │ ├── expected_states │ │ │ │ └── state.json │ │ │ └── test_qa_data_collection.py │ │ ├── test_chat_demo.py │ │ └── turn_annotations_static │ │ │ ├── analysis_samples │ │ │ ├── 1 │ │ │ │ ├── 1 │ │ │ │ │ └── agent_data.json │ │ │ │ ├── 2 │ │ │ │ │ └── agent_data.json │ │ │ │ └── 3 │ │ │ │ │ └── agent_data.json │ │ │ ├── 2 │ │ │ │ └── 5 │ │ │ │ │ └── agent_data.json │ │ │ └── onboarding_in_flight.jsonl │ │ │ ├── task_config │ │ │ ├── sample_conversations.jsonl │ │ │ └── sample_conversations_annotation_file.jsonl │ │ │ ├── task_data │ │ │ ├── in_flight_qa.json │ │ │ ├── in_flight_qa_annotation_file.json │ │ │ └── no_in_flight_qa.json │ │ │ ├── test_turn_annotations_static.py │ │ │ ├── test_turn_annotations_static │ │ │ ├── test_in_flight_qa.yml │ │ │ ├── test_in_flight_qa_annotation_file.yml │ │ │ └── test_no_in_flight_qa.yml │ │ │ ├── test_turn_annotations_static_analysis.py │ │ │ └── test_turn_annotations_static_analysis │ │ │ ├── expected_results.csv │ │ │ └── test_stdout.txt │ └── test_acceptability.py ├── nightly │ ├── cpu │ │ ├── test_alice.py │ │ └── test_urls.py │ └── gpu │ │ ├── anti_scaling │ │ ├── test_anti_scaling.py │ │ └── test_anti_scaling │ │ │ ├── bart_narrow.yml │ │ │ ├── bart_wide.yml │ │ │ ├── transformer_narrow.yml │ │ │ └── transformer_wide.yml │ │ ├── test_bart.py │ │ ├── test_bert.py │ │ ├── test_blended_skill_talk_gpu.py │ │ ├── test_dialogpt.py │ │ ├── test_dodeca.py │ │ ├── test_gpt2.py │ │ ├── test_safety_modules.py │ │ ├── test_style_gen.py │ │ ├── test_t5.py │ │ ├── test_torchscript.py │ │ ├── test_transresnet.py │ │ ├── test_transresnet_multimodal.py │ │ ├── test_tutorial_generator.py │ │ ├── test_unlikelihood.py │ │ └── test_wizard.py ├── tasks │ ├── convai2 │ │ └── test_convai2_worlds.py │ ├── convai_chitchat │ │ ├── TeacherTest.py │ │ └── dialogs.fixture.json │ ├── self_chat │ │ └── test_worlds.py │ ├── test_blended_skill_talk.py │ ├── test_empathetic_dialogues.py │ ├── test_genderation_bias.py │ ├── test_igc.py │ ├── test_light.py │ ├── test_style_gen_teachers.py │ └── test_wizard_of_wikipedia.py ├── test_apex.py ├── test_build_data.py ├── test_chat_service.py ├── test_chunkteacher.py ├── test_code.py ├── test_conversations.py ├── test_convo_render.py ├── test_dict.py ├── test_display_data.py ├── test_distributed.py ├── test_dynamicbatching.py ├── test_eval_model.py ├── test_examples.py ├── test_hred.py ├── test_image_featurizers.py ├── test_image_seq2seq.py ├── test_import.py ├── test_interactive.py ├── test_ir_baseline.py ├── test_loader.py ├── test_lr_schedulers.py ├── test_mem_efficient_fp16.py ├── test_memnn.py ├── test_messages.py ├── test_metrics.py ├── test_miscscripts.py ├── test_multigpu.py ├── test_multiworld.py ├── test_mutators.py ├── test_opt.py ├── test_other_scripts.py ├── test_params.py ├── test_script.py ├── test_self_chat.py ├── test_seq2seq.py ├── test_starspace.py ├── test_ta_inheritence.py ├── test_teachers.py ├── test_tfidf_retriever.py ├── test_tga.py ├── test_torch_agent.py ├── test_tra.py ├── test_train_model.py ├── test_transformers.py ├── test_unigram.py ├── test_utils.py ├── test_utils_torch.py ├── test_wrapper.py └── test_zootasks.py └── website ├── Makefile ├── README.md ├── generate.py ├── postprocess_docs.py ├── static ├── css │ ├── home-theme.css │ └── parlai.css └── img │ ├── examples.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── icon.png │ ├── parlai.png │ └── tutorials.svg └── templates ├── about.html ├── base.html ├── error.html ├── home.html └── project.html /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/agent-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/ISSUE_TEMPLATE/agent-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/mturk-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/ISSUE_TEMPLATE/mturk-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/git-secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/scripts/git-secrets -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/README.md -------------------------------------------------------------------------------- /autoformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/autoformat.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/codecov.yml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/source/_static/img/aod-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/aod-ex.png -------------------------------------------------------------------------------- /docs/source/_static/img/datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/datasets.png -------------------------------------------------------------------------------- /docs/source/_static/img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/main.png -------------------------------------------------------------------------------- /docs/source/_static/img/mturk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/mturk.png -------------------------------------------------------------------------------- /docs/source/_static/img/parlai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/parlai.png -------------------------------------------------------------------------------- /docs/source/_static/img/tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/tasks.png -------------------------------------------------------------------------------- /docs/source/_static/img/tasks2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/_static/img/tasks2.png -------------------------------------------------------------------------------- /docs/source/agents_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/agents_list.md -------------------------------------------------------------------------------- /docs/source/chat_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/chat_service.md -------------------------------------------------------------------------------- /docs/source/cli_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/cli_advanced.md -------------------------------------------------------------------------------- /docs/source/cli_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/cli_custom.md -------------------------------------------------------------------------------- /docs/source/cli_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/cli_usage.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core.md -------------------------------------------------------------------------------- /docs/source/core/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/agents.md -------------------------------------------------------------------------------- /docs/source/core/build_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/build_data.md -------------------------------------------------------------------------------- /docs/source/core/dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/dict.md -------------------------------------------------------------------------------- /docs/source/core/loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/loader.md -------------------------------------------------------------------------------- /docs/source/core/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/messages.md -------------------------------------------------------------------------------- /docs/source/core/metrics_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/metrics_api.md -------------------------------------------------------------------------------- /docs/source/core/mutators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/mutators.md -------------------------------------------------------------------------------- /docs/source/core/params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/params.md -------------------------------------------------------------------------------- /docs/source/core/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/script.md -------------------------------------------------------------------------------- /docs/source/core/teachers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/teachers.md -------------------------------------------------------------------------------- /docs/source/core/torch_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/torch_agent.md -------------------------------------------------------------------------------- /docs/source/core/worlds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/core/worlds.md -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/generate_agent_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_agent_list.py -------------------------------------------------------------------------------- /docs/source/generate_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_cli.py -------------------------------------------------------------------------------- /docs/source/generate_metric_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_metric_list.py -------------------------------------------------------------------------------- /docs/source/generate_mutator_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_mutator_list.py -------------------------------------------------------------------------------- /docs/source/generate_task_READMEs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_task_READMEs.py -------------------------------------------------------------------------------- /docs/source/generate_task_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_task_list.py -------------------------------------------------------------------------------- /docs/source/generate_zoo_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/generate_zoo_list.py -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/mutators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/mutators.md -------------------------------------------------------------------------------- /docs/source/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tasks.md -------------------------------------------------------------------------------- /docs/source/tutorial_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_basic.md -------------------------------------------------------------------------------- /docs/source/tutorial_chat_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_chat_service.md -------------------------------------------------------------------------------- /docs/source/tutorial_crowdsourcing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_crowdsourcing.md -------------------------------------------------------------------------------- /docs/source/tutorial_fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_fast.md -------------------------------------------------------------------------------- /docs/source/tutorial_metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_metrics.md -------------------------------------------------------------------------------- /docs/source/tutorial_mutators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_mutators.md -------------------------------------------------------------------------------- /docs/source/tutorial_quick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_quick.md -------------------------------------------------------------------------------- /docs/source/tutorial_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_task.md -------------------------------------------------------------------------------- /docs/source/tutorial_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_tests.md -------------------------------------------------------------------------------- /docs/source/tutorial_tipsntricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_tipsntricks.md -------------------------------------------------------------------------------- /docs/source/tutorial_worlds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/tutorial_worlds.md -------------------------------------------------------------------------------- /docs/source/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/utils.md -------------------------------------------------------------------------------- /docs/source/zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/docs/source/zoo.md -------------------------------------------------------------------------------- /example_parlai_internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/example_parlai_internal/README.md -------------------------------------------------------------------------------- /example_parlai_internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_parlai_internal/zoo/.internal_zoo_path: -------------------------------------------------------------------------------- 1 | /path/to/your/models 2 | -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/mypy.ini -------------------------------------------------------------------------------- /parlai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/README.md -------------------------------------------------------------------------------- /parlai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/__init__.py -------------------------------------------------------------------------------- /parlai/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/__main__.py -------------------------------------------------------------------------------- /parlai/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/README.md -------------------------------------------------------------------------------- /parlai/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/__init__.py -------------------------------------------------------------------------------- /parlai/agents/alice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/alice/README.md -------------------------------------------------------------------------------- /parlai/agents/alice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/alice/__init__.py -------------------------------------------------------------------------------- /parlai/agents/alice/alice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/alice/alice.py -------------------------------------------------------------------------------- /parlai/agents/bart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/bart/README.md -------------------------------------------------------------------------------- /parlai/agents/bart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/bart/__init__.py -------------------------------------------------------------------------------- /parlai/agents/bart/bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/bart/bart.py -------------------------------------------------------------------------------- /parlai/agents/bart/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/bart/modules.py -------------------------------------------------------------------------------- /parlai/agents/bert_ranker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/bert_ranker/README.md -------------------------------------------------------------------------------- /parlai/agents/bert_ranker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/agents/bert_ranker/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/bert_ranker/helpers.py -------------------------------------------------------------------------------- /parlai/agents/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/examples/README.md -------------------------------------------------------------------------------- /parlai/agents/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/examples/__init__.py -------------------------------------------------------------------------------- /parlai/agents/examples/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/examples/seq2seq.py -------------------------------------------------------------------------------- /parlai/agents/examples/tra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/examples/tra.py -------------------------------------------------------------------------------- /parlai/agents/fixed_response/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/fixed_response/README.md -------------------------------------------------------------------------------- /parlai/agents/hred/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hred/README.md -------------------------------------------------------------------------------- /parlai/agents/hred/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hred/__init__.py -------------------------------------------------------------------------------- /parlai/agents/hred/hred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hred/hred.py -------------------------------------------------------------------------------- /parlai/agents/hred/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hred/modules.py -------------------------------------------------------------------------------- /parlai/agents/hugging_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hugging_face/README.md -------------------------------------------------------------------------------- /parlai/agents/hugging_face/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hugging_face/__init__.py -------------------------------------------------------------------------------- /parlai/agents/hugging_face/dialogpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hugging_face/dialogpt.py -------------------------------------------------------------------------------- /parlai/agents/hugging_face/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hugging_face/dict.py -------------------------------------------------------------------------------- /parlai/agents/hugging_face/gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hugging_face/gpt2.py -------------------------------------------------------------------------------- /parlai/agents/hugging_face/t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/hugging_face/t5.py -------------------------------------------------------------------------------- /parlai/agents/image_seq2seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/image_seq2seq/README.md -------------------------------------------------------------------------------- /parlai/agents/image_seq2seq/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/image_seq2seq/modules.py -------------------------------------------------------------------------------- /parlai/agents/ir_baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/ir_baseline/README.md -------------------------------------------------------------------------------- /parlai/agents/ir_baseline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/ir_baseline/__init__.py -------------------------------------------------------------------------------- /parlai/agents/local_human/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/local_human/README.md -------------------------------------------------------------------------------- /parlai/agents/local_human/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/local_human/__init__.py -------------------------------------------------------------------------------- /parlai/agents/memnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/memnn/README.md -------------------------------------------------------------------------------- /parlai/agents/memnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/memnn/__init__.py -------------------------------------------------------------------------------- /parlai/agents/memnn/memnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/memnn/memnn.py -------------------------------------------------------------------------------- /parlai/agents/memnn/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/memnn/modules.py -------------------------------------------------------------------------------- /parlai/agents/repeat_label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/repeat_label/README.md -------------------------------------------------------------------------------- /parlai/agents/repeat_label/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/repeat_label/__init__.py -------------------------------------------------------------------------------- /parlai/agents/repeat_query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/repeat_query/README.md -------------------------------------------------------------------------------- /parlai/agents/repeat_query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/repeat_query/__init__.py -------------------------------------------------------------------------------- /parlai/agents/seq2seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/seq2seq/README.md -------------------------------------------------------------------------------- /parlai/agents/seq2seq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/seq2seq/__init__.py -------------------------------------------------------------------------------- /parlai/agents/seq2seq/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/seq2seq/modules.py -------------------------------------------------------------------------------- /parlai/agents/seq2seq/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/seq2seq/seq2seq.py -------------------------------------------------------------------------------- /parlai/agents/starspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/starspace/README.md -------------------------------------------------------------------------------- /parlai/agents/starspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/starspace/__init__.py -------------------------------------------------------------------------------- /parlai/agents/starspace/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/starspace/modules.py -------------------------------------------------------------------------------- /parlai/agents/starspace/starspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/starspace/starspace.py -------------------------------------------------------------------------------- /parlai/agents/test_agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/test_agents/README.md -------------------------------------------------------------------------------- /parlai/agents/test_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/agents/test_agents/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/test_agents/counter.py -------------------------------------------------------------------------------- /parlai/agents/test_agents/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/test_agents/null.py -------------------------------------------------------------------------------- /parlai/agents/test_agents/unigram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/test_agents/unigram.py -------------------------------------------------------------------------------- /parlai/agents/tfidf_retriever/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/tfidf_retriever/utils.py -------------------------------------------------------------------------------- /parlai/agents/transformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/transformer/README.md -------------------------------------------------------------------------------- /parlai/agents/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/transformer/__init__.py -------------------------------------------------------------------------------- /parlai/agents/transformer/biencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/transformer/biencoder.py -------------------------------------------------------------------------------- /parlai/agents/transformer/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/transformer/generator.py -------------------------------------------------------------------------------- /parlai/agents/transformer/ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/transformer/ranker.py -------------------------------------------------------------------------------- /parlai/agents/unigram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/unigram/README.md -------------------------------------------------------------------------------- /parlai/agents/unigram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/unigram/__init__.py -------------------------------------------------------------------------------- /parlai/agents/unigram/unigram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/agents/unigram/unigram.py -------------------------------------------------------------------------------- /parlai/chat_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/README.md -------------------------------------------------------------------------------- /parlai/chat_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/__init__.py -------------------------------------------------------------------------------- /parlai/chat_service/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/chat_service/core/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/core/agents.py -------------------------------------------------------------------------------- /parlai/chat_service/core/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/core/socket.py -------------------------------------------------------------------------------- /parlai/chat_service/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/chat_service/services/websocket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/chat_service/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/tasks/__init__.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/__init__.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/config.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/image.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/logging.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/misc.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/server.py -------------------------------------------------------------------------------- /parlai/chat_service/utils/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/chat_service/utils/timeout.py -------------------------------------------------------------------------------- /parlai/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/README.md -------------------------------------------------------------------------------- /parlai/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/__init__.py -------------------------------------------------------------------------------- /parlai/core/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/agents.py -------------------------------------------------------------------------------- /parlai/core/build_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/build_data.py -------------------------------------------------------------------------------- /parlai/core/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/dict.py -------------------------------------------------------------------------------- /parlai/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/exceptions.py -------------------------------------------------------------------------------- /parlai/core/image_featurizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/image_featurizers.py -------------------------------------------------------------------------------- /parlai/core/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/loader.py -------------------------------------------------------------------------------- /parlai/core/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/logs.py -------------------------------------------------------------------------------- /parlai/core/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/message.py -------------------------------------------------------------------------------- /parlai/core/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/metrics.py -------------------------------------------------------------------------------- /parlai/core/mutators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/mutators.py -------------------------------------------------------------------------------- /parlai/core/opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/opt.py -------------------------------------------------------------------------------- /parlai/core/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/params.py -------------------------------------------------------------------------------- /parlai/core/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/script.py -------------------------------------------------------------------------------- /parlai/core/teachers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/teachers.py -------------------------------------------------------------------------------- /parlai/core/torch_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/torch_agent.py -------------------------------------------------------------------------------- /parlai/core/torch_classifier_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/torch_classifier_agent.py -------------------------------------------------------------------------------- /parlai/core/torch_generator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/torch_generator_agent.py -------------------------------------------------------------------------------- /parlai/core/torch_image_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/torch_image_agent.py -------------------------------------------------------------------------------- /parlai/core/torch_ranker_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/torch_ranker_agent.py -------------------------------------------------------------------------------- /parlai/core/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/core/worlds.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/README.md -------------------------------------------------------------------------------- /parlai/crowdsourcing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/__init__.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/tasks/__init__.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/README.md -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/__init__.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/analysis.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/frontend.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/mturk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/mturk.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/tests.py -------------------------------------------------------------------------------- /parlai/crowdsourcing/utils/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/crowdsourcing/utils/worlds.py -------------------------------------------------------------------------------- /parlai/mturk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mturk/README.md -------------------------------------------------------------------------------- /parlai/mutators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/__init__.py -------------------------------------------------------------------------------- /parlai/mutators/context_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/context_shuffle.py -------------------------------------------------------------------------------- /parlai/mutators/episode_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/episode_reverse.py -------------------------------------------------------------------------------- /parlai/mutators/episode_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/episode_shuffle.py -------------------------------------------------------------------------------- /parlai/mutators/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/flatten.py -------------------------------------------------------------------------------- /parlai/mutators/last_turn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/last_turn.py -------------------------------------------------------------------------------- /parlai/mutators/word_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/word_reverse.py -------------------------------------------------------------------------------- /parlai/mutators/word_shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/mutators/word_shuffle.py -------------------------------------------------------------------------------- /parlai/nn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/nn/__init__.py -------------------------------------------------------------------------------- /parlai/nn/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/nn/lr_scheduler.py -------------------------------------------------------------------------------- /parlai/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/__init__.py -------------------------------------------------------------------------------- /parlai/scripts/build_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/build_candidates.py -------------------------------------------------------------------------------- /parlai/scripts/build_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/build_dict.py -------------------------------------------------------------------------------- /parlai/scripts/compare_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/compare_opts.py -------------------------------------------------------------------------------- /parlai/scripts/convo_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/convo_render.py -------------------------------------------------------------------------------- /parlai/scripts/data_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/data_stats.py -------------------------------------------------------------------------------- /parlai/scripts/display_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/display_data.py -------------------------------------------------------------------------------- /parlai/scripts/display_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/display_model.py -------------------------------------------------------------------------------- /parlai/scripts/distributed_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/distributed_eval.py -------------------------------------------------------------------------------- /parlai/scripts/distributed_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/distributed_train.py -------------------------------------------------------------------------------- /parlai/scripts/eval_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/eval_model.py -------------------------------------------------------------------------------- /parlai/scripts/eval_wordstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/eval_wordstat.py -------------------------------------------------------------------------------- /parlai/scripts/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/interactive.py -------------------------------------------------------------------------------- /parlai/scripts/interactive_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/interactive_web.py -------------------------------------------------------------------------------- /parlai/scripts/multiprocessing_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/multiprocessing_eval.py -------------------------------------------------------------------------------- /parlai/scripts/party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/party.py -------------------------------------------------------------------------------- /parlai/scripts/profile_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/profile_interactive.py -------------------------------------------------------------------------------- /parlai/scripts/profile_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/profile_train.py -------------------------------------------------------------------------------- /parlai/scripts/safe_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/safe_interactive.py -------------------------------------------------------------------------------- /parlai/scripts/self_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/self_chat.py -------------------------------------------------------------------------------- /parlai/scripts/token_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/token_stats.py -------------------------------------------------------------------------------- /parlai/scripts/torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/torchscript.py -------------------------------------------------------------------------------- /parlai/scripts/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/train_model.py -------------------------------------------------------------------------------- /parlai/scripts/vacuum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/vacuum.py -------------------------------------------------------------------------------- /parlai/scripts/verify_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/scripts/verify_data.py -------------------------------------------------------------------------------- /parlai/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/README.md -------------------------------------------------------------------------------- /parlai/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/airdialogue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/airdialogue/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/airdialogue/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/airdialogue/agents.py -------------------------------------------------------------------------------- /parlai/tasks/airdialogue/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/airdialogue/build.py -------------------------------------------------------------------------------- /parlai/tasks/airdialogue/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/airdialogue/test.py -------------------------------------------------------------------------------- /parlai/tasks/amazon_qa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/amazon_qa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/amazon_qa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/amazon_qa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/amazon_qa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/amazon_qa/build.py -------------------------------------------------------------------------------- /parlai/tasks/anli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/anli/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/agents.py -------------------------------------------------------------------------------- /parlai/tasks/anli/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/build.py -------------------------------------------------------------------------------- /parlai/tasks/anli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/test.py -------------------------------------------------------------------------------- /parlai/tasks/anli/test/anli_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/test/anli_test.yml -------------------------------------------------------------------------------- /parlai/tasks/anli/test/anli_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/test/anli_train.yml -------------------------------------------------------------------------------- /parlai/tasks/anli/test/anli_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/anli/test/anli_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/aqua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/README.md -------------------------------------------------------------------------------- /parlai/tasks/aqua/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/aqua/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/agents.py -------------------------------------------------------------------------------- /parlai/tasks/aqua/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/build.py -------------------------------------------------------------------------------- /parlai/tasks/aqua/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/test.py -------------------------------------------------------------------------------- /parlai/tasks/aqua/test/aqua_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/test/aqua_test.yml -------------------------------------------------------------------------------- /parlai/tasks/aqua/test/aqua_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/test/aqua_train.yml -------------------------------------------------------------------------------- /parlai/tasks/aqua/test/aqua_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/aqua/test/aqua_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/babi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/README.md -------------------------------------------------------------------------------- /parlai/tasks/babi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/babi/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/agents.py -------------------------------------------------------------------------------- /parlai/tasks/babi/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/build.py -------------------------------------------------------------------------------- /parlai/tasks/babi/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/test.py -------------------------------------------------------------------------------- /parlai/tasks/babi/test/babi_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/test/babi_test.yml -------------------------------------------------------------------------------- /parlai/tasks/babi/test/babi_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/test/babi_train.yml -------------------------------------------------------------------------------- /parlai/tasks/babi/test/babi_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/babi/test/babi_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/booktest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/booktest/README.md -------------------------------------------------------------------------------- /parlai/tasks/booktest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/booktest/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/booktest/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/booktest/agents.py -------------------------------------------------------------------------------- /parlai/tasks/booktest/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/booktest/build.py -------------------------------------------------------------------------------- /parlai/tasks/c3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/c3/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/agents.py -------------------------------------------------------------------------------- /parlai/tasks/c3/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/build.py -------------------------------------------------------------------------------- /parlai/tasks/c3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test.py -------------------------------------------------------------------------------- /parlai/tasks/c3/test/c3_c3_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test/c3_c3_test.yml -------------------------------------------------------------------------------- /parlai/tasks/c3/test/c3_c3_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test/c3_c3_train.yml -------------------------------------------------------------------------------- /parlai/tasks/c3/test/c3_c3_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test/c3_c3_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/c3/test/c3_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test/c3_test.yml -------------------------------------------------------------------------------- /parlai/tasks/c3/test/c3_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test/c3_train.yml -------------------------------------------------------------------------------- /parlai/tasks/c3/test/c3_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/c3/test/c3_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/cbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/README.md -------------------------------------------------------------------------------- /parlai/tasks/cbt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/cbt/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/agents.py -------------------------------------------------------------------------------- /parlai/tasks/cbt/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/build.py -------------------------------------------------------------------------------- /parlai/tasks/cbt/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/test.py -------------------------------------------------------------------------------- /parlai/tasks/cbt/test/cbt_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/test/cbt_test.yml -------------------------------------------------------------------------------- /parlai/tasks/cbt/test/cbt_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/test/cbt_train.yml -------------------------------------------------------------------------------- /parlai/tasks/cbt/test/cbt_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cbt/test/cbt_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/ccpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ccpe/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/ccpe/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ccpe/agents.py -------------------------------------------------------------------------------- /parlai/tasks/ccpe/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ccpe/build.py -------------------------------------------------------------------------------- /parlai/tasks/clevr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/clevr/README.md -------------------------------------------------------------------------------- /parlai/tasks/clevr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/clevr/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/clevr/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/clevr/agents.py -------------------------------------------------------------------------------- /parlai/tasks/clevr/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/clevr/build.py -------------------------------------------------------------------------------- /parlai/tasks/cnn_dm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cnn_dm/README.md -------------------------------------------------------------------------------- /parlai/tasks/cnn_dm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/cnn_dm/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cnn_dm/agents.py -------------------------------------------------------------------------------- /parlai/tasks/cnn_dm/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cnn_dm/build.py -------------------------------------------------------------------------------- /parlai/tasks/coco_caption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coco_caption/README.md -------------------------------------------------------------------------------- /parlai/tasks/coco_caption/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coco_caption/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/coco_caption/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coco_caption/agents.py -------------------------------------------------------------------------------- /parlai/tasks/commonsenseqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/commonsenseqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/commonsenseqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/commonsenseqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/commonsenseqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/commonsenseqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/convai2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai2/README.md -------------------------------------------------------------------------------- /parlai/tasks/convai2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai2/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/convai2/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai2/agents.py -------------------------------------------------------------------------------- /parlai/tasks/convai2/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai2/build.py -------------------------------------------------------------------------------- /parlai/tasks/convai2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai2/test.py -------------------------------------------------------------------------------- /parlai/tasks/convai2/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai2/worlds.py -------------------------------------------------------------------------------- /parlai/tasks/convai_chitchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai_chitchat/README.md -------------------------------------------------------------------------------- /parlai/tasks/convai_chitchat/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai_chitchat/agents.py -------------------------------------------------------------------------------- /parlai/tasks/convai_chitchat/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/convai_chitchat/build.py -------------------------------------------------------------------------------- /parlai/tasks/copa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/copa/README.md -------------------------------------------------------------------------------- /parlai/tasks/copa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/copa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/copa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/copa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/copa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/copa/build.py -------------------------------------------------------------------------------- /parlai/tasks/coqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coqa/README.md -------------------------------------------------------------------------------- /parlai/tasks/coqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/coqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/coqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/coqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/cornell_movie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cornell_movie/README.md -------------------------------------------------------------------------------- /parlai/tasks/cornell_movie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cornell_movie/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/cornell_movie/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cornell_movie/agents.py -------------------------------------------------------------------------------- /parlai/tasks/cornell_movie/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cornell_movie/build.py -------------------------------------------------------------------------------- /parlai/tasks/cornell_movie/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/cornell_movie/test.py -------------------------------------------------------------------------------- /parlai/tasks/dailydialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dailydialog/README.md -------------------------------------------------------------------------------- /parlai/tasks/dailydialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dailydialog/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dailydialog/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dailydialog/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dailydialog/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dailydialog/build.py -------------------------------------------------------------------------------- /parlai/tasks/dailydialog/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dailydialog/parse.py -------------------------------------------------------------------------------- /parlai/tasks/dailydialog/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dailydialog/test.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_babi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_babi/README.md -------------------------------------------------------------------------------- /parlai/tasks/dbll_babi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_babi/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_babi/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_babi/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_babi/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_babi/build.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_babi/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_babi/test.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_movie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_movie/README.md -------------------------------------------------------------------------------- /parlai/tasks/dbll_movie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_movie/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_movie/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_movie/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_movie/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_movie/build.py -------------------------------------------------------------------------------- /parlai/tasks/dbll_movie/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dbll_movie/test.py -------------------------------------------------------------------------------- /parlai/tasks/dealnodeal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dealnodeal/README.md -------------------------------------------------------------------------------- /parlai/tasks/dealnodeal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dealnodeal/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dealnodeal/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dealnodeal/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dealnodeal/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dealnodeal/build.py -------------------------------------------------------------------------------- /parlai/tasks/dealnodeal/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dealnodeal/test.py -------------------------------------------------------------------------------- /parlai/tasks/decanlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/decanlp/README.md -------------------------------------------------------------------------------- /parlai/tasks/decanlp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/decanlp/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/decanlp/agents.py -------------------------------------------------------------------------------- /parlai/tasks/decode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/decode/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/decode/agents.py -------------------------------------------------------------------------------- /parlai/tasks/decode/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/decode/build.py -------------------------------------------------------------------------------- /parlai/tasks/decode/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/decode/test.py -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi/README.md -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi/build.py -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi/test.py -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi_plus/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi_plus/build.py -------------------------------------------------------------------------------- /parlai/tasks/dialog_babi_plus/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialog_babi_plus/test.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_nli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_nli/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_nli/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_nli/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_nli/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_nli/build.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_nli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_nli/test.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_qe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_qe/README.md -------------------------------------------------------------------------------- /parlai/tasks/dialogue_qe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_qe/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_qe/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_qe/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_qe/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_qe/build.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_qe/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_qe/test.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_safety/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_safety/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dialogue_safety/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dialogue_safety/build.py -------------------------------------------------------------------------------- /parlai/tasks/dream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dream/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dream/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dream/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dream/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dream/build.py -------------------------------------------------------------------------------- /parlai/tasks/dream/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dream/test.py -------------------------------------------------------------------------------- /parlai/tasks/dream/test/dream_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dream/test/dream_test.yml -------------------------------------------------------------------------------- /parlai/tasks/dstc7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dstc7/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/dstc7/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dstc7/agents.py -------------------------------------------------------------------------------- /parlai/tasks/dstc7/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dstc7/build.py -------------------------------------------------------------------------------- /parlai/tasks/dstc7/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dstc7/test.py -------------------------------------------------------------------------------- /parlai/tasks/dstc7/test/dstc7_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/dstc7/test/dstc7_test.yml -------------------------------------------------------------------------------- /parlai/tasks/eli5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/eli5/README.md -------------------------------------------------------------------------------- /parlai/tasks/eli5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/eli5/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/eli5/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/eli5/agents.py -------------------------------------------------------------------------------- /parlai/tasks/eli5/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/eli5/build.py -------------------------------------------------------------------------------- /parlai/tasks/flickr30k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/flickr30k/README.md -------------------------------------------------------------------------------- /parlai/tasks/flickr30k/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/flickr30k/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/flickr30k/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/flickr30k/agents.py -------------------------------------------------------------------------------- /parlai/tasks/flickr30k/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/flickr30k/build.py -------------------------------------------------------------------------------- /parlai/tasks/fromfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fromfile/README.md -------------------------------------------------------------------------------- /parlai/tasks/fromfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fromfile/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/fromfile/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fromfile/agents.py -------------------------------------------------------------------------------- /parlai/tasks/funpedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/funpedia/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/funpedia/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/funpedia/agents.py -------------------------------------------------------------------------------- /parlai/tasks/funpedia/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/funpedia/build.py -------------------------------------------------------------------------------- /parlai/tasks/funpedia/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/funpedia/test.py -------------------------------------------------------------------------------- /parlai/tasks/fvqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fvqa/README.md -------------------------------------------------------------------------------- /parlai/tasks/fvqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fvqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/fvqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fvqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/fvqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/fvqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/genderation_bias/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/genderation_bias/build.py -------------------------------------------------------------------------------- /parlai/tasks/genderation_bias/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/genderation_bias/utils.py -------------------------------------------------------------------------------- /parlai/tasks/google_sgd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/google_sgd/README.md -------------------------------------------------------------------------------- /parlai/tasks/google_sgd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/google_sgd/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/google_sgd/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/google_sgd/agents.py -------------------------------------------------------------------------------- /parlai/tasks/google_sgd/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/google_sgd/build.py -------------------------------------------------------------------------------- /parlai/tasks/google_sgd/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/google_sgd/test.py -------------------------------------------------------------------------------- /parlai/tasks/holl_e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/holl_e/README.md -------------------------------------------------------------------------------- /parlai/tasks/holl_e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/holl_e/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/holl_e/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/holl_e/agents.py -------------------------------------------------------------------------------- /parlai/tasks/holl_e/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/holl_e/build.py -------------------------------------------------------------------------------- /parlai/tasks/holl_e/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/holl_e/test.py -------------------------------------------------------------------------------- /parlai/tasks/hotpotqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/hotpotqa/README.md -------------------------------------------------------------------------------- /parlai/tasks/hotpotqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/hotpotqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/hotpotqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/hotpotqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/hotpotqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/hotpotqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/hotpotqa/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/hotpotqa/test.py -------------------------------------------------------------------------------- /parlai/tasks/igc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/igc/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/igc/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/igc/agents.py -------------------------------------------------------------------------------- /parlai/tasks/image_chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/image_chat/README.md -------------------------------------------------------------------------------- /parlai/tasks/image_chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/image_chat/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/image_chat/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/image_chat/agents.py -------------------------------------------------------------------------------- /parlai/tasks/image_chat/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/image_chat/build.py -------------------------------------------------------------------------------- /parlai/tasks/insuranceqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/insuranceqa/README.md -------------------------------------------------------------------------------- /parlai/tasks/insuranceqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/insuranceqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/insuranceqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/insuranceqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/insuranceqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/insuranceqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/insuranceqa/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/insuranceqa/test.py -------------------------------------------------------------------------------- /parlai/tasks/interactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/interactive/README.md -------------------------------------------------------------------------------- /parlai/tasks/interactive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/interactive/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/interactive/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/interactive/agents.py -------------------------------------------------------------------------------- /parlai/tasks/interactive/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/interactive/worlds.py -------------------------------------------------------------------------------- /parlai/tasks/iwslt14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/iwslt14/README.md -------------------------------------------------------------------------------- /parlai/tasks/iwslt14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/iwslt14/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/iwslt14/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/iwslt14/agents.py -------------------------------------------------------------------------------- /parlai/tasks/iwslt14/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/iwslt14/build.py -------------------------------------------------------------------------------- /parlai/tasks/iwslt14/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/iwslt14/test.py -------------------------------------------------------------------------------- /parlai/tasks/jsonfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/jsonfile/README.md -------------------------------------------------------------------------------- /parlai/tasks/jsonfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/jsonfile/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/jsonfile/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/jsonfile/agents.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/README.md -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/agents.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/build.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/builder.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/test.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog/worlds.py -------------------------------------------------------------------------------- /parlai/tasks/light_dialog_wild/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/light_dialog_wild/test.py -------------------------------------------------------------------------------- /parlai/tasks/mctest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mctest/README.md -------------------------------------------------------------------------------- /parlai/tasks/mctest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mctest/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/mctest/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mctest/agents.py -------------------------------------------------------------------------------- /parlai/tasks/mctest/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mctest/build.py -------------------------------------------------------------------------------- /parlai/tasks/mctest/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mctest/test.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/md_gender/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/agents.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/build.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/convai2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/convai2.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/funpedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/funpedia.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/image_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/image_chat.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/light.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/new_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/new_data.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/utils.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/wikipedia.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/wizard.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/worlds.py -------------------------------------------------------------------------------- /parlai/tasks/md_gender/yelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/md_gender/yelp.py -------------------------------------------------------------------------------- /parlai/tasks/mnist_qa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mnist_qa/README.md -------------------------------------------------------------------------------- /parlai/tasks/mnist_qa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mnist_qa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/mnist_qa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mnist_qa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/mnist_qa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mnist_qa/build.py -------------------------------------------------------------------------------- /parlai/tasks/mnist_qa/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mnist_qa/test.py -------------------------------------------------------------------------------- /parlai/tasks/moviedialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/moviedialog/README.md -------------------------------------------------------------------------------- /parlai/tasks/moviedialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/moviedialog/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/moviedialog/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/moviedialog/agents.py -------------------------------------------------------------------------------- /parlai/tasks/moviedialog/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/moviedialog/build.py -------------------------------------------------------------------------------- /parlai/tasks/ms_marco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ms_marco/README.md -------------------------------------------------------------------------------- /parlai/tasks/ms_marco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ms_marco/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/ms_marco/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ms_marco/agents.py -------------------------------------------------------------------------------- /parlai/tasks/ms_marco/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ms_marco/build.py -------------------------------------------------------------------------------- /parlai/tasks/mturkwikimovies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mturkwikimovies/README.md -------------------------------------------------------------------------------- /parlai/tasks/mturkwikimovies/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mturkwikimovies/agents.py -------------------------------------------------------------------------------- /parlai/tasks/mturkwikimovies/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mturkwikimovies/build.py -------------------------------------------------------------------------------- /parlai/tasks/multinli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multinli/README.md -------------------------------------------------------------------------------- /parlai/tasks/multinli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multinli/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/multinli/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multinli/agents.py -------------------------------------------------------------------------------- /parlai/tasks/multinli/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multinli/build.py -------------------------------------------------------------------------------- /parlai/tasks/multinli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multinli/test.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v20/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v20/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v20/agents.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v20/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v20/build.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v20/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v20/test.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v21/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v21/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v21/agents.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v21/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v21/build.py -------------------------------------------------------------------------------- /parlai/tasks/multiwoz_v21/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/multiwoz_v21/test.py -------------------------------------------------------------------------------- /parlai/tasks/mutualfriends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mutualfriends/README.md -------------------------------------------------------------------------------- /parlai/tasks/mutualfriends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mutualfriends/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/mutualfriends/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mutualfriends/agents.py -------------------------------------------------------------------------------- /parlai/tasks/mutualfriends/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mutualfriends/build.py -------------------------------------------------------------------------------- /parlai/tasks/mwsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mwsc/README.md -------------------------------------------------------------------------------- /parlai/tasks/mwsc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/mwsc/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mwsc/agents.py -------------------------------------------------------------------------------- /parlai/tasks/mwsc/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/mwsc/build.py -------------------------------------------------------------------------------- /parlai/tasks/narrative_qa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/narrative_qa/README.md -------------------------------------------------------------------------------- /parlai/tasks/narrative_qa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/narrative_qa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/narrative_qa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/narrative_qa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/narrative_qa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/narrative_qa/build.py -------------------------------------------------------------------------------- /parlai/tasks/nli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/nli/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/nli/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/nli/agents.py -------------------------------------------------------------------------------- /parlai/tasks/nlvr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/nlvr/README.md -------------------------------------------------------------------------------- /parlai/tasks/nlvr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/nlvr/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/nlvr/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/nlvr/agents.py -------------------------------------------------------------------------------- /parlai/tasks/nlvr/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/nlvr/build.py -------------------------------------------------------------------------------- /parlai/tasks/onecommon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/onecommon/README.md -------------------------------------------------------------------------------- /parlai/tasks/onecommon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/onecommon/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/onecommon/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/onecommon/agents.py -------------------------------------------------------------------------------- /parlai/tasks/onecommon/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/onecommon/build.py -------------------------------------------------------------------------------- /parlai/tasks/opensubtitles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/opensubtitles/README.md -------------------------------------------------------------------------------- /parlai/tasks/opensubtitles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/opensubtitles/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/opensubtitles/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/opensubtitles/agents.py -------------------------------------------------------------------------------- /parlai/tasks/personachat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/personachat/README.md -------------------------------------------------------------------------------- /parlai/tasks/personachat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/personachat/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/personachat/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/personachat/agents.py -------------------------------------------------------------------------------- /parlai/tasks/personachat/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/personachat/build.py -------------------------------------------------------------------------------- /parlai/tasks/personachat/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/personachat/test.py -------------------------------------------------------------------------------- /parlai/tasks/qacnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qacnn/README.md -------------------------------------------------------------------------------- /parlai/tasks/qacnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qacnn/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/qacnn/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qacnn/agents.py -------------------------------------------------------------------------------- /parlai/tasks/qacnn/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qacnn/build.py -------------------------------------------------------------------------------- /parlai/tasks/qadailymail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qadailymail/README.md -------------------------------------------------------------------------------- /parlai/tasks/qadailymail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qadailymail/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/qadailymail/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qadailymail/agents.py -------------------------------------------------------------------------------- /parlai/tasks/qadailymail/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qadailymail/build.py -------------------------------------------------------------------------------- /parlai/tasks/qangaroo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qangaroo/README.md -------------------------------------------------------------------------------- /parlai/tasks/qangaroo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qangaroo/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/qangaroo/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qangaroo/agents.py -------------------------------------------------------------------------------- /parlai/tasks/qangaroo/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qangaroo/build.py -------------------------------------------------------------------------------- /parlai/tasks/qasrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qasrl/README.md -------------------------------------------------------------------------------- /parlai/tasks/qasrl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/qasrl/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qasrl/agents.py -------------------------------------------------------------------------------- /parlai/tasks/qasrl/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qasrl/build.py -------------------------------------------------------------------------------- /parlai/tasks/qazre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qazre/README.md -------------------------------------------------------------------------------- /parlai/tasks/qazre/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/qazre/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qazre/agents.py -------------------------------------------------------------------------------- /parlai/tasks/qazre/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/qazre/build.py -------------------------------------------------------------------------------- /parlai/tasks/quac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/README.md -------------------------------------------------------------------------------- /parlai/tasks/quac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/quac/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/agents.py -------------------------------------------------------------------------------- /parlai/tasks/quac/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/build.py -------------------------------------------------------------------------------- /parlai/tasks/quac/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/test.py -------------------------------------------------------------------------------- /parlai/tasks/quac/test/quac_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/test/quac_test.yml -------------------------------------------------------------------------------- /parlai/tasks/quac/test/quac_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/test/quac_train.yml -------------------------------------------------------------------------------- /parlai/tasks/quac/test/quac_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/quac/test/quac_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/redial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/redial/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/redial/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/redial/agents.py -------------------------------------------------------------------------------- /parlai/tasks/redial/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/redial/build.py -------------------------------------------------------------------------------- /parlai/tasks/redial/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/redial/test.py -------------------------------------------------------------------------------- /parlai/tasks/scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/README.md -------------------------------------------------------------------------------- /parlai/tasks/scan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/scan/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/agents.py -------------------------------------------------------------------------------- /parlai/tasks/scan/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/build.py -------------------------------------------------------------------------------- /parlai/tasks/scan/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/test.py -------------------------------------------------------------------------------- /parlai/tasks/scan/test/scan_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/test/scan_test.yml -------------------------------------------------------------------------------- /parlai/tasks/scan/test/scan_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/test/scan_train.yml -------------------------------------------------------------------------------- /parlai/tasks/scan/test/scan_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/scan/test/scan_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/self_chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/self_chat/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/self_chat/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/self_chat/agents.py -------------------------------------------------------------------------------- /parlai/tasks/self_chat/worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/self_chat/worlds.py -------------------------------------------------------------------------------- /parlai/tasks/sensitive_topics_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/simplequestions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/simplequestions/README.md -------------------------------------------------------------------------------- /parlai/tasks/simplequestions/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/simplequestions/agents.py -------------------------------------------------------------------------------- /parlai/tasks/simplequestions/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/simplequestions/build.py -------------------------------------------------------------------------------- /parlai/tasks/simplequestions/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/simplequestions/test.py -------------------------------------------------------------------------------- /parlai/tasks/snli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/README.md -------------------------------------------------------------------------------- /parlai/tasks/snli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/snli/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/agents.py -------------------------------------------------------------------------------- /parlai/tasks/snli/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/build.py -------------------------------------------------------------------------------- /parlai/tasks/snli/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/test.py -------------------------------------------------------------------------------- /parlai/tasks/snli/test/snli_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/test/snli_test.yml -------------------------------------------------------------------------------- /parlai/tasks/snli/test/snli_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/test/snli_train.yml -------------------------------------------------------------------------------- /parlai/tasks/snli/test/snli_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/snli/test/snli_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/squad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad/README.md -------------------------------------------------------------------------------- /parlai/tasks/squad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/squad/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad/agents.py -------------------------------------------------------------------------------- /parlai/tasks/squad/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad/build.py -------------------------------------------------------------------------------- /parlai/tasks/squad/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad/test.py -------------------------------------------------------------------------------- /parlai/tasks/squad/test/squad_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad/test/squad_test.yml -------------------------------------------------------------------------------- /parlai/tasks/squad2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad2/README.md -------------------------------------------------------------------------------- /parlai/tasks/squad2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad2/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/squad2/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad2/agents.py -------------------------------------------------------------------------------- /parlai/tasks/squad2/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad2/build.py -------------------------------------------------------------------------------- /parlai/tasks/squad2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/squad2/test.py -------------------------------------------------------------------------------- /parlai/tasks/sst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/README.md -------------------------------------------------------------------------------- /parlai/tasks/sst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/sst/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/agents.py -------------------------------------------------------------------------------- /parlai/tasks/sst/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/build.py -------------------------------------------------------------------------------- /parlai/tasks/sst/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/test.py -------------------------------------------------------------------------------- /parlai/tasks/sst/test/sst_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/test/sst_test.yml -------------------------------------------------------------------------------- /parlai/tasks/sst/test/sst_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/test/sst_train.yml -------------------------------------------------------------------------------- /parlai/tasks/sst/test/sst_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/sst/test/sst_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/style_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/style_gen/README.md -------------------------------------------------------------------------------- /parlai/tasks/style_gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/style_gen/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/style_gen/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/style_gen/agents.py -------------------------------------------------------------------------------- /parlai/tasks/style_gen/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/style_gen/build.py -------------------------------------------------------------------------------- /parlai/tasks/style_gen/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/style_gen/test.py -------------------------------------------------------------------------------- /parlai/tasks/task_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/task_list.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster/agents.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster/build.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster/test.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster/tm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster/tm_utils.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster2/README.md -------------------------------------------------------------------------------- /parlai/tasks/taskmaster2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster2/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster2/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster2/agents.py -------------------------------------------------------------------------------- /parlai/tasks/taskmaster2/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskmaster2/build.py -------------------------------------------------------------------------------- /parlai/tasks/taskntalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskntalk/README.md -------------------------------------------------------------------------------- /parlai/tasks/taskntalk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskntalk/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/taskntalk/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskntalk/agents.py -------------------------------------------------------------------------------- /parlai/tasks/taskntalk/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/taskntalk/build.py -------------------------------------------------------------------------------- /parlai/tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/tasks.py -------------------------------------------------------------------------------- /parlai/tasks/triviaqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/triviaqa/README.md -------------------------------------------------------------------------------- /parlai/tasks/triviaqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/triviaqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/triviaqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/triviaqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/triviaqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/triviaqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/twitter/README.md -------------------------------------------------------------------------------- /parlai/tasks/twitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/twitter/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/twitter/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/twitter/agents.py -------------------------------------------------------------------------------- /parlai/tasks/twitter/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/twitter/build.py -------------------------------------------------------------------------------- /parlai/tasks/twitter/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/twitter/test.py -------------------------------------------------------------------------------- /parlai/tasks/ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ubuntu/README.md -------------------------------------------------------------------------------- /parlai/tasks/ubuntu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ubuntu/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/ubuntu/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ubuntu/agents.py -------------------------------------------------------------------------------- /parlai/tasks/ubuntu/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ubuntu/build.py -------------------------------------------------------------------------------- /parlai/tasks/ubuntu/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/ubuntu/test.py -------------------------------------------------------------------------------- /parlai/tasks/visdial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/visdial/README.md -------------------------------------------------------------------------------- /parlai/tasks/visdial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/visdial/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/visdial/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/visdial/agents.py -------------------------------------------------------------------------------- /parlai/tasks/visdial/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/visdial/build.py -------------------------------------------------------------------------------- /parlai/tasks/vqa_v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v1/README.md -------------------------------------------------------------------------------- /parlai/tasks/vqa_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v1/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/vqa_v1/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v1/agents.py -------------------------------------------------------------------------------- /parlai/tasks/vqa_v1/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v1/build.py -------------------------------------------------------------------------------- /parlai/tasks/vqa_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v2/README.md -------------------------------------------------------------------------------- /parlai/tasks/vqa_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v2/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/vqa_v2/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v2/agents.py -------------------------------------------------------------------------------- /parlai/tasks/vqa_v2/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/vqa_v2/build.py -------------------------------------------------------------------------------- /parlai/tasks/webquestions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/webquestions/README.md -------------------------------------------------------------------------------- /parlai/tasks/webquestions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/webquestions/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/webquestions/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/webquestions/agents.py -------------------------------------------------------------------------------- /parlai/tasks/webquestions/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/webquestions/build.py -------------------------------------------------------------------------------- /parlai/tasks/wikimovies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikimovies/README.md -------------------------------------------------------------------------------- /parlai/tasks/wikimovies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikimovies/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/wikimovies/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikimovies/agents.py -------------------------------------------------------------------------------- /parlai/tasks/wikimovies/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikimovies/build.py -------------------------------------------------------------------------------- /parlai/tasks/wikimovies/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikimovies/test.py -------------------------------------------------------------------------------- /parlai/tasks/wikipedia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikipedia/README.md -------------------------------------------------------------------------------- /parlai/tasks/wikipedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikipedia/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/wikipedia/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikipedia/agents.py -------------------------------------------------------------------------------- /parlai/tasks/wikipedia/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikipedia/build.py -------------------------------------------------------------------------------- /parlai/tasks/wikiqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikiqa/README.md -------------------------------------------------------------------------------- /parlai/tasks/wikiqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikiqa/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/wikiqa/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikiqa/agents.py -------------------------------------------------------------------------------- /parlai/tasks/wikiqa/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikiqa/build.py -------------------------------------------------------------------------------- /parlai/tasks/wikiqa/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikiqa/test.py -------------------------------------------------------------------------------- /parlai/tasks/wikisql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikisql/README.md -------------------------------------------------------------------------------- /parlai/tasks/wikisql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/wikisql/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikisql/agents.py -------------------------------------------------------------------------------- /parlai/tasks/wikisql/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikisql/build.py -------------------------------------------------------------------------------- /parlai/tasks/wikisql/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wikisql/test.py -------------------------------------------------------------------------------- /parlai/tasks/wizard_of_wikipedia_ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/wmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/README.md -------------------------------------------------------------------------------- /parlai/tasks/wmt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/__init__.py -------------------------------------------------------------------------------- /parlai/tasks/wmt/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/agents.py -------------------------------------------------------------------------------- /parlai/tasks/wmt/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/build.py -------------------------------------------------------------------------------- /parlai/tasks/wmt/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/test.py -------------------------------------------------------------------------------- /parlai/tasks/wmt/test/wmt_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/test/wmt_test.yml -------------------------------------------------------------------------------- /parlai/tasks/wmt/test/wmt_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/test/wmt_train.yml -------------------------------------------------------------------------------- /parlai/tasks/wmt/test/wmt_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wmt/test/wmt_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/woz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/README.md -------------------------------------------------------------------------------- /parlai/tasks/woz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/woz/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/agents.py -------------------------------------------------------------------------------- /parlai/tasks/woz/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/build.py -------------------------------------------------------------------------------- /parlai/tasks/woz/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/test.py -------------------------------------------------------------------------------- /parlai/tasks/woz/test/woz_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/test/woz_test.yml -------------------------------------------------------------------------------- /parlai/tasks/woz/test/woz_train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/test/woz_train.yml -------------------------------------------------------------------------------- /parlai/tasks/woz/test/woz_valid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/woz/test/woz_valid.yml -------------------------------------------------------------------------------- /parlai/tasks/wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wrapper/README.md -------------------------------------------------------------------------------- /parlai/tasks/wrapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/tasks/wrapper/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/tasks/wrapper/agents.py -------------------------------------------------------------------------------- /parlai/torchscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/torchscript/README.md -------------------------------------------------------------------------------- /parlai/torchscript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/torchscript/__init__.py -------------------------------------------------------------------------------- /parlai/torchscript/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/torchscript/agents.py -------------------------------------------------------------------------------- /parlai/torchscript/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/torchscript/modules.py -------------------------------------------------------------------------------- /parlai/torchscript/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/torchscript/scripts/__init__.py -------------------------------------------------------------------------------- /parlai/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/__init__.py -------------------------------------------------------------------------------- /parlai/utils/bpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/bpe.py -------------------------------------------------------------------------------- /parlai/utils/conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/conversations.py -------------------------------------------------------------------------------- /parlai/utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/data.py -------------------------------------------------------------------------------- /parlai/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/distributed.py -------------------------------------------------------------------------------- /parlai/utils/flake8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/flake8.py -------------------------------------------------------------------------------- /parlai/utils/fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/fp16.py -------------------------------------------------------------------------------- /parlai/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/io.py -------------------------------------------------------------------------------- /parlai/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/logging.py -------------------------------------------------------------------------------- /parlai/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/misc.py -------------------------------------------------------------------------------- /parlai/utils/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/pickle.py -------------------------------------------------------------------------------- /parlai/utils/safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/safety.py -------------------------------------------------------------------------------- /parlai/utils/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/strings.py -------------------------------------------------------------------------------- /parlai/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/testing.py -------------------------------------------------------------------------------- /parlai/utils/torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/torch.py -------------------------------------------------------------------------------- /parlai/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/typing.py -------------------------------------------------------------------------------- /parlai/utils/world_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/utils/world_logging.py -------------------------------------------------------------------------------- /parlai/zoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/README.md -------------------------------------------------------------------------------- /parlai/zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/bart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/bart/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/bart/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/bart/build.py -------------------------------------------------------------------------------- /parlai/zoo/bert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/bert/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/bert/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/bert/build.py -------------------------------------------------------------------------------- /parlai/zoo/blender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/blender/blender_3B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/blender_3B.py -------------------------------------------------------------------------------- /parlai/zoo/blender/blender_90M.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/blender_90M.py -------------------------------------------------------------------------------- /parlai/zoo/blender/blender_9B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/blender_9B.py -------------------------------------------------------------------------------- /parlai/zoo/blender/blender_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/blender_ascii.txt -------------------------------------------------------------------------------- /parlai/zoo/blender/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/build.py -------------------------------------------------------------------------------- /parlai/zoo/blender/dict_3B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/dict_3B.py -------------------------------------------------------------------------------- /parlai/zoo/blender/dict_90M.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/dict_90M.py -------------------------------------------------------------------------------- /parlai/zoo/blender/reddit_3B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/reddit_3B.py -------------------------------------------------------------------------------- /parlai/zoo/blender/reddit_9B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/blender/reddit_9B.py -------------------------------------------------------------------------------- /parlai/zoo/detectron/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/detectron/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/detectron/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/detectron/build.py -------------------------------------------------------------------------------- /parlai/zoo/dialogue_safety/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dialogue_safety/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/dialogue_unlikelihood/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/zoo/dodecadialogue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dodecadialogue/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/dodecadialogue/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dodecadialogue/build.py -------------------------------------------------------------------------------- /parlai/zoo/dodecadialogue/eli5_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dodecadialogue/eli5_ft.py -------------------------------------------------------------------------------- /parlai/zoo/dodecadialogue/igc_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dodecadialogue/igc_ft.py -------------------------------------------------------------------------------- /parlai/zoo/dodecadialogue/reddit_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dodecadialogue/reddit_ft.py -------------------------------------------------------------------------------- /parlai/zoo/dodecadialogue/ubuntu_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/dodecadialogue/ubuntu_ft.py -------------------------------------------------------------------------------- /parlai/zoo/fasttext_vectors/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/fasttext_vectors/build.py -------------------------------------------------------------------------------- /parlai/zoo/glove_vectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/glove_vectors/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/glove_vectors/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/glove_vectors/build.py -------------------------------------------------------------------------------- /parlai/zoo/image_chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/image_chat/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/light/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/light/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/light/biranker_dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/light/biranker_dialogue.py -------------------------------------------------------------------------------- /parlai/zoo/md_gender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/zoo/md_gender/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/md_gender/build.py -------------------------------------------------------------------------------- /parlai/zoo/model_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/model_list.py -------------------------------------------------------------------------------- /parlai/zoo/sensitive_topics_classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parlai/zoo/style_gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/style_gen/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/unittest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/unittest/__init__.py -------------------------------------------------------------------------------- /parlai/zoo/unittest/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/unittest/build.py -------------------------------------------------------------------------------- /parlai/zoo/wikipedia_full/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/parlai/zoo/wikipedia_full/__init__.py -------------------------------------------------------------------------------- /projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/README.md -------------------------------------------------------------------------------- /projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/__init__.py -------------------------------------------------------------------------------- /projects/anti_scaling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/anti_scaling/README.md -------------------------------------------------------------------------------- /projects/anti_scaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/anti_scaling/__init__.py -------------------------------------------------------------------------------- /projects/anti_scaling/distillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/anti_scaling/distillation.py -------------------------------------------------------------------------------- /projects/beat_the_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/beat_the_bot/README.md -------------------------------------------------------------------------------- /projects/beat_the_bot/beatthebot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/beat_the_bot/beatthebot.gif -------------------------------------------------------------------------------- /projects/beat_the_bot/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/beat_the_bot/bot.png -------------------------------------------------------------------------------- /projects/blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/blender/README.md -------------------------------------------------------------------------------- /projects/bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/bst/README.md -------------------------------------------------------------------------------- /projects/bst/bst_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/bst/bst_fig.png -------------------------------------------------------------------------------- /projects/contradiction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/contradiction/README.md -------------------------------------------------------------------------------- /projects/convai2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/convai2/README.md -------------------------------------------------------------------------------- /projects/dialogue_safety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dialogue_safety/README.md -------------------------------------------------------------------------------- /projects/dialogue_safety/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dialogue_safety/diagram.png -------------------------------------------------------------------------------- /projects/dodecadialogue/Baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dodecadialogue/Baseline.png -------------------------------------------------------------------------------- /projects/dodecadialogue/Comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dodecadialogue/Comparison.png -------------------------------------------------------------------------------- /projects/dodecadialogue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dodecadialogue/README.md -------------------------------------------------------------------------------- /projects/dodecadialogue/Tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dodecadialogue/Tasks.png -------------------------------------------------------------------------------- /projects/dodecadialogue/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/dodecadialogue/wizard.png -------------------------------------------------------------------------------- /projects/drqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/drqa/README.md -------------------------------------------------------------------------------- /projects/genderation_bias/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/genderation_bias/README.md -------------------------------------------------------------------------------- /projects/genderation_bias/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/genderation_bias/agents.py -------------------------------------------------------------------------------- /projects/image_chat/Examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/image_chat/Examples.png -------------------------------------------------------------------------------- /projects/image_chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/image_chat/README.md -------------------------------------------------------------------------------- /projects/image_chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/image_chat/__init__.py -------------------------------------------------------------------------------- /projects/image_chat/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/image_chat/interactive.py -------------------------------------------------------------------------------- /projects/image_chat/transresnet_multimodal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/light/README.md -------------------------------------------------------------------------------- /projects/light/example-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/light/example-dialog.png -------------------------------------------------------------------------------- /projects/light/scribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/light/scribe.png -------------------------------------------------------------------------------- /projects/light/tavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/light/tavern.png -------------------------------------------------------------------------------- /projects/md_gender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/md_gender/README.md -------------------------------------------------------------------------------- /projects/memnn_feedback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/memnn_feedback/README.md -------------------------------------------------------------------------------- /projects/personachat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/personachat/README.md -------------------------------------------------------------------------------- /projects/polyencoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/polyencoder/README.md -------------------------------------------------------------------------------- /projects/recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/recipes/README.md -------------------------------------------------------------------------------- /projects/recipes/chatlog_2.7B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/recipes/chatlog_2.7B.json -------------------------------------------------------------------------------- /projects/recipes/funguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/recipes/funguy.png -------------------------------------------------------------------------------- /projects/recipes/steve_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/recipes/steve_jobs.png -------------------------------------------------------------------------------- /projects/safety_recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/safety_recipes/README.md -------------------------------------------------------------------------------- /projects/self_feeding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/self_feeding/README.md -------------------------------------------------------------------------------- /projects/style_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/style_gen/README.md -------------------------------------------------------------------------------- /projects/style_gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/style_gen/__init__.py -------------------------------------------------------------------------------- /projects/style_gen/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/style_gen/classifier.py -------------------------------------------------------------------------------- /projects/style_gen/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/style_gen/modules.py -------------------------------------------------------------------------------- /projects/style_gen/style_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/style_gen/style_gen.py -------------------------------------------------------------------------------- /projects/talkthewalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/projects/talkthewalk/README.md -------------------------------------------------------------------------------- /projects/wizard_of_wikipedia/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/wizard_of_wikipedia_ko/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/crowdsourcing/tasks/acute_eval/test_fast_acute_dataset/test_ratings_per_worker_csv.csv: -------------------------------------------------------------------------------- 1 | ,worker,run_id 2 | 0,1,4 3 | -------------------------------------------------------------------------------- /tests/crowdsourcing/tasks/acute_eval/test_fast_acute_logs/test_ratings_per_worker_csv.csv: -------------------------------------------------------------------------------- 1 | ,worker,run_id 2 | 0,1,4 3 | -------------------------------------------------------------------------------- /tests/crowdsourcing/tasks/acute_eval/test_fast_acute_self_chat/test_ratings_per_worker_csv.csv: -------------------------------------------------------------------------------- 1 | ,worker,run_id 2 | 0,1,4 3 | -------------------------------------------------------------------------------- /tests/nightly/cpu/test_alice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/cpu/test_alice.py -------------------------------------------------------------------------------- /tests/nightly/cpu/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/cpu/test_urls.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_bart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_bart.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_bert.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_dialogpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_dialogpt.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_dodeca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_dodeca.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_gpt2.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_style_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_style_gen.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_t5.py -------------------------------------------------------------------------------- /tests/nightly/gpu/test_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/nightly/gpu/test_wizard.py -------------------------------------------------------------------------------- /tests/tasks/self_chat/test_worlds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/tasks/self_chat/test_worlds.py -------------------------------------------------------------------------------- /tests/tasks/test_genderation_bias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/tasks/test_genderation_bias.py -------------------------------------------------------------------------------- /tests/tasks/test_igc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/tasks/test_igc.py -------------------------------------------------------------------------------- /tests/tasks/test_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/tasks/test_light.py -------------------------------------------------------------------------------- /tests/test_apex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_apex.py -------------------------------------------------------------------------------- /tests/test_build_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_build_data.py -------------------------------------------------------------------------------- /tests/test_chat_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_chat_service.py -------------------------------------------------------------------------------- /tests/test_chunkteacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_chunkteacher.py -------------------------------------------------------------------------------- /tests/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_code.py -------------------------------------------------------------------------------- /tests/test_conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_conversations.py -------------------------------------------------------------------------------- /tests/test_convo_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_convo_render.py -------------------------------------------------------------------------------- /tests/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_dict.py -------------------------------------------------------------------------------- /tests/test_display_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_display_data.py -------------------------------------------------------------------------------- /tests/test_distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_distributed.py -------------------------------------------------------------------------------- /tests/test_dynamicbatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_dynamicbatching.py -------------------------------------------------------------------------------- /tests/test_eval_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_eval_model.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_hred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_hred.py -------------------------------------------------------------------------------- /tests/test_image_featurizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_image_featurizers.py -------------------------------------------------------------------------------- /tests/test_image_seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_image_seq2seq.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_import.py -------------------------------------------------------------------------------- /tests/test_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_interactive.py -------------------------------------------------------------------------------- /tests/test_ir_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_ir_baseline.py -------------------------------------------------------------------------------- /tests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_loader.py -------------------------------------------------------------------------------- /tests/test_lr_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_lr_schedulers.py -------------------------------------------------------------------------------- /tests/test_mem_efficient_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_mem_efficient_fp16.py -------------------------------------------------------------------------------- /tests/test_memnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_memnn.py -------------------------------------------------------------------------------- /tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_messages.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_miscscripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_miscscripts.py -------------------------------------------------------------------------------- /tests/test_multigpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_multigpu.py -------------------------------------------------------------------------------- /tests/test_multiworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_multiworld.py -------------------------------------------------------------------------------- /tests/test_mutators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_mutators.py -------------------------------------------------------------------------------- /tests/test_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_opt.py -------------------------------------------------------------------------------- /tests/test_other_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_other_scripts.py -------------------------------------------------------------------------------- /tests/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_params.py -------------------------------------------------------------------------------- /tests/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_script.py -------------------------------------------------------------------------------- /tests/test_self_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_self_chat.py -------------------------------------------------------------------------------- /tests/test_seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_seq2seq.py -------------------------------------------------------------------------------- /tests/test_starspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_starspace.py -------------------------------------------------------------------------------- /tests/test_ta_inheritence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_ta_inheritence.py -------------------------------------------------------------------------------- /tests/test_teachers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_teachers.py -------------------------------------------------------------------------------- /tests/test_tfidf_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_tfidf_retriever.py -------------------------------------------------------------------------------- /tests/test_tga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_tga.py -------------------------------------------------------------------------------- /tests/test_torch_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_torch_agent.py -------------------------------------------------------------------------------- /tests/test_tra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_tra.py -------------------------------------------------------------------------------- /tests/test_train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_train_model.py -------------------------------------------------------------------------------- /tests/test_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_transformers.py -------------------------------------------------------------------------------- /tests/test_unigram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_unigram.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_utils_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_utils_torch.py -------------------------------------------------------------------------------- /tests/test_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_wrapper.py -------------------------------------------------------------------------------- /tests/test_zootasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/tests/test_zootasks.py -------------------------------------------------------------------------------- /website/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/Makefile -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/README.md -------------------------------------------------------------------------------- /website/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/generate.py -------------------------------------------------------------------------------- /website/postprocess_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/postprocess_docs.py -------------------------------------------------------------------------------- /website/static/css/home-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/css/home-theme.css -------------------------------------------------------------------------------- /website/static/css/parlai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/css/parlai.css -------------------------------------------------------------------------------- /website/static/img/examples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/examples.svg -------------------------------------------------------------------------------- /website/static/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/favicon-16x16.png -------------------------------------------------------------------------------- /website/static/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/favicon-32x32.png -------------------------------------------------------------------------------- /website/static/img/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/favicon-96x96.png -------------------------------------------------------------------------------- /website/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/icon.png -------------------------------------------------------------------------------- /website/static/img/parlai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/parlai.png -------------------------------------------------------------------------------- /website/static/img/tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/static/img/tutorials.svg -------------------------------------------------------------------------------- /website/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/templates/about.html -------------------------------------------------------------------------------- /website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/templates/base.html -------------------------------------------------------------------------------- /website/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/templates/error.html -------------------------------------------------------------------------------- /website/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/templates/home.html -------------------------------------------------------------------------------- /website/templates/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/kowow/HEAD/website/templates/project.html --------------------------------------------------------------------------------