├── .gitignore ├── LICENSE ├── README.md ├── data ├── README.md ├── __init__.py ├── create_redditadvice_2019.py ├── encoder.json ├── encoder.py ├── prepare_eval.py ├── tfrecord_utils.py ├── to_tfrecord_grover.py ├── to_tfrecord_t5.py └── vocab.bpe ├── grover ├── README.md ├── lm │ ├── __init__.py │ ├── configs │ │ ├── base.json │ │ ├── large.json │ │ └── mega.json │ ├── finetune.sh │ ├── generation_dataloader.py │ ├── modeling.py │ ├── optimization_adafactor.py │ ├── train.py │ ├── utils.py │ ├── validate.py │ └── validate.sh └── server │ ├── README.md │ ├── get_ckpt.sh │ ├── index.html │ └── run_server.py ├── human_eval ├── README.md ├── advice_to_mturk_format.py └── turk_interface.html ├── requirements.txt ├── t5 ├── README.md ├── __init__.py ├── data │ ├── __init__.py │ ├── mixtures.py │ ├── postprocessors.py │ ├── postprocessors_test.py │ ├── preprocessors.py │ ├── preprocessors_test.py │ ├── sentencepiece_vocabulary.py │ ├── sentencepiece_vocabulary_test.py │ ├── tasks.py │ ├── test_data │ │ ├── cached_task │ │ │ ├── COMPLETED │ │ │ ├── info.train.json │ │ │ ├── info.validation.json │ │ │ ├── stats.train.json │ │ │ └── stats.validation.json │ │ └── sentencepiece │ │ │ ├── sentencepiece.model │ │ │ ├── sentencepiece.vocab │ │ │ └── tokens.tsv │ ├── test_utils.py │ ├── test_utils_test.py │ ├── utils.py │ └── utils_test.py ├── evaluation │ ├── __init__.py │ ├── eval_utils.py │ ├── eval_utils_test.py │ ├── metrics.py │ ├── metrics_test.py │ └── test_utils.py ├── finetune.sh ├── generate_test.py ├── index.html ├── models │ ├── __init__.py │ ├── gin │ │ ├── __init__.py │ │ ├── beam_search.gin │ │ ├── dataset.gin │ │ ├── eval.gin │ │ ├── greedy_decode.gin │ │ ├── infer.gin │ │ ├── learning_rate_schedules │ │ │ ├── __init__.py │ │ │ ├── constant_0_001.gin │ │ │ └── rsqrt_no_ramp_down.gin │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── bi_bert_base.gin │ │ │ ├── bi_bert_large.gin │ │ │ ├── bi_v1.gin │ │ │ ├── bi_v1_11B.gin │ │ │ ├── bi_v1_2x.gin │ │ │ ├── bi_v1_3B.gin │ │ │ ├── bi_v1_4x.gin │ │ │ ├── bi_v1_l6.gin │ │ │ ├── bi_v1_large.gin │ │ │ ├── bi_v1_shared.gin │ │ │ ├── bi_v1_small.gin │ │ │ ├── lm_v1.gin │ │ │ └── lm_v1_ifa.gin │ │ ├── objectives │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── all_permute.gin │ │ │ ├── denoise.gin │ │ │ ├── iid_10_u_u.gin │ │ │ ├── iid_15_d_d.gin │ │ │ ├── iid_15_m_f.gin │ │ │ ├── iid_15_r10s90_f.gin │ │ │ ├── iid_15_u_u.gin │ │ │ ├── iid_25_u_u.gin │ │ │ ├── iid_50_u_u.gin │ │ │ ├── lm.gin │ │ │ ├── prefix_lm.gin │ │ │ ├── span.gin │ │ │ ├── span_10_15_u_u.gin │ │ │ ├── span_2_15_u_u.gin │ │ │ ├── span_3_15_u_u.gin │ │ │ └── span_5_15_u_u.gin │ │ ├── perplexity_eval.gin │ │ ├── sample_decode.gin │ │ ├── sequence_lengths │ │ │ ├── __init__.py │ │ │ ├── cnn_dailymail_v002.gin │ │ │ ├── default.gin │ │ │ ├── en_mix.gin │ │ │ ├── glue_v002_proportional.gin │ │ │ ├── squad_v010_allanswers.gin │ │ │ ├── super_glue_v102_proportional.gin │ │ │ ├── wmt15_enfr_v003.gin │ │ │ ├── wmt16_enro_v003.gin │ │ │ ├── wmt_t2t_ende_v003.gin │ │ │ └── wsc_dpr_simple_proportional.gin │ │ └── task_adapter.gin │ ├── mesh_transformer.py │ ├── mesh_transformer_main.py │ ├── mesh_transformer_test.py │ ├── mtf_model.py │ └── t5_model.py ├── run_server.py ├── scripts │ ├── parse_tb.py │ ├── prepare_glue_submission.py │ └── transform_checkpoints.py ├── train.py ├── validate.py └── validate.sh └── tfidf ├── README.md ├── index.html └── run_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/create_redditadvice_2019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/create_redditadvice_2019.py -------------------------------------------------------------------------------- /data/encoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/encoder.json -------------------------------------------------------------------------------- /data/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/encoder.py -------------------------------------------------------------------------------- /data/prepare_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/prepare_eval.py -------------------------------------------------------------------------------- /data/tfrecord_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/tfrecord_utils.py -------------------------------------------------------------------------------- /data/to_tfrecord_grover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/to_tfrecord_grover.py -------------------------------------------------------------------------------- /data/to_tfrecord_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/to_tfrecord_t5.py -------------------------------------------------------------------------------- /data/vocab.bpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/data/vocab.bpe -------------------------------------------------------------------------------- /grover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/README.md -------------------------------------------------------------------------------- /grover/lm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grover/lm/configs/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/configs/base.json -------------------------------------------------------------------------------- /grover/lm/configs/large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/configs/large.json -------------------------------------------------------------------------------- /grover/lm/configs/mega.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/configs/mega.json -------------------------------------------------------------------------------- /grover/lm/finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/finetune.sh -------------------------------------------------------------------------------- /grover/lm/generation_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/generation_dataloader.py -------------------------------------------------------------------------------- /grover/lm/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/modeling.py -------------------------------------------------------------------------------- /grover/lm/optimization_adafactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/optimization_adafactor.py -------------------------------------------------------------------------------- /grover/lm/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/train.py -------------------------------------------------------------------------------- /grover/lm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/utils.py -------------------------------------------------------------------------------- /grover/lm/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/validate.py -------------------------------------------------------------------------------- /grover/lm/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/lm/validate.sh -------------------------------------------------------------------------------- /grover/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/server/README.md -------------------------------------------------------------------------------- /grover/server/get_ckpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/server/get_ckpt.sh -------------------------------------------------------------------------------- /grover/server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/server/index.html -------------------------------------------------------------------------------- /grover/server/run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/grover/server/run_server.py -------------------------------------------------------------------------------- /human_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/human_eval/README.md -------------------------------------------------------------------------------- /human_eval/advice_to_mturk_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/human_eval/advice_to_mturk_format.py -------------------------------------------------------------------------------- /human_eval/turk_interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/human_eval/turk_interface.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/requirements.txt -------------------------------------------------------------------------------- /t5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/README.md -------------------------------------------------------------------------------- /t5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/__init__.py -------------------------------------------------------------------------------- /t5/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/__init__.py -------------------------------------------------------------------------------- /t5/data/mixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/mixtures.py -------------------------------------------------------------------------------- /t5/data/postprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/postprocessors.py -------------------------------------------------------------------------------- /t5/data/postprocessors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/postprocessors_test.py -------------------------------------------------------------------------------- /t5/data/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/preprocessors.py -------------------------------------------------------------------------------- /t5/data/preprocessors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/preprocessors_test.py -------------------------------------------------------------------------------- /t5/data/sentencepiece_vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/sentencepiece_vocabulary.py -------------------------------------------------------------------------------- /t5/data/sentencepiece_vocabulary_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/sentencepiece_vocabulary_test.py -------------------------------------------------------------------------------- /t5/data/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/tasks.py -------------------------------------------------------------------------------- /t5/data/test_data/cached_task/COMPLETED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t5/data/test_data/cached_task/info.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/cached_task/info.train.json -------------------------------------------------------------------------------- /t5/data/test_data/cached_task/info.validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/cached_task/info.validation.json -------------------------------------------------------------------------------- /t5/data/test_data/cached_task/stats.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/cached_task/stats.train.json -------------------------------------------------------------------------------- /t5/data/test_data/cached_task/stats.validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/cached_task/stats.validation.json -------------------------------------------------------------------------------- /t5/data/test_data/sentencepiece/sentencepiece.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/sentencepiece/sentencepiece.model -------------------------------------------------------------------------------- /t5/data/test_data/sentencepiece/sentencepiece.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/sentencepiece/sentencepiece.vocab -------------------------------------------------------------------------------- /t5/data/test_data/sentencepiece/tokens.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_data/sentencepiece/tokens.tsv -------------------------------------------------------------------------------- /t5/data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_utils.py -------------------------------------------------------------------------------- /t5/data/test_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/test_utils_test.py -------------------------------------------------------------------------------- /t5/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/utils.py -------------------------------------------------------------------------------- /t5/data/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/data/utils_test.py -------------------------------------------------------------------------------- /t5/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/evaluation/__init__.py -------------------------------------------------------------------------------- /t5/evaluation/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/evaluation/eval_utils.py -------------------------------------------------------------------------------- /t5/evaluation/eval_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/evaluation/eval_utils_test.py -------------------------------------------------------------------------------- /t5/evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/evaluation/metrics.py -------------------------------------------------------------------------------- /t5/evaluation/metrics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/evaluation/metrics_test.py -------------------------------------------------------------------------------- /t5/evaluation/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/evaluation/test_utils.py -------------------------------------------------------------------------------- /t5/finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/finetune.sh -------------------------------------------------------------------------------- /t5/generate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/generate_test.py -------------------------------------------------------------------------------- /t5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/index.html -------------------------------------------------------------------------------- /t5/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/__init__.py -------------------------------------------------------------------------------- /t5/models/gin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/__init__.py -------------------------------------------------------------------------------- /t5/models/gin/beam_search.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/beam_search.gin -------------------------------------------------------------------------------- /t5/models/gin/dataset.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/dataset.gin -------------------------------------------------------------------------------- /t5/models/gin/eval.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/eval.gin -------------------------------------------------------------------------------- /t5/models/gin/greedy_decode.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/greedy_decode.gin -------------------------------------------------------------------------------- /t5/models/gin/infer.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/infer.gin -------------------------------------------------------------------------------- /t5/models/gin/learning_rate_schedules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/learning_rate_schedules/__init__.py -------------------------------------------------------------------------------- /t5/models/gin/learning_rate_schedules/constant_0_001.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/learning_rate_schedules/constant_0_001.gin -------------------------------------------------------------------------------- /t5/models/gin/learning_rate_schedules/rsqrt_no_ramp_down.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/learning_rate_schedules/rsqrt_no_ramp_down.gin -------------------------------------------------------------------------------- /t5/models/gin/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/__init__.py -------------------------------------------------------------------------------- /t5/models/gin/models/bi_bert_base.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_bert_base.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_bert_large.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_bert_large.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_11B.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_11B.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_2x.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_2x.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_3B.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_3B.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_4x.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_4x.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_l6.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_l6.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_large.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_large.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_shared.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_shared.gin -------------------------------------------------------------------------------- /t5/models/gin/models/bi_v1_small.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/bi_v1_small.gin -------------------------------------------------------------------------------- /t5/models/gin/models/lm_v1.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/lm_v1.gin -------------------------------------------------------------------------------- /t5/models/gin/models/lm_v1_ifa.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/models/lm_v1_ifa.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/README -------------------------------------------------------------------------------- /t5/models/gin/objectives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/__init__.py -------------------------------------------------------------------------------- /t5/models/gin/objectives/all_permute.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/all_permute.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/denoise.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/denoise.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_10_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/iid_10_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_15_d_d.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/iid_15_d_d.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_15_m_f.gin: -------------------------------------------------------------------------------- 1 | # -*-Python-*- 2 | 3 | include 'objectives/denoise.gin' 4 | -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_15_r10s90_f.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/iid_15_r10s90_f.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_15_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/iid_15_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_25_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/iid_25_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/iid_50_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/iid_50_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/lm.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/lm.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/prefix_lm.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/prefix_lm.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/span.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/span.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/span_10_15_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/span_10_15_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/span_2_15_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/span_2_15_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/objectives/span_3_15_u_u.gin: -------------------------------------------------------------------------------- 1 | # -*-Python-*- 2 | 3 | include 'objectives/span.gin' 4 | -------------------------------------------------------------------------------- /t5/models/gin/objectives/span_5_15_u_u.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/objectives/span_5_15_u_u.gin -------------------------------------------------------------------------------- /t5/models/gin/perplexity_eval.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/perplexity_eval.gin -------------------------------------------------------------------------------- /t5/models/gin/sample_decode.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sample_decode.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/__init__.py -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/cnn_dailymail_v002.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/cnn_dailymail_v002.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/default.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/default.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/en_mix.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/en_mix.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/glue_v002_proportional.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/glue_v002_proportional.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/squad_v010_allanswers.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/squad_v010_allanswers.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/super_glue_v102_proportional.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/super_glue_v102_proportional.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/wmt15_enfr_v003.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/wmt15_enfr_v003.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/wmt16_enro_v003.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/wmt16_enro_v003.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/wmt_t2t_ende_v003.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/wmt_t2t_ende_v003.gin -------------------------------------------------------------------------------- /t5/models/gin/sequence_lengths/wsc_dpr_simple_proportional.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/sequence_lengths/wsc_dpr_simple_proportional.gin -------------------------------------------------------------------------------- /t5/models/gin/task_adapter.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/gin/task_adapter.gin -------------------------------------------------------------------------------- /t5/models/mesh_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/mesh_transformer.py -------------------------------------------------------------------------------- /t5/models/mesh_transformer_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/mesh_transformer_main.py -------------------------------------------------------------------------------- /t5/models/mesh_transformer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/mesh_transformer_test.py -------------------------------------------------------------------------------- /t5/models/mtf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/mtf_model.py -------------------------------------------------------------------------------- /t5/models/t5_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/models/t5_model.py -------------------------------------------------------------------------------- /t5/run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/run_server.py -------------------------------------------------------------------------------- /t5/scripts/parse_tb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/scripts/parse_tb.py -------------------------------------------------------------------------------- /t5/scripts/prepare_glue_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/scripts/prepare_glue_submission.py -------------------------------------------------------------------------------- /t5/scripts/transform_checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/scripts/transform_checkpoints.py -------------------------------------------------------------------------------- /t5/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/train.py -------------------------------------------------------------------------------- /t5/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/validate.py -------------------------------------------------------------------------------- /t5/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/t5/validate.sh -------------------------------------------------------------------------------- /tfidf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/tfidf/README.md -------------------------------------------------------------------------------- /tfidf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/tfidf/index.html -------------------------------------------------------------------------------- /tfidf/run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanz/turingadvice/HEAD/tfidf/run_server.py --------------------------------------------------------------------------------