├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README.old.md ├── datasets ├── KGC │ ├── LICENSE │ ├── README.md │ ├── WN18RR.test │ ├── WN18RR.tiny.test │ ├── WN18RR.tiny.train │ ├── WN18RR.tiny.val │ ├── WN18RR.train │ └── WN18RR.val ├── VAD │ ├── README.md │ ├── VAD.small_splits.txt │ ├── VAD.tiny_splits.txt │ ├── VAD_splits.txt │ ├── reconstitute.sh │ └── simple │ │ ├── README.md │ │ ├── VAD.simple.1000k.test │ │ ├── VAD.simple.1000k.train │ │ ├── VAD.simple.1000k.val │ │ ├── VAD.simple.100k.test │ │ ├── VAD.simple.100k.train │ │ ├── VAD.simple.100k.val │ │ ├── VAD.simple.10k.test │ │ ├── VAD.simple.10k.train │ │ ├── VAD.simple.10k.val │ │ ├── VAD.simple.tiny.test │ │ ├── VAD.simple.tiny.train │ │ ├── VAD.simple.tiny.val │ │ └── sample_one_out_of_domain.test └── syn_ant │ ├── README.md │ ├── tag-adj-pairs.test │ ├── tag-adj-pairs.train │ ├── tag-adj-pairs.val │ ├── tag-fallows-pairs.test │ ├── tag-fallows-pairs.tiny.test │ ├── tag-fallows-pairs.tiny.train │ ├── tag-fallows-pairs.tiny.val │ ├── tag-fallows-pairs.train │ ├── tag-fallows-pairs.val │ ├── tag-fallows-small-pairs.test │ ├── tag-fallows-small-pairs.train │ ├── tag-fallows-small-pairs.val │ ├── tag-noun-pairs.test │ ├── tag-noun-pairs.train │ ├── tag-noun-pairs.val │ ├── tag-verb-pairs.test │ ├── tag-verb-pairs.train │ └── tag-verb-pairs.val ├── doc ├── README.md ├── for_developers_only │ ├── error_logs │ │ └── 20220322.txt │ ├── misc │ │ ├── not_working.txt │ │ └── notes_on_setting_up_virtual_environments.txt │ ├── questions.md │ └── topics_to_discuss │ │ ├── #20220329.md# │ │ ├── 20220329.md │ │ └── 20220405.md ├── old_README.md └── sections │ ├── arguments │ ├── arguments.md │ ├── data.md │ ├── eqn.md │ ├── inputs │ │ └── objects │ │ │ ├── README.md │ │ │ ├── images │ │ │ ├── PetImages │ │ │ │ ├── 0.jpg │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 100.jpg │ │ │ │ ├── 1000.jpg │ │ │ │ ├── 10000.jpg │ │ │ │ ├── 10001.jpg │ │ │ │ ├── 10002.jpg │ │ │ │ ├── 10003.jpg │ │ │ │ └── 10004.jpg │ │ │ └── beans │ │ │ │ ├── healthy_test.20.jpg │ │ │ │ ├── healthy_test.21.jpg │ │ │ │ ├── healthy_test.22.jpg │ │ │ │ ├── healthy_test.23.jpg │ │ │ │ ├── healthy_test.33.jpg │ │ │ │ ├── healthy_test.34.jpg │ │ │ │ ├── healthy_test.35.jpg │ │ │ │ ├── healthy_test.36.jpg │ │ │ │ ├── healthy_test.37.jpg │ │ │ │ └── healthy_test.8.jpg │ │ │ └── wav │ │ │ └── TIMIT │ │ │ ├── SA1.WAV │ │ │ ├── SA2.WAV │ │ │ ├── SI1129.WAV │ │ │ ├── SI1759.WAV │ │ │ ├── SI499.WAV │ │ │ ├── SX139.WAV │ │ │ ├── SX229.WAV │ │ │ ├── SX319.WAV │ │ │ ├── SX409.WAV │ │ │ └── SX49.WAV │ ├── model.md │ └── task.md │ ├── cheatsheet.md │ ├── examples │ └── examples.md │ ├── functions │ ├── gft_cat_data.md │ ├── gft_eval.md │ ├── gft_fit.md │ ├── gft_predict.md │ ├── gft_predict │ │ └── image.md │ └── gft_summary.md │ ├── glossary.md │ ├── installation.md │ └── intro │ ├── simple_examples.md │ └── standard_recipe.md ├── examples ├── README.md ├── eval_examples │ ├── README.md │ ├── errors2.txt │ ├── errors3.txt │ ├── model.HuggingFace │ │ └── language │ │ │ ├── data.HuggingFace │ │ │ ├── Yuchen_models │ │ │ │ └── glue │ │ │ │ │ ├── cola.out │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── lookup_accuracy.py │ │ │ │ │ ├── mnli_matched.out │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.out │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.out │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── qnli.out │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.out │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.out │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.out │ │ │ │ │ ├── sst2.sh │ │ │ │ │ ├── stsb.out │ │ │ │ │ ├── stsb.sh │ │ │ │ │ └── summarize │ │ │ ├── our_models │ │ │ │ ├── VAD │ │ │ │ │ ├── VAD.out │ │ │ │ │ ├── VAD.sh │ │ │ │ │ └── simple │ │ │ │ │ │ ├── 1000k.out │ │ │ │ │ │ ├── 1000k.sh │ │ │ │ │ │ ├── 100k.out │ │ │ │ │ │ ├── 100k.sh │ │ │ │ │ │ ├── 10k.out │ │ │ │ │ │ └── 10k.sh │ │ │ │ ├── case_restoration │ │ │ │ │ ├── case_restoration.ag_news.out │ │ │ │ │ ├── case_restoration.ag_news.sh │ │ │ │ │ ├── case_restoration.imdb.out │ │ │ │ │ ├── case_restoration.imdb.sh │ │ │ │ │ ├── case_restoration.yelp_review_full.out │ │ │ │ │ └── case_restoration.yelp_review_full.sh │ │ │ │ ├── glue │ │ │ │ │ ├── cola.out │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.out │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.out │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.out │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── qnli.out │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.out │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.out │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.out │ │ │ │ │ ├── sst2.sh │ │ │ │ │ ├── stsb.out │ │ │ │ │ └── stsb.sh │ │ │ │ ├── syn_ant │ │ │ │ │ ├── adj.16.out │ │ │ │ │ ├── adj.16.sh │ │ │ │ │ ├── adj.32.out │ │ │ │ │ ├── adj.32.sh │ │ │ │ │ ├── adj.64.out │ │ │ │ │ ├── adj.64.sh │ │ │ │ │ ├── fallows.16.out │ │ │ │ │ ├── fallows.16.sh │ │ │ │ │ ├── fallows.32.out │ │ │ │ │ ├── fallows.32.sh │ │ │ │ │ ├── fallows.64.out │ │ │ │ │ ├── fallows.64.sh │ │ │ │ │ ├── noun.16.out │ │ │ │ │ ├── noun.16.sh │ │ │ │ │ ├── noun.32.out │ │ │ │ │ ├── noun.32.sh │ │ │ │ │ ├── noun.64.out │ │ │ │ │ ├── noun.64.sh │ │ │ │ │ ├── verb.16.out │ │ │ │ │ ├── verb.16.sh │ │ │ │ │ ├── verb.32.out │ │ │ │ │ ├── verb.32.sh │ │ │ │ │ ├── verb.64.out │ │ │ │ │ └── verb.64.sh │ │ │ │ └── text_classification │ │ │ │ │ ├── ag_news.out │ │ │ │ │ ├── ag_news.sh │ │ │ │ │ ├── banking77.out │ │ │ │ │ ├── banking77.sh │ │ │ │ │ ├── emotion.out │ │ │ │ │ ├── emotion.sh │ │ │ │ │ ├── onestop_english.out │ │ │ │ │ ├── onestop_english.sh │ │ │ │ │ ├── snli.out │ │ │ │ │ ├── snli.sh │ │ │ │ │ ├── tweet_eval │ │ │ │ │ ├── tweet_eval_emoji.out │ │ │ │ │ ├── tweet_eval_emoji.sh │ │ │ │ │ ├── tweet_eval_emotion.out │ │ │ │ │ ├── tweet_eval_emotion.sh │ │ │ │ │ ├── tweet_eval_hate.out │ │ │ │ │ ├── tweet_eval_hate.sh │ │ │ │ │ ├── tweet_eval_irony.out │ │ │ │ │ ├── tweet_eval_irony.sh │ │ │ │ │ ├── tweet_eval_offsensive.out │ │ │ │ │ ├── tweet_eval_offsensive.sh │ │ │ │ │ ├── tweet_eval_sentiment.out │ │ │ │ │ ├── tweet_eval_sentiment.sh │ │ │ │ │ ├── tweet_eval_stance_abortion.out │ │ │ │ │ ├── tweet_eval_stance_abortion.sh │ │ │ │ │ ├── tweet_eval_stance_atheism.out │ │ │ │ │ ├── tweet_eval_stance_atheism.sh │ │ │ │ │ ├── tweet_eval_stance_climate.out │ │ │ │ │ ├── tweet_eval_stance_climate.sh │ │ │ │ │ ├── tweet_eval_stance_feminist.out │ │ │ │ │ ├── tweet_eval_stance_feminist.sh │ │ │ │ │ ├── tweet_eval_stance_hillary.out │ │ │ │ │ └── tweet_eval_stance_hillary.sh │ │ │ │ │ ├── tweets_hate_speech_detection.out │ │ │ │ │ └── tweets_hate_speech_detection.sh │ │ │ └── their_models │ │ │ │ ├── AdapterHub │ │ │ │ ├── README.md │ │ │ │ ├── anli_r3.out │ │ │ │ ├── anli_r3.sh │ │ │ │ ├── art.out │ │ │ │ ├── art.sh │ │ │ │ ├── boolq.out │ │ │ │ ├── boolq.sh │ │ │ │ ├── cola.out │ │ │ │ ├── cola.sh │ │ │ │ ├── commonsense_qa.sh.not_working │ │ │ │ ├── comqa.out │ │ │ │ ├── comqa.sh │ │ │ │ ├── conll2000.out │ │ │ │ ├── conll2000.sh │ │ │ │ ├── conll2003.out │ │ │ │ ├── conll2003.sh │ │ │ │ ├── conll2003_pos.out │ │ │ │ ├── conll2003_pos.sh │ │ │ │ ├── copa.out │ │ │ │ ├── copa.sh │ │ │ │ ├── cosmos_qa.sh.not_working │ │ │ │ ├── cq.out │ │ │ │ ├── cq.sh │ │ │ │ ├── drop.out │ │ │ │ ├── drop.sh │ │ │ │ ├── duorc_p.out │ │ │ │ ├── duorc_p.sh │ │ │ │ ├── duorc_s.out │ │ │ │ ├── duorc_s.sh │ │ │ │ ├── emo.out │ │ │ │ ├── emo.sh │ │ │ │ ├── emotion.out │ │ │ │ ├── emotion.sh │ │ │ │ ├── fce_error_detection.sh.not_working │ │ │ │ ├── hellaswag.sh.not_working │ │ │ │ ├── hotpotqa.out │ │ │ │ ├── hotpotqa.sh │ │ │ │ ├── imdb.out │ │ │ │ ├── imdb.sh │ │ │ │ ├── mit_movie_trivia.out │ │ │ │ ├── mit_movie_trivia.sh │ │ │ │ ├── mnli.out │ │ │ │ ├── mnli.sh.deprecated │ │ │ │ ├── mnli_matched.out │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.out │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.out │ │ │ │ ├── mrpc.sh │ │ │ │ ├── multirc.out │ │ │ │ ├── multirc.sh │ │ │ │ ├── newsqa.sh.not_working │ │ │ │ ├── pmb_sem_tagging.out │ │ │ │ ├── pmb_sem_tagging.sh │ │ │ │ ├── qnli.out │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.out │ │ │ │ ├── qqp.sh │ │ │ │ ├── quail.sh.not_working │ │ │ │ ├── quartz.sh.not_working │ │ │ │ ├── quoref.out │ │ │ │ ├── quoref.sh │ │ │ │ ├── race.sh.not_working │ │ │ │ ├── record.out │ │ │ │ ├── record.sh │ │ │ │ ├── rotten_tomatoes.out │ │ │ │ ├── rotten_tomatoes.sh │ │ │ │ ├── rte.out │ │ │ │ ├── rte.sh │ │ │ │ ├── scicite.out │ │ │ │ ├── scicite.sh │ │ │ │ ├── scitail.sh.not_working │ │ │ │ ├── sick.out │ │ │ │ ├── sick.sh │ │ │ │ ├── snli.out │ │ │ │ ├── snli.sh │ │ │ │ ├── social_i_qa.sh.not_working │ │ │ │ ├── squad.out │ │ │ │ ├── squad.sh │ │ │ │ ├── squad_v2.out │ │ │ │ ├── squad_v2.sh │ │ │ │ ├── sst2.out │ │ │ │ ├── sst2.sh │ │ │ │ ├── stsb.out │ │ │ │ ├── stsb.sh │ │ │ │ ├── swag.out │ │ │ │ ├── swag.sh │ │ │ │ ├── trec.out │ │ │ │ ├── trec.sh │ │ │ │ ├── ud_deprel.out │ │ │ │ ├── ud_deprel.sh │ │ │ │ ├── ud_en_ewt.out │ │ │ │ ├── ud_en_ewt.sh │ │ │ │ ├── ud_pos.out │ │ │ │ ├── ud_pos.sh │ │ │ │ ├── wic.out │ │ │ │ ├── wic.sh │ │ │ │ ├── wikihop.out │ │ │ │ ├── wikihop.sh │ │ │ │ ├── winogrande.out │ │ │ │ ├── winogrande.sh │ │ │ │ ├── wnut_17.out │ │ │ │ ├── wnut_17.sh │ │ │ │ ├── yelp_polarity.out │ │ │ │ └── yelp_polarity.sh │ │ │ │ ├── conll2003 │ │ │ │ ├── chunk.sh.to_be_done │ │ │ │ ├── ner.out │ │ │ │ ├── ner.sh │ │ │ │ ├── pos.out │ │ │ │ └── pos.sh │ │ │ │ ├── glue │ │ │ │ ├── cola.out │ │ │ │ ├── cola.sh │ │ │ │ ├── downloads.txt │ │ │ │ ├── mnli_matched.out │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.out │ │ │ │ ├── mnli_mismatched.out.bak.keep │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.out │ │ │ │ ├── mrpc.sh │ │ │ │ ├── qnli.out │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.out │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.out │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.out │ │ │ │ ├── sst2.sh │ │ │ │ ├── stsb.out │ │ │ │ ├── stsb.sh │ │ │ │ └── summary.txt │ │ │ │ ├── paraphrase │ │ │ │ ├── paws_labeled_final.out │ │ │ │ ├── paws_labeled_final.sh │ │ │ │ ├── paws_labeled_swap.out │ │ │ │ ├── paws_labeled_swap.sh │ │ │ │ ├── paws_unlabeled_final.out │ │ │ │ └── paws_unlabeled_final.sh │ │ │ │ ├── question_answering │ │ │ │ ├── squad.out │ │ │ │ ├── squad.sh │ │ │ │ ├── squad_v2.out │ │ │ │ └── squad_v2.sh │ │ │ │ ├── sentiment │ │ │ │ ├── amazon_reviews_multi.out │ │ │ │ ├── amazon_reviews_multi.sh │ │ │ │ ├── ethos.out │ │ │ │ ├── ethos.sh │ │ │ │ ├── imdb.out │ │ │ │ ├── imdb.sh │ │ │ │ ├── poem_sentiment.sh.to_be_done │ │ │ │ ├── setfit_amazon_polarity.sh.to_be_done │ │ │ │ ├── setfit_yelp_review_full.sh.to_be_done │ │ │ │ └── sst.sh.to_be_done │ │ │ │ └── text_classification │ │ │ │ ├── ag_news.out │ │ │ │ ├── ag_news.sh │ │ │ │ ├── banking77.out │ │ │ │ ├── banking77.sh │ │ │ │ ├── emotion.out │ │ │ │ ├── emotion.sh │ │ │ │ ├── snli.sh.to_be_done │ │ │ │ ├── tweets_hate_speech_detection.out │ │ │ │ └── tweets_hate_speech_detection.sh │ │ │ └── data.Paddle │ │ │ └── their_models │ │ │ └── sentiment │ │ │ ├── chnsenticorp.sh.not_appropriate │ │ │ ├── dureader_yesno.out │ │ │ ├── dureader_yesno.sh │ │ │ ├── imdb.out │ │ │ └── imdb.sh │ └── model.PaddleHub │ │ └── language │ │ ├── KGC │ │ ├── WN18RR.out │ │ └── WN18RR.sh │ │ ├── VAD │ │ ├── VAD.out │ │ ├── VAD.sh │ │ └── simple │ │ │ ├── 1000k.out │ │ │ ├── 1000k.sh │ │ │ ├── 100k.out │ │ │ ├── 100k.sh │ │ │ ├── 10k.out │ │ │ └── 10k.sh │ │ ├── data.HuggingFace │ │ ├── case_restoration │ │ │ ├── case_restoration.ag_news.sh.to_be_done │ │ │ ├── case_restoration.imdb.sh.to_be_done │ │ │ └── case_restoration.yelp_review_full.sh.to_be_done │ │ ├── conll2003 │ │ │ ├── chunk.out │ │ │ ├── chunk.sh │ │ │ ├── ner.out │ │ │ ├── ner.sh │ │ │ ├── pos.out │ │ │ └── pos.sh │ │ ├── glue │ │ │ ├── README.md │ │ │ ├── cola.out │ │ │ ├── cola.sh │ │ │ ├── mnli_matched.out │ │ │ ├── mnli_matched.sh │ │ │ ├── mnli_mismatched.out │ │ │ ├── mnli_mismatched.sh │ │ │ ├── mrpc.out │ │ │ ├── mrpc.sh │ │ │ ├── qnli.out │ │ │ ├── qnli.sh │ │ │ ├── qqp.out │ │ │ ├── qqp.sh │ │ │ ├── rte.out │ │ │ ├── rte.sh │ │ │ ├── sst2.out │ │ │ ├── sst2.sh │ │ │ ├── stsb.out │ │ │ └── stsb.sh │ │ ├── paraphrase │ │ │ ├── paws_labeled_final.sh.to_be_done │ │ │ ├── paws_labeled_swap.sh.to_be_done │ │ │ └── paws_unlabeled_final.sh.to_be_done │ │ ├── question_answering │ │ │ ├── squad.out │ │ │ ├── squad.sh │ │ │ └── squad_v2.sh.to_be_done │ │ ├── sentiment │ │ │ ├── amazon_polarity.sh.to_be_done │ │ │ ├── amazon_reviews_multi.sh.to_be_done │ │ │ ├── ethos.sh.to_be_done │ │ │ ├── imdb.sh.to_be_done │ │ │ ├── poem_sentiment.sh.to_be_done │ │ │ ├── senti_lex │ │ │ │ ├── de.sh.to_be_done │ │ │ │ ├── es.sh.to_be_done │ │ │ │ └── fr.sh.to_be_done │ │ │ ├── sst.sh.to_be_done │ │ │ └── yelp_review_full.sh.to_be_done │ │ └── text_classification │ │ │ ├── ag_news.sh.to_be_done │ │ │ ├── banking77.sh.to_be_done │ │ │ ├── emotion.sh.to_be_done │ │ │ ├── onestop_english.sh.to_be_done │ │ │ ├── snli.sh.to_be_done │ │ │ ├── tweet_eval │ │ │ ├── tweet_eval_emoji.out │ │ │ ├── tweet_eval_emoji.sh │ │ │ ├── tweet_eval_emotion.out │ │ │ ├── tweet_eval_emotion.sh │ │ │ ├── tweet_eval_hate.out │ │ │ ├── tweet_eval_hate.sh │ │ │ ├── tweet_eval_irony.out │ │ │ ├── tweet_eval_irony.sh │ │ │ ├── tweet_eval_offensive.out │ │ │ ├── tweet_eval_offensive.sh │ │ │ ├── tweet_eval_sentiment.out │ │ │ ├── tweet_eval_sentiment.sh │ │ │ ├── tweet_eval_stance_abortion.out │ │ │ ├── tweet_eval_stance_abortion.sh │ │ │ ├── tweet_eval_stance_atheism.out │ │ │ ├── tweet_eval_stance_atheism.sh │ │ │ ├── tweet_eval_stance_climate.out │ │ │ ├── tweet_eval_stance_climate.sh │ │ │ ├── tweet_eval_stance_feminist.out │ │ │ ├── tweet_eval_stance_feminist.sh │ │ │ ├── tweet_eval_stance_hillary.out │ │ │ └── tweet_eval_stance_hillary.sh │ │ │ └── tweets_hate_speech_detection.sh.to_be_done │ │ ├── data.PaddleHub │ │ ├── glue │ │ │ ├── cola.sh.obsolete │ │ │ ├── mnli_matched.sh.obsolete │ │ │ ├── mnli_mismatched.sh.obsolete │ │ │ ├── mrpc.sh.obsolete │ │ │ ├── qnli.sh.obsolete │ │ │ ├── qqp.sh.obsolete │ │ │ ├── rte.sh.obsolete │ │ │ ├── sst2.sh.obsolete │ │ │ └── stsb.sh.obsolete │ │ ├── our_models │ │ │ └── glue │ │ │ │ ├── cola.out │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.out │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.out │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.out │ │ │ │ ├── mrpc.sh │ │ │ │ ├── qnli.out │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.out │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.out │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.out │ │ │ │ ├── sst2.sh │ │ │ │ ├── stsb.out │ │ │ │ └── stsb.sh │ │ ├── question_answering │ │ │ ├── squad.out │ │ │ ├── squad.sh │ │ │ ├── squad_v2.out │ │ │ └── squad_v2.sh │ │ ├── sentiment │ │ │ └── chnsenticorp │ │ │ │ ├── README.md │ │ │ │ ├── ernie-1.0.out │ │ │ │ ├── ernie-1.0.sh │ │ │ │ ├── ernie-2.0-en-finetuned-squad.out │ │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ │ ├── ernie-2.0-en.out │ │ │ │ ├── ernie-2.0-en.sh │ │ │ │ ├── ernie-2.0-large-en.out │ │ │ │ ├── ernie-2.0-large-en.sh │ │ │ │ ├── ernie-gram-zh.out │ │ │ │ ├── ernie-gram-zh.sh │ │ │ │ ├── ernie-tiny.out │ │ │ │ ├── ernie-tiny.sh │ │ │ │ ├── skep_ernie_1.0_large_ch.out │ │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ │ ├── skep_ernie_2.0_large_en.out │ │ │ │ └── skep_ernie_2.0_large_en.sh │ │ └── text_similarity │ │ │ ├── bq_corpus │ │ │ ├── ernie-1.0.out │ │ │ ├── ernie-1.0.sh │ │ │ ├── ernie-2.0-en-finetuned-squad.out │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ ├── ernie-2.0-en.out │ │ │ ├── ernie-2.0-en.sh │ │ │ ├── ernie-2.0-large-en.out │ │ │ ├── ernie-2.0-large-en.sh │ │ │ ├── ernie-doc-base-en.out │ │ │ ├── ernie-doc-base-en.sh │ │ │ ├── ernie-doc-base-zh.out │ │ │ ├── ernie-doc-base-zh.sh │ │ │ ├── ernie-gen-base-en.out │ │ │ ├── ernie-gen-base-en.sh │ │ │ ├── ernie-gen-large-en-430g.out │ │ │ ├── ernie-gen-large-en-430g.sh │ │ │ ├── ernie-gen-large-en.out │ │ │ ├── ernie-gen-large-en.sh │ │ │ ├── ernie-gram-zh.out │ │ │ ├── ernie-gram-zh.sh │ │ │ ├── ernie-tiny.out │ │ │ ├── ernie-tiny.sh │ │ │ ├── skep_ernie_1.0_large_ch.out │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ ├── skep_ernie_2.0_large_en.out │ │ │ └── skep_ernie_2.0_large_en.sh │ │ │ ├── lcqmc │ │ │ ├── ernie-1.0.out │ │ │ ├── ernie-1.0.sh │ │ │ ├── ernie-2.0-en-finetuned-squad.out │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ ├── ernie-2.0-en.out │ │ │ ├── ernie-2.0-en.sh │ │ │ ├── ernie-2.0-large-en.out │ │ │ ├── ernie-2.0-large-en.sh │ │ │ ├── ernie-doc-base-en.out │ │ │ ├── ernie-doc-base-en.sh │ │ │ ├── ernie-doc-base-zh.out │ │ │ ├── ernie-doc-base-zh.sh │ │ │ ├── ernie-gen-base-en.out │ │ │ ├── ernie-gen-base-en.sh │ │ │ ├── ernie-gen-large-en-430g.out │ │ │ ├── ernie-gen-large-en-430g.sh │ │ │ ├── ernie-gen-large-en.out │ │ │ ├── ernie-gen-large-en.sh │ │ │ ├── ernie-gram-zh.out │ │ │ ├── ernie-gram-zh.sh │ │ │ ├── ernie-tiny.out │ │ │ ├── ernie-tiny.sh │ │ │ ├── skep_ernie_1.0_large_ch.out │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ ├── skep_ernie_2.0_large_en.out │ │ │ └── skep_ernie_2.0_large_en.sh │ │ │ └── paws-x │ │ │ ├── ernie-1.0.out │ │ │ ├── ernie-1.0.sh │ │ │ ├── ernie-2.0-en-finetuned-squad.out │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ ├── ernie-2.0-en.out │ │ │ ├── ernie-2.0-en.sh │ │ │ ├── ernie-2.0-large-en.out │ │ │ ├── ernie-2.0-large-en.sh │ │ │ ├── ernie-doc-base-en.out │ │ │ ├── ernie-doc-base-en.sh │ │ │ ├── ernie-doc-base-zh.out │ │ │ ├── ernie-doc-base-zh.sh │ │ │ ├── ernie-gen-base-en.out │ │ │ ├── ernie-gen-base-en.sh │ │ │ ├── ernie-gen-large-en-430g.out │ │ │ ├── ernie-gen-large-en-430g.sh │ │ │ ├── ernie-gen-large-en.out │ │ │ ├── ernie-gen-large-en.sh │ │ │ ├── ernie-gram-zh.out │ │ │ ├── ernie-gram-zh.sh │ │ │ ├── ernie-tiny.out │ │ │ ├── ernie-tiny.sh │ │ │ ├── skep_ernie_1.0_large_ch.out │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ ├── skep_ernie_2.0_large_en.out │ │ │ └── skep_ernie_2.0_large_en.sh │ │ └── syn_ant │ │ ├── adj.32.out │ │ ├── adj.32.sh │ │ ├── adj.64.out │ │ ├── adj.64.sh │ │ ├── fallows.32.out │ │ ├── fallows.32.sh │ │ ├── fallows.64.out │ │ ├── fallows.64.sh │ │ ├── noun.32.out │ │ ├── noun.32.sh │ │ ├── noun.64.out │ │ ├── noun.64.sh │ │ ├── verb.32.out │ │ ├── verb.32.sh │ │ ├── verb.64.out │ │ └── verb.64.sh ├── fit_examples │ ├── README.md │ ├── model.HuggingFace │ │ ├── language │ │ │ ├── KGC │ │ │ │ └── WN18RR.sh │ │ │ ├── VAD │ │ │ │ ├── VAD.sh │ │ │ │ └── simple │ │ │ │ │ ├── 1000k.sh │ │ │ │ │ ├── 100k.sh │ │ │ │ │ └── 10k.sh │ │ │ ├── data.HuggingFace │ │ │ │ ├── case_restoration │ │ │ │ │ ├── case_restoration.ag_news.sh │ │ │ │ │ ├── case_restoration.imdb.sh │ │ │ │ │ └── case_restoration.yelp_review_full.sh │ │ │ │ ├── conll2003 │ │ │ │ │ ├── chunk.sh │ │ │ │ │ ├── ner.sh │ │ │ │ │ └── pos.sh │ │ │ │ ├── glue │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ ├── hyper │ │ │ │ │ ├── bert-base-cased │ │ │ │ │ │ ├── glue.lr.1.batch.128 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.256 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.512 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.128 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.256 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ └── glue.lr.2.batch.512 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ ├── distilbert-base-uncased │ │ │ │ │ │ ├── glue.lr.1.batch.128 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.256 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.512 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.128 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.256 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ └── glue.lr.2.batch.512 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ ├── roberta-base │ │ │ │ │ │ ├── glue.lr.1.batch.128 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.256 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.512 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.128 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.256 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ └── glue.lr.2.batch.512 │ │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ └── roberta-large │ │ │ │ │ │ ├── glue.lr.1.batch.128 │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── params │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.256 │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── params │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.1.batch.512 │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── params │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.128 │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── params │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ ├── glue.lr.2.batch.256 │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── params │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ │ └── glue.lr.2.batch.512 │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── params │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ ├── paraphrase │ │ │ │ │ ├── paws_labeled_final.sh │ │ │ │ │ ├── paws_labeled_swap.sh │ │ │ │ │ └── paws_unlabeled_final.sh │ │ │ │ ├── question_answering │ │ │ │ │ ├── squad.out │ │ │ │ │ ├── squad.sh │ │ │ │ │ └── squad_v2.sh │ │ │ │ ├── sentiment │ │ │ │ │ ├── amazon_polarity.sh │ │ │ │ │ ├── amazon_reviews_multi.sh │ │ │ │ │ ├── ethos.sh │ │ │ │ │ ├── imdb.sh │ │ │ │ │ ├── poem_sentiment.sh │ │ │ │ │ ├── senti_lex │ │ │ │ │ │ ├── de.sh │ │ │ │ │ │ ├── es.sh │ │ │ │ │ │ └── fr.sh │ │ │ │ │ ├── setfit_amazon_polarity.sh │ │ │ │ │ ├── setfit_yelp_review_full.sh │ │ │ │ │ ├── sst.sh │ │ │ │ │ └── yelp_review_full.sh │ │ │ │ └── text_classification │ │ │ │ │ ├── ag_news.sh │ │ │ │ │ ├── banking77.sh │ │ │ │ │ ├── emotion.sh │ │ │ │ │ ├── onestop_english.sh │ │ │ │ │ ├── snli.sh │ │ │ │ │ ├── tweet_eval │ │ │ │ │ ├── tweet_eval_emoji.sh │ │ │ │ │ ├── tweet_eval_emotion.sh │ │ │ │ │ ├── tweet_eval_hate.sh │ │ │ │ │ ├── tweet_eval_irony.sh │ │ │ │ │ ├── tweet_eval_offsensive.sh │ │ │ │ │ ├── tweet_eval_sentiment.sh │ │ │ │ │ ├── tweet_eval_stance_abortion.sh │ │ │ │ │ ├── tweet_eval_stance_atheism.sh │ │ │ │ │ ├── tweet_eval_stance_climate.sh │ │ │ │ │ ├── tweet_eval_stance_feminist.sh │ │ │ │ │ └── tweet_eval_stance_hillary.sh │ │ │ │ │ └── tweets_hate_speech_detection.sh │ │ │ ├── data.PaddleHub │ │ │ │ ├── glue │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ └── question_answering │ │ │ │ │ ├── squad.sh │ │ │ │ │ └── squad_v2.sh │ │ │ └── syn_ant │ │ │ │ ├── adj.16.sh │ │ │ │ ├── adj.32.sh │ │ │ │ ├── adj.64.sh │ │ │ │ ├── adj_classic.sh │ │ │ │ ├── fallows.16.sh │ │ │ │ ├── fallows.32.sh │ │ │ │ ├── fallows.64.sh │ │ │ │ ├── fallows_classic.sh │ │ │ │ ├── noun.16.sh │ │ │ │ ├── noun.32.sh │ │ │ │ ├── noun.64.sh │ │ │ │ ├── noun_classic.sh │ │ │ │ ├── verb.16.sh │ │ │ │ ├── verb.32.sh │ │ │ │ ├── verb.64.sh │ │ │ │ └── verb_classic.sh │ │ └── speech │ │ │ └── data.HuggingFace │ │ │ ├── ASR │ │ │ ├── librispeech.sh │ │ │ └── timit.sh │ │ │ └── not_to_share │ │ │ ├── foo.sh │ │ │ ├── librispeech_wav2vec2.sh.do_not_run │ │ │ ├── output │ │ │ └── wav2vec2-base.timit_asr.32 │ │ │ │ ├── README.md │ │ │ │ ├── added_tokens.json │ │ │ │ ├── all_results.json │ │ │ │ ├── config.json │ │ │ │ ├── eval_results.json │ │ │ │ ├── preprocessor_config.json │ │ │ │ ├── runs │ │ │ │ └── Jan24_17-52-51_asimov-133.svail.baidu.com │ │ │ │ │ ├── 1643075656.2865844 │ │ │ │ │ └── events.out.tfevents.1643075656.asimov-133.svail.baidu.com.949856.1 │ │ │ │ │ ├── events.out.tfevents.1643075656.asimov-133.svail.baidu.com.949856.0 │ │ │ │ │ └── events.out.tfevents.1643085184.asimov-133.svail.baidu.com.949856.2 │ │ │ │ ├── special_tokens_map.json │ │ │ │ ├── tokenizer_config.json │ │ │ │ ├── train_results.json │ │ │ │ ├── trainer_state.json │ │ │ │ └── training_args.bin │ │ │ └── timit_wav2vec2.sh.do_not_run │ └── model.PaddleHub │ │ └── language │ │ ├── KGC │ │ └── WN18RR.sh │ │ ├── VAD │ │ ├── VAD.sh │ │ └── simple │ │ │ ├── 1000k.sh │ │ │ ├── 100k.sh │ │ │ └── 10k.sh │ │ ├── data.HuggingFace │ │ ├── case_restoration │ │ │ ├── case_restoration.ag_news.sh │ │ │ ├── case_restoration.imdb.sh │ │ │ └── case_restoration.yelp_review_full.sh │ │ ├── conll2003 │ │ │ ├── chunk.sh │ │ │ ├── ner.sh │ │ │ └── pos.sh │ │ ├── glue │ │ │ ├── cola.sh │ │ │ ├── mnli_matched.sh │ │ │ ├── mnli_mismatched.sh │ │ │ ├── mrpc.sh │ │ │ ├── qnli.sh │ │ │ ├── qqp.sh │ │ │ ├── rte.sh │ │ │ ├── sst2.sh │ │ │ └── stsb.sh │ │ ├── paraphrase │ │ │ ├── paws_labeled_final.sh │ │ │ ├── paws_labeled_swap.sh │ │ │ └── paws_unlabeled_final.sh │ │ ├── question_answering │ │ │ ├── squad.sh │ │ │ └── squad_v2.sh │ │ ├── sentiment │ │ │ ├── amazon_polarity.sh │ │ │ ├── amazon_reviews_multi.sh │ │ │ ├── ethos.sh │ │ │ ├── imdb.sh │ │ │ ├── poem_sentiment.sh │ │ │ ├── senti_lex │ │ │ │ ├── de.sh │ │ │ │ ├── es.sh │ │ │ │ └── fr.sh │ │ │ ├── sst.sh │ │ │ └── yelp_review_full.sh │ │ └── text_classification │ │ │ ├── ag_news.sh │ │ │ ├── banking77.sh │ │ │ ├── emotion.sh │ │ │ ├── onestop_english.sh │ │ │ ├── snli.sh │ │ │ ├── tweet_eval │ │ │ ├── tweet_eval_emoji.sh │ │ │ ├── tweet_eval_emotion.sh │ │ │ ├── tweet_eval_hate.sh │ │ │ ├── tweet_eval_irony.sh │ │ │ ├── tweet_eval_offensive.sh │ │ │ ├── tweet_eval_sentiment.sh │ │ │ ├── tweet_eval_stance_abortion.sh │ │ │ ├── tweet_eval_stance_atheism.sh │ │ │ ├── tweet_eval_stance_climate.sh │ │ │ ├── tweet_eval_stance_feminist.sh │ │ │ └── tweet_eval_stance_hillary.sh │ │ │ └── tweets_hate_speech_detection.sh │ │ ├── data.PaddleHub │ │ ├── glue │ │ │ ├── ernie-2.0-en │ │ │ │ ├── cola.sh.obsolete │ │ │ │ ├── mnli_matched.sh.obsolete │ │ │ │ ├── mnli_mismatched.sh.obsolete │ │ │ │ ├── mrpc.sh.obsolete │ │ │ │ ├── qnli.sh.obsolete │ │ │ │ ├── qqp.sh.obsolete │ │ │ │ ├── rte.sh.obsolete │ │ │ │ ├── sst2.sh.obsolete │ │ │ │ └── stsb.sh.obsolete │ │ │ └── ernie-2.0-large-en │ │ │ │ ├── cola.sh.obsolete │ │ │ │ ├── mnli_matched.sh.obsolete │ │ │ │ ├── mnli_mismatched.sh.obsolete │ │ │ │ ├── mrpc.sh.obsolete │ │ │ │ ├── qnli.sh.obsolete │ │ │ │ ├── qqp.sh.obsolete │ │ │ │ ├── rte.sh.obsolete │ │ │ │ ├── sst2.sh.obsolete │ │ │ │ └── stsb.sh.obsolete │ │ ├── hyper │ │ │ ├── ernie-2.0-en │ │ │ │ ├── glue.lr.1.batch.128 │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── params │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.1.batch.256 │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── params │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.1.batch.512 │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── params │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.2.batch.128 │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── params │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.2.batch.256 │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── params │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ │ └── glue.lr.2.batch.512 │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── params │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ └── ernie-2.0-large-en │ │ │ │ ├── glue.lr.1.batch.128 │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.sh │ │ │ │ ├── params │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.sh │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.1.batch.256 │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.sh │ │ │ │ ├── params │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.sh │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.1.batch.512 │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.sh │ │ │ │ ├── params │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.sh │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.2.batch.128 │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.sh │ │ │ │ ├── params │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.sh │ │ │ │ └── stsb.sh │ │ │ │ ├── glue.lr.2.batch.256 │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.sh │ │ │ │ ├── params │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.sh │ │ │ │ └── stsb.sh │ │ │ │ └── glue.lr.2.batch.512 │ │ │ │ ├── cola.sh │ │ │ │ ├── mnli_matched.sh │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ ├── mrpc.sh │ │ │ │ ├── params │ │ │ │ ├── qnli.sh │ │ │ │ ├── qqp.sh │ │ │ │ ├── rte.sh │ │ │ │ ├── sst2.sh │ │ │ │ └── stsb.sh │ │ ├── hyperparameter.md │ │ ├── question_answering │ │ │ ├── squad.sh │ │ │ └── squad_v2.sh │ │ ├── sentiment │ │ │ └── chnsenticorp │ │ │ │ ├── ernie-1.0.sh │ │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ │ ├── ernie-2.0-en.sh │ │ │ │ ├── ernie-2.0-large-en.sh │ │ │ │ ├── ernie-gram-zh.sh │ │ │ │ ├── ernie-tiny.sh │ │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ │ └── skep_ernie_2.0_large_en.sh │ │ └── text_similarity │ │ │ ├── bq_corpus │ │ │ ├── ernie-1.0.sh │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ ├── ernie-2.0-en.sh │ │ │ ├── ernie-2.0-large-en.sh │ │ │ ├── ernie-doc-base-en.sh │ │ │ ├── ernie-doc-base-zh.sh │ │ │ ├── ernie-gen-base-en.sh │ │ │ ├── ernie-gen-large-en-430g.sh │ │ │ ├── ernie-gen-large-en.sh │ │ │ ├── ernie-gram-zh.sh │ │ │ ├── ernie-tiny.sh │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ └── skep_ernie_2.0_large_en.sh │ │ │ ├── lcqmc │ │ │ ├── ernie-1.0.sh │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ ├── ernie-2.0-en.sh │ │ │ ├── ernie-2.0-large-en.sh │ │ │ ├── ernie-doc-base-en.sh │ │ │ ├── ernie-doc-base-zh.sh │ │ │ ├── ernie-gen-base-en.sh │ │ │ ├── ernie-gen-large-en-430g.sh │ │ │ ├── ernie-gen-large-en.sh │ │ │ ├── ernie-gram-zh.sh │ │ │ ├── ernie-tiny.sh │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ └── skep_ernie_2.0_large_en.sh │ │ │ ├── paws-x │ │ │ ├── ernie-1.0.sh │ │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ │ ├── ernie-2.0-en.sh │ │ │ ├── ernie-2.0-large-en.sh │ │ │ ├── ernie-doc-base-en.sh │ │ │ ├── ernie-doc-base-zh.sh │ │ │ ├── ernie-gen-base-en.sh │ │ │ ├── ernie-gen-large-en-430g.sh │ │ │ ├── ernie-gen-large-en.sh │ │ │ ├── ernie-gram-zh.sh │ │ │ ├── ernie-tiny.sh │ │ │ ├── skep_ernie_1.0_large_ch.sh │ │ │ └── skep_ernie_2.0_large_en.sh │ │ │ ├── regression_test.out │ │ │ └── regression_test.py │ │ └── syn_ant │ │ ├── adj.32.sh │ │ ├── adj.64.sh │ │ ├── adj_classic.sh │ │ ├── fallows.32.sh │ │ ├── fallows.64.sh │ │ ├── fallows_classic.sh │ │ ├── noun.32.sh │ │ ├── noun.64.sh │ │ ├── noun_classic.sh │ │ ├── verb.32.sh │ │ ├── verb.64.sh │ │ └── verb_classic.sh ├── predict_examples │ ├── README.md │ ├── model.HuggingFace │ │ ├── language │ │ │ ├── KGC │ │ │ │ └── WN18RR.sh │ │ │ ├── VAD │ │ │ │ ├── VAD.sh │ │ │ │ └── simple │ │ │ │ │ ├── 1000k.sh │ │ │ │ │ ├── 100k.sh │ │ │ │ │ └── 10k.sh │ │ │ ├── data.HuggingFace │ │ │ │ ├── our_models │ │ │ │ │ ├── case_restoration │ │ │ │ │ │ ├── case_restoration.ag_news.sh │ │ │ │ │ │ ├── case_restoration.imdb.sh │ │ │ │ │ │ └── case_restoration.yelp_review_full.sh │ │ │ │ │ ├── conll2003 │ │ │ │ │ │ ├── chunk.sh │ │ │ │ │ │ ├── ner.sh │ │ │ │ │ │ └── pos.sh │ │ │ │ │ ├── glue │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ ├── paraphrase │ │ │ │ │ │ ├── paws_labeled_final.sh │ │ │ │ │ │ ├── paws_labeled_swap.sh │ │ │ │ │ │ └── paws_unlabeled_final.sh │ │ │ │ │ ├── question_answering │ │ │ │ │ │ ├── squad.sh │ │ │ │ │ │ └── squad_v2.sh │ │ │ │ │ ├── sentiment │ │ │ │ │ │ ├── amazon_reviews_multi.sh │ │ │ │ │ │ ├── ethos.sh │ │ │ │ │ │ ├── imdb.sh │ │ │ │ │ │ ├── poem_sentiment.sh │ │ │ │ │ │ ├── senti_lex │ │ │ │ │ │ │ ├── de.sh │ │ │ │ │ │ │ ├── es.sh │ │ │ │ │ │ │ └── fr.sh │ │ │ │ │ │ ├── setfit_amazon_polarity.sh │ │ │ │ │ │ ├── setfit_yelp_review_full.sh │ │ │ │ │ │ └── sst.sh │ │ │ │ │ └── text_classification │ │ │ │ │ │ ├── ag_news.sh │ │ │ │ │ │ ├── banking77.sh │ │ │ │ │ │ ├── emotion.sh │ │ │ │ │ │ ├── onestop_english.sh │ │ │ │ │ │ ├── snli.sh │ │ │ │ │ │ ├── tweet_eval │ │ │ │ │ │ ├── tweet_eval_emoji.sh │ │ │ │ │ │ ├── tweet_eval_emotion.sh │ │ │ │ │ │ ├── tweet_eval_hate.sh │ │ │ │ │ │ ├── tweet_eval_irony.sh │ │ │ │ │ │ ├── tweet_eval_offsensive.sh │ │ │ │ │ │ ├── tweet_eval_sentiment.sh │ │ │ │ │ │ ├── tweet_eval_stance_abortion.sh │ │ │ │ │ │ ├── tweet_eval_stance_atheism.sh │ │ │ │ │ │ ├── tweet_eval_stance_climate.sh │ │ │ │ │ │ ├── tweet_eval_stance_feminist.sh │ │ │ │ │ │ └── tweet_eval_stance_hillary.sh │ │ │ │ │ │ └── tweets_hate_speech_detection.sh │ │ │ │ ├── tasks │ │ │ │ │ ├── test_all_pipelines.out │ │ │ │ │ └── test_all_pipelines.py │ │ │ │ └── their_models │ │ │ │ │ ├── glue │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ ├── stsb.sh │ │ │ │ │ └── summary.txt │ │ │ │ │ ├── question_answering │ │ │ │ │ ├── squad │ │ │ │ │ │ ├── 100 │ │ │ │ │ │ ├── 101 │ │ │ │ │ │ ├── 102 │ │ │ │ │ │ ├── 103 │ │ │ │ │ │ ├── 104 │ │ │ │ │ │ ├── 105 │ │ │ │ │ │ ├── 106 │ │ │ │ │ │ ├── 107 │ │ │ │ │ │ ├── 108 │ │ │ │ │ │ ├── 109 │ │ │ │ │ │ ├── 110 │ │ │ │ │ │ ├── 111 │ │ │ │ │ │ ├── 112 │ │ │ │ │ │ ├── 113 │ │ │ │ │ │ ├── 114 │ │ │ │ │ │ ├── 115 │ │ │ │ │ │ ├── 116 │ │ │ │ │ │ ├── 117 │ │ │ │ │ │ ├── 118 │ │ │ │ │ │ ├── 119 │ │ │ │ │ │ ├── 120 │ │ │ │ │ │ ├── 121 │ │ │ │ │ │ ├── 122 │ │ │ │ │ │ ├── 123 │ │ │ │ │ │ ├── 124 │ │ │ │ │ │ ├── 125 │ │ │ │ │ │ ├── 126 │ │ │ │ │ │ ├── 127 │ │ │ │ │ │ ├── 128 │ │ │ │ │ │ ├── 129 │ │ │ │ │ │ ├── 130 │ │ │ │ │ │ ├── 131 │ │ │ │ │ │ ├── 132 │ │ │ │ │ │ ├── 133 │ │ │ │ │ │ ├── 134 │ │ │ │ │ │ ├── 135 │ │ │ │ │ │ ├── 136 │ │ │ │ │ │ ├── 137 │ │ │ │ │ │ ├── 138 │ │ │ │ │ │ ├── 139 │ │ │ │ │ │ ├── 001 │ │ │ │ │ │ ├── 002 │ │ │ │ │ │ ├── 003 │ │ │ │ │ │ ├── 004 │ │ │ │ │ │ ├── 005 │ │ │ │ │ │ ├── 006 │ │ │ │ │ │ ├── 007 │ │ │ │ │ │ ├── 008 │ │ │ │ │ │ ├── 009 │ │ │ │ │ │ ├── 010 │ │ │ │ │ │ ├── 011 │ │ │ │ │ │ ├── 012 │ │ │ │ │ │ ├── 013 │ │ │ │ │ │ ├── 014 │ │ │ │ │ │ ├── 015 │ │ │ │ │ │ ├── 016 │ │ │ │ │ │ ├── 017 │ │ │ │ │ │ ├── 018 │ │ │ │ │ │ ├── 019 │ │ │ │ │ │ ├── 020 │ │ │ │ │ │ ├── 021 │ │ │ │ │ │ ├── 022 │ │ │ │ │ │ ├── 023 │ │ │ │ │ │ ├── 024 │ │ │ │ │ │ ├── 025 │ │ │ │ │ │ ├── 026 │ │ │ │ │ │ ├── 027 │ │ │ │ │ │ ├── 028 │ │ │ │ │ │ ├── 029 │ │ │ │ │ │ ├── 030 │ │ │ │ │ │ ├── 031 │ │ │ │ │ │ ├── 032 │ │ │ │ │ │ ├── 033 │ │ │ │ │ │ ├── 034 │ │ │ │ │ │ ├── 035 │ │ │ │ │ │ ├── 036 │ │ │ │ │ │ ├── 037 │ │ │ │ │ │ ├── 038 │ │ │ │ │ │ ├── 039 │ │ │ │ │ │ ├── 040 │ │ │ │ │ │ ├── 041 │ │ │ │ │ │ ├── 042 │ │ │ │ │ │ ├── 043 │ │ │ │ │ │ ├── 044 │ │ │ │ │ │ ├── 045 │ │ │ │ │ │ ├── 046 │ │ │ │ │ │ ├── 047 │ │ │ │ │ │ ├── 048 │ │ │ │ │ │ ├── 049 │ │ │ │ │ │ ├── 050 │ │ │ │ │ │ ├── 051 │ │ │ │ │ │ ├── 052 │ │ │ │ │ │ ├── 053 │ │ │ │ │ │ ├── 054 │ │ │ │ │ │ ├── 055 │ │ │ │ │ │ ├── 056 │ │ │ │ │ │ ├── 057 │ │ │ │ │ │ ├── 058 │ │ │ │ │ │ ├── 059 │ │ │ │ │ │ ├── 060 │ │ │ │ │ │ ├── 061 │ │ │ │ │ │ ├── 062 │ │ │ │ │ │ ├── 063 │ │ │ │ │ │ ├── 064 │ │ │ │ │ │ ├── 065 │ │ │ │ │ │ ├── 066 │ │ │ │ │ │ ├── 067 │ │ │ │ │ │ ├── 068 │ │ │ │ │ │ ├── 069 │ │ │ │ │ │ ├── 070 │ │ │ │ │ │ ├── 071 │ │ │ │ │ │ ├── 072 │ │ │ │ │ │ ├── 073 │ │ │ │ │ │ ├── 074 │ │ │ │ │ │ ├── 075 │ │ │ │ │ │ ├── 076 │ │ │ │ │ │ ├── 077 │ │ │ │ │ │ ├── 078 │ │ │ │ │ │ ├── 079 │ │ │ │ │ │ ├── 080 │ │ │ │ │ │ ├── 081 │ │ │ │ │ │ ├── 082 │ │ │ │ │ │ ├── 083 │ │ │ │ │ │ ├── 084 │ │ │ │ │ │ ├── 085 │ │ │ │ │ │ ├── 086 │ │ │ │ │ │ ├── 087 │ │ │ │ │ │ ├── 088 │ │ │ │ │ │ ├── 089 │ │ │ │ │ │ ├── 090 │ │ │ │ │ │ ├── 091 │ │ │ │ │ │ ├── 092 │ │ │ │ │ │ ├── 093 │ │ │ │ │ │ ├── 094 │ │ │ │ │ │ ├── 095 │ │ │ │ │ │ ├── 096 │ │ │ │ │ │ ├── 097 │ │ │ │ │ │ ├── 098 │ │ │ │ │ │ ├── 099 │ │ │ │ │ │ ├── do_one │ │ │ │ │ │ └── loadable.txt │ │ │ │ │ └── squad_v2 │ │ │ │ │ │ ├── 001 │ │ │ │ │ │ ├── 002 │ │ │ │ │ │ ├── 003 │ │ │ │ │ │ ├── 004 │ │ │ │ │ │ ├── 005 │ │ │ │ │ │ ├── 006 │ │ │ │ │ │ ├── 007 │ │ │ │ │ │ ├── 008 │ │ │ │ │ │ ├── 009 │ │ │ │ │ │ ├── 010 │ │ │ │ │ │ ├── 011 │ │ │ │ │ │ ├── 012 │ │ │ │ │ │ ├── 013 │ │ │ │ │ │ ├── 014 │ │ │ │ │ │ ├── 015 │ │ │ │ │ │ ├── 016 │ │ │ │ │ │ ├── 017 │ │ │ │ │ │ ├── 018 │ │ │ │ │ │ ├── 019 │ │ │ │ │ │ ├── 020 │ │ │ │ │ │ ├── 021 │ │ │ │ │ │ ├── 022 │ │ │ │ │ │ ├── 023 │ │ │ │ │ │ ├── 024 │ │ │ │ │ │ ├── 025 │ │ │ │ │ │ ├── 026 │ │ │ │ │ │ ├── 027 │ │ │ │ │ │ ├── 028 │ │ │ │ │ │ ├── 029 │ │ │ │ │ │ ├── 030 │ │ │ │ │ │ ├── 031 │ │ │ │ │ │ ├── 032 │ │ │ │ │ │ ├── 033 │ │ │ │ │ │ ├── 034 │ │ │ │ │ │ ├── 035 │ │ │ │ │ │ ├── 036 │ │ │ │ │ │ ├── 037 │ │ │ │ │ │ ├── 038 │ │ │ │ │ │ ├── 039 │ │ │ │ │ │ ├── 040 │ │ │ │ │ │ ├── 041 │ │ │ │ │ │ ├── 042 │ │ │ │ │ │ ├── 043 │ │ │ │ │ │ ├── 044 │ │ │ │ │ │ ├── 045 │ │ │ │ │ │ ├── 046 │ │ │ │ │ │ ├── 047 │ │ │ │ │ │ ├── 048 │ │ │ │ │ │ ├── 049 │ │ │ │ │ │ ├── 050 │ │ │ │ │ │ ├── do_one │ │ │ │ │ │ └── loadable.txt │ │ │ │ │ ├── sentiment │ │ │ │ │ ├── amazon_reviews_multi.sh │ │ │ │ │ ├── ethos.sh │ │ │ │ │ ├── imdb.sh │ │ │ │ │ ├── poem_sentiment.sh.to_be_done │ │ │ │ │ ├── setfit_amazon_polarity.sh.to_be_done │ │ │ │ │ ├── setfit_yelp_review_full.sh.to_be_done │ │ │ │ │ └── sst.sh │ │ │ │ │ └── text_classification │ │ │ │ │ └── banking77.sh │ │ │ ├── data.PaddleHub │ │ │ │ ├── our_models │ │ │ │ │ ├── glue │ │ │ │ │ │ ├── cola.sh │ │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ │ ├── qnli.sh │ │ │ │ │ │ ├── qqp.sh │ │ │ │ │ │ ├── rte.sh │ │ │ │ │ │ ├── sst2.sh │ │ │ │ │ │ └── stsb.sh │ │ │ │ │ └── question_answering │ │ │ │ │ │ ├── squad.sh │ │ │ │ │ │ └── squad_v2.sh │ │ │ │ └── their_models │ │ │ │ │ └── glue │ │ │ │ │ ├── cola.sh │ │ │ │ │ ├── mnli_matched.sh │ │ │ │ │ ├── mnli_mismatched.sh │ │ │ │ │ ├── mrpc.sh │ │ │ │ │ ├── qnli.sh │ │ │ │ │ ├── qqp.sh │ │ │ │ │ ├── rte.sh │ │ │ │ │ ├── sst2.sh │ │ │ │ │ └── stsb.sh │ │ │ └── syn_ant │ │ │ │ ├── adj.16.sh │ │ │ │ ├── adj.32.sh │ │ │ │ ├── adj.64.sh │ │ │ │ ├── fallows.16.sh │ │ │ │ ├── fallows.32.sh │ │ │ │ ├── fallows.64.sh │ │ │ │ ├── noun.16.sh │ │ │ │ ├── noun.32.sh │ │ │ │ ├── noun.64.sh │ │ │ │ ├── verb.16.sh │ │ │ │ ├── verb.32.sh │ │ │ │ └── verb.64.sh │ │ └── speech │ │ │ └── HuggingFace │ │ │ └── ASR │ │ │ ├── librispeech.sh │ │ │ └── timit.sh │ └── model.PaddleHub │ │ └── language │ │ ├── KGC │ │ └── WN18RR.sh │ │ ├── VAD │ │ ├── VAD.sh │ │ └── simple │ │ │ ├── 1000k.sh │ │ │ ├── 100k.sh │ │ │ └── 10k.sh │ │ ├── data.HuggingFace │ │ ├── case_restoration │ │ │ ├── case_restoration.ag_news.sh │ │ │ ├── case_restoration.imdb.sh │ │ │ └── case_restoration.yelp_review_full.sh │ │ ├── conll2003 │ │ │ ├── chunk.sh │ │ │ ├── ner.sh │ │ │ └── pos.sh │ │ ├── glue │ │ │ ├── cola.sh │ │ │ ├── mnli_matched.sh │ │ │ ├── mnli_mismatched.sh │ │ │ ├── mrpc.sh │ │ │ ├── qnli.sh │ │ │ ├── qqp.sh │ │ │ ├── rte.sh │ │ │ ├── sst2.sh │ │ │ └── stsb.sh │ │ ├── paraphrase │ │ │ ├── paws_labeled_final.sh │ │ │ ├── paws_labeled_swap.sh │ │ │ └── paws_unlabeled_final.sh │ │ ├── question_answering │ │ │ ├── squad.sh │ │ │ └── squad_v2.sh │ │ ├── sentiment │ │ │ ├── amazon_polarity.sh │ │ │ ├── amazon_reviews_multi.sh │ │ │ ├── ethos.sh │ │ │ ├── imdb.sh │ │ │ ├── poem_sentiment.sh │ │ │ ├── senti_lex │ │ │ │ ├── de.sh │ │ │ │ ├── es.sh │ │ │ │ └── fr.sh │ │ │ ├── sst.sh │ │ │ └── yelp_review_full.sh │ │ └── text_classification │ │ │ ├── ag_news.sh │ │ │ ├── banking77.sh │ │ │ ├── emotion.sh │ │ │ ├── onestop_english.sh │ │ │ ├── snli.sh │ │ │ ├── tweet_eval │ │ │ ├── tweet_eval_emoji.sh │ │ │ ├── tweet_eval_emotion.sh │ │ │ ├── tweet_eval_hate.sh │ │ │ ├── tweet_eval_irony.sh │ │ │ ├── tweet_eval_sentiment.sh │ │ │ ├── tweet_eval_stance_abortion.sh │ │ │ ├── tweet_eval_stance_atheism.sh │ │ │ ├── tweet_eval_stance_climate.sh │ │ │ ├── tweet_eval_stance_feminist.sh │ │ │ └── tweet_eval_stance_hillary.sh │ │ │ └── tweets_hate_speech_detection.sh │ │ ├── data.PaddleHub │ │ ├── glue │ │ │ ├── cola.sh │ │ │ ├── mnli_matched.sh │ │ │ ├── mnli_mismatched.sh │ │ │ ├── mrpc.sh │ │ │ ├── qnli.sh │ │ │ ├── qqp.sh │ │ │ ├── rte.sh │ │ │ ├── sst2.sh │ │ │ └── stsb.sh │ │ └── question_answering │ │ │ ├── squad.sh │ │ │ └── squad_v2.sh │ │ └── syn_ant │ │ ├── adj.32.sh │ │ ├── adj.64.sh │ │ ├── fallows.32.sh │ │ ├── fallows.64.sh │ │ ├── noun.32.sh │ │ ├── noun.64.sh │ │ ├── verb.32.sh │ │ └── verb.64.sh └── summary_examples │ ├── KNOWN_ISSUES.md │ ├── README.md │ ├── data │ ├── data.HuggingFace │ │ ├── adversarial_qa.out │ │ ├── adversarial_qa.sh │ │ ├── ag_news.out │ │ ├── ag_news.sh │ │ ├── amazon_polarity.out │ │ ├── amazon_polarity.sh │ │ ├── amazon_reviews_multi.out │ │ ├── amazon_reviews_multi.sh │ │ ├── americas_nli.out │ │ ├── americas_nli.sh │ │ ├── anli.out │ │ ├── anli.sh │ │ ├── banking77.out │ │ ├── banking77.sh │ │ ├── blimp.out │ │ ├── blimp.sh │ │ ├── c4.sh.to_be_done │ │ ├── cfq.out │ │ ├── cfq.sh │ │ ├── cnn_dailymail.out │ │ ├── cnn_dailymail.sh │ │ ├── code_search_net.out │ │ ├── code_search_net.sh │ │ ├── common_voice.out │ │ ├── common_voice.sh │ │ ├── conll2003.out │ │ ├── conll2003.sh │ │ ├── cosmos_qa.out │ │ ├── cosmos_qa.sh │ │ ├── daily_dialog.out │ │ ├── daily_dialog.sh │ │ ├── data.txt │ │ ├── emotion.out │ │ ├── emotion.sh │ │ ├── glue.out │ │ ├── glue.sh │ │ ├── hans.out │ │ ├── hans.sh │ │ ├── hellaswag.out │ │ ├── hellaswag.sh │ │ ├── imdb.out │ │ ├── imdb.sh │ │ ├── klue.out │ │ ├── klue.sh │ │ ├── librispeech_asr.out │ │ ├── librispeech_asr.sh │ │ ├── mc4.sh.to_be_done │ │ ├── oscar.sh.to_be_done │ │ ├── paws.out │ │ ├── paws.sh │ │ ├── piqa.out │ │ ├── piqa.sh │ │ ├── race.out │ │ ├── race.sh │ │ ├── red_caps.out │ │ ├── red_caps.sh │ │ ├── rotten_tomatoes.out │ │ ├── rotten_tomatoes.sh │ │ ├── samsum.out │ │ ├── samsum.sh │ │ ├── schema_guided_dstc8.out │ │ ├── schema_guided_dstc8.sh │ │ ├── snli.out │ │ ├── snli.sh │ │ ├── squad.out │ │ ├── squad.sh │ │ ├── squad_v2.out │ │ ├── squad_v2.sh │ │ ├── stsb_multi_mt.out │ │ ├── stsb_multi_mt.sh │ │ ├── super_glue.out │ │ ├── super_glue.sh │ │ ├── tab_fact.out │ │ ├── tab_fact.sh │ │ ├── top10.out │ │ ├── top10.sh │ │ ├── top50 │ │ │ ├── adversarial_qa.out │ │ │ ├── adversarial_qa.sh │ │ │ ├── ag_news.out │ │ │ ├── ag_news.sh │ │ │ ├── ai2_arc.out │ │ │ ├── ai2_arc.sh │ │ │ ├── amazon_polarity.out │ │ │ ├── amazon_polarity.sh │ │ │ ├── amazon_reviews_multi.out │ │ │ ├── amazon_reviews_multi.sh │ │ │ ├── americas_nli.out │ │ │ ├── americas_nli.sh │ │ │ ├── anli.out │ │ │ ├── anli.sh │ │ │ ├── blimp.out │ │ │ ├── blimp.sh │ │ │ ├── cnn_dailymail.out │ │ │ ├── cnn_dailymail.sh │ │ │ ├── common_voice.out │ │ │ ├── common_voice.sh │ │ │ ├── conll2003.out │ │ │ ├── conll2003.sh │ │ │ ├── cosmos_qa.out │ │ │ ├── cosmos_qa.sh │ │ │ ├── duorc.out │ │ │ ├── duorc.sh │ │ │ ├── emotion.out │ │ │ ├── emotion.sh │ │ │ ├── glue.out │ │ │ ├── glue.sh │ │ │ ├── hellaswag.out │ │ │ ├── hellaswag.sh │ │ │ ├── imdb.out │ │ │ ├── imdb.sh │ │ │ ├── kilt_tasks.out │ │ │ ├── kilt_tasks.sh │ │ │ ├── librispeech_asr.out │ │ │ ├── librispeech_asr.sh │ │ │ ├── mc4.out │ │ │ ├── mc4.sh │ │ │ ├── mlsum.out │ │ │ ├── mlsum.sh │ │ │ ├── paws.out │ │ │ ├── paws.sh │ │ │ ├── piqa.out │ │ │ ├── piqa.sh │ │ │ ├── quoref.out │ │ │ ├── quoref.sh │ │ │ ├── race.out │ │ │ ├── race.sh │ │ │ ├── red_caps.out │ │ │ ├── red_caps.sh │ │ │ ├── rotten_tomatoes.out │ │ │ ├── rotten_tomatoes.sh │ │ │ ├── samsum.out │ │ │ ├── samsum.sh │ │ │ ├── scan.out │ │ │ ├── scan.sh │ │ │ ├── sick.out │ │ │ ├── sick.sh │ │ │ ├── snli.out │ │ │ ├── snli.sh │ │ │ ├── social_i_qa.out │ │ │ ├── social_i_qa.sh │ │ │ ├── squad.out │ │ │ ├── squad.sh │ │ │ ├── squad_es.out │ │ │ ├── squad_es.sh │ │ │ ├── squad_v2.out │ │ │ ├── squad_v2.sh │ │ │ ├── stsb_multi_mt.out │ │ │ ├── stsb_multi_mt.sh │ │ │ ├── super_glue.out │ │ │ ├── super_glue.sh │ │ │ ├── trec.out │ │ │ ├── trec.sh │ │ │ ├── tweet_eval.out │ │ │ ├── tweet_eval.sh │ │ │ ├── wiki_snippets.out │ │ │ ├── wiki_snippets.sh │ │ │ ├── wikiann.out │ │ │ ├── wikiann.sh │ │ │ ├── wikipedia.sh.to_be_done │ │ │ ├── wikitext.out │ │ │ ├── wikitext.sh │ │ │ ├── wino_bias.out │ │ │ ├── wino_bias.sh │ │ │ ├── winogrande.out │ │ │ ├── winogrande.sh │ │ │ ├── wmt16.out │ │ │ ├── wmt16.sh │ │ │ ├── xnli.out │ │ │ ├── xnli.sh │ │ │ ├── xsum.out │ │ │ ├── xsum.sh │ │ │ ├── yelp_polarity.out │ │ │ ├── yelp_polarity.sh │ │ │ ├── yelp_review_full.out │ │ │ └── yelp_review_full.sh │ │ ├── trec.out │ │ ├── trec.sh │ │ ├── tweet_eval.out │ │ ├── tweet_eval.sh │ │ ├── tweets_hate_speech_detection.out │ │ ├── tweets_hate_speech_detection.sh │ │ ├── universal_dependencies.out │ │ ├── universal_dependencies.sh │ │ ├── wikiann.out │ │ ├── wikiann.sh │ │ ├── wikitext.out │ │ ├── wikitext.sh │ │ ├── wino_bias.out │ │ ├── wino_bias.sh │ │ ├── winogrande.out │ │ ├── winogrande.sh │ │ ├── wmt16.out │ │ ├── wmt16.sh │ │ ├── xnli.out │ │ ├── xnli.sh │ │ ├── xsum.out │ │ ├── xsum.sh │ │ ├── xtreme.out │ │ └── xtreme.sh │ └── data.Paddle │ │ ├── advertisegen.out │ │ ├── advertisegen.sh │ │ ├── bq_corpus.out │ │ ├── bq_corpus.sh │ │ ├── bstc.sh.not_working │ │ ├── c3.out │ │ ├── c3.sh │ │ ├── cail2019_scm.out │ │ ├── cail2019_scm.sh │ │ ├── chnsenticorp.out │ │ ├── chnsenticorp.sh │ │ ├── clue.out │ │ ├── clue.sh │ │ ├── cmrc2018.out │ │ ├── cmrc2018.sh │ │ ├── cnn_dailymail.sh.do_not_attempt_to_run_this │ │ ├── conll2002.out │ │ ├── conll2002.sh │ │ ├── cote.out │ │ ├── cote.sh │ │ ├── couplet.out │ │ ├── couplet.sh │ │ ├── drcd.out │ │ ├── drcd.sh │ │ ├── duconv.out │ │ ├── duconv.sh │ │ ├── dureader_checklist.out │ │ ├── dureader_checklist.sh │ │ ├── dureader_qg.out │ │ ├── dureader_qg.sh │ │ ├── dureader_robust.out │ │ ├── dureader_robust.sh │ │ ├── dureader_yesno.out │ │ ├── dureader_yesno.sh │ │ ├── fewclue.out │ │ ├── fewclue.sh │ │ ├── glue.out │ │ ├── glue.sh │ │ ├── hyp.out │ │ ├── hyp.sh │ │ ├── imdb.out │ │ ├── imdb.sh │ │ ├── iwslt15.out │ │ ├── iwslt15.sh │ │ ├── lcqmc.out │ │ ├── lcqmc.sh │ │ ├── lcsts_new.out │ │ ├── lcsts_new.sh │ │ ├── msra_ner.out │ │ ├── msra_ner.sh │ │ ├── nlpcc13_evsam05_hit.out │ │ ├── nlpcc13_evsam05_hit.sh │ │ ├── nlpcc13_evsam05_thu.out │ │ ├── nlpcc13_evsam05_thu.sh │ │ ├── nlpcc14_sc.out │ │ ├── nlpcc14_sc.sh │ │ ├── paws-x.out │ │ ├── paws-x.sh │ │ ├── peoples_daily_ner.out │ │ ├── peoples_daily_ner.sh │ │ ├── poetry.out │ │ ├── poetry.sh │ │ ├── ptb.out │ │ ├── ptb.sh │ │ ├── seabsa16.out │ │ ├── seabsa16.sh │ │ ├── sighan-cn.out │ │ ├── sighan-cn.sh │ │ ├── squad.out │ │ ├── squad.sh │ │ ├── thucnews.out │ │ ├── thucnews.sh │ │ ├── top10.out │ │ ├── top10.sh │ │ ├── triviaqa.out │ │ ├── triviaqa.sh │ │ ├── trouble_tickets.md │ │ ├── wmt14ende.out │ │ ├── wmt14ende.sh │ │ ├── xnli.out │ │ ├── xnli.sh │ │ ├── xnli_cn.out │ │ ├── xnli_cn.sh │ │ ├── yahoo_answer_100k.out │ │ └── yahoo_answer_100k.sh │ ├── errors.txt │ ├── model │ ├── model.HuggingFace │ │ ├── BaptisteDoyen │ │ │ ├── camembert-base-xnli.out │ │ │ └── camembert-base-xnli.sh │ │ ├── DeepPavlov │ │ │ ├── rubert-base-cased.out │ │ │ └── rubert-base-cased.sh │ │ ├── EleutherAI │ │ │ ├── gpt-j-6B.out │ │ │ ├── gpt-j-6B.sh │ │ │ ├── gpt-neo-1.3B.out │ │ │ └── gpt-neo-1.3B.sh │ │ ├── HansAnonymous │ │ │ ├── DialoGPT-small-shrek.out │ │ │ └── DialoGPT-small-shrek.sh │ │ ├── Helsinki-NLP │ │ │ ├── opus-mt-ar-en.out │ │ │ ├── opus-mt-ar-en.sh │ │ │ ├── opus-mt-de-en.out │ │ │ ├── opus-mt-de-en.sh │ │ │ ├── opus-mt-en-ROMANCE.out │ │ │ ├── opus-mt-en-ROMANCE.sh │ │ │ ├── opus-mt-en-de.out │ │ │ ├── opus-mt-en-de.sh │ │ │ ├── opus-mt-es-en.out │ │ │ ├── opus-mt-es-en.sh │ │ │ ├── opus-mt-fr-en.out │ │ │ ├── opus-mt-fr-en.sh │ │ │ ├── opus-mt-zh-en.out │ │ │ └── opus-mt-zh-en.sh │ │ ├── Jean-Baptiste │ │ │ ├── roberta-large-ner-english.out │ │ │ └── roberta-large-ner-english.sh │ │ ├── JorisCos │ │ │ ├── ConvTasNet_Libri2Mix_sepclean_16k.sh.to_be_done │ │ │ ├── ConvTasNet_Libri2Mix_sepclean_8k.sh.to_be_done │ │ │ ├── ConvTasNet_Libri2Mix_sepnoisy_16k.sh.to_be_done │ │ │ ├── DCCRNet_Libri1Mix_enhsingle_16k.sh.to_be_done │ │ │ └── DPRNNTasNet-ks2_Libri1Mix_enhsingle_16k.sh.to_be_done │ │ ├── M-CLIP │ │ │ ├── M-BERT-Base-ViT-B.out │ │ │ └── M-BERT-Base-ViT-B.sh │ │ ├── Michau │ │ │ ├── t5-base-en-generate-headline.out │ │ │ └── t5-base-en-generate-headline.sh │ │ ├── MoritzLaurer │ │ │ ├── mDeBERTa-v3-base-mnli-xnli.out │ │ │ └── mDeBERTa-v3-base-mnli-xnli.sh │ │ ├── Narsil │ │ │ ├── deberta-large-mnli-zero-cls.out │ │ │ └── deberta-large-mnli-zero-cls.sh │ │ ├── Rostlab │ │ │ ├── prot_t5_xl_uniref50.out │ │ │ └── prot_t5_xl_uniref50.sh │ │ ├── Sahajtomar │ │ │ ├── German_Zeroshot.out │ │ │ └── German_Zeroshot.sh │ │ ├── TalTechNLP │ │ │ └── voxlingua107-epaca-tdnn.sh.to_be_done │ │ ├── Xibanya │ │ │ └── sunset_city.sh.to_be_done │ │ ├── allegro │ │ │ ├── herbert-base-cased.out │ │ │ └── herbert-base-cased.sh │ │ ├── allenai │ │ │ ├── led-base-16384.out │ │ │ └── led-base-16384.sh │ │ ├── anton-l │ │ │ ├── wav2vec2-base-ft-keyword-spotting.out │ │ │ ├── wav2vec2-base-ft-keyword-spotting.sh │ │ │ ├── wav2vec2-random-tiny-classifier.out │ │ │ └── wav2vec2-random-tiny-classifier.sh │ │ ├── apol │ │ │ └── dalle-mini.sh.to_be_done │ │ ├── bert-base-cased.out │ │ ├── bert-base-cased.sh │ │ ├── bert-base-chinese.out │ │ ├── bert-base-chinese.sh │ │ ├── bert-base-uncased.out │ │ ├── bert-base-uncased.sh │ │ ├── bert-large-cased-whole-word-masking-finetuned-squad.out │ │ ├── bert-large-cased-whole-word-masking-finetuned-squad.sh │ │ ├── bert-large-uncased-whole-word-masking-finetuned-squad.out │ │ ├── bert-large-uncased-whole-word-masking-finetuned-squad.sh │ │ ├── bhadresh-savani │ │ │ ├── distilbert-base-uncased-emotion.out │ │ │ └── distilbert-base-uncased-emotion.sh │ │ ├── cardiffnlp │ │ │ ├── twitter-roberta-base-sentiment.out │ │ │ └── twitter-roberta-base-sentiment.sh │ │ ├── cl-tohoku │ │ │ ├── bert-base-japanese-char.out │ │ │ ├── bert-base-japanese-char.sh │ │ │ ├── bert-base-japanese-whole-word-masking.out │ │ │ ├── bert-base-japanese-whole-word-masking.sh │ │ │ ├── bert-base-japanese.out │ │ │ └── bert-base-japanese.sh │ │ ├── classla │ │ │ ├── bcms-bertic-ner.out │ │ │ └── bcms-bertic-ner.sh │ │ ├── cross-encoder │ │ │ ├── ms-marco-MiniLM-L-12-v2.out │ │ │ ├── ms-marco-MiniLM-L-12-v2.sh │ │ │ ├── nli-distilroberta-base.out │ │ │ └── nli-distilroberta-base.sh │ │ ├── csebuetnlp │ │ │ ├── mT5_multilingual_XLSum.out │ │ │ └── mT5_multilingual_XLSum.sh │ │ ├── davanstrien │ │ │ ├── detr_beyond_words.out │ │ │ └── detr_beyond_words.sh │ │ ├── dbmdz │ │ │ ├── bert-large-cased-finetuned-conll03-english.out │ │ │ └── bert-large-cased-finetuned-conll03-english.sh │ │ ├── deepparag │ │ │ ├── Aeona.out │ │ │ └── Aeona.sh │ │ ├── deepset │ │ │ ├── bert-base-cased-squad2.out │ │ │ ├── bert-base-cased-squad2.sh │ │ │ ├── bert-large-uncased-whole-word-masking-squad2.out │ │ │ ├── bert-large-uncased-whole-word-masking-squad2.sh │ │ │ ├── minilm-uncased-squad2.out │ │ │ ├── minilm-uncased-squad2.sh │ │ │ ├── roberta-base-squad2.out │ │ │ └── roberta-base-squad2.sh │ │ ├── distilbert-base-cased-distilled-squad.out │ │ ├── distilbert-base-cased-distilled-squad.sh │ │ ├── distilbert-base-uncased-distilled-squad.out │ │ ├── distilbert-base-uncased-distilled-squad.sh │ │ ├── distilbert-base-uncased-finetuned-sst-2-english.out │ │ ├── distilbert-base-uncased-finetuned-sst-2-english.sh │ │ ├── distilbert-base-uncased.out │ │ ├── distilbert-base-uncased.sh │ │ ├── distilgpt2.out │ │ ├── distilgpt2.sh │ │ ├── dslim │ │ │ ├── bert-base-NER.out │ │ │ ├── bert-base-NER.sh │ │ │ ├── bert-large-NER.out │ │ │ └── bert-large-NER.sh │ │ ├── ehcalabres │ │ │ ├── wav2vec2-lg-xlsr-en-speech-emotion-recognition.out │ │ │ └── wav2vec2-lg-xlsr-en-speech-emotion-recognition.sh │ │ ├── espnet │ │ │ ├── kan-bayashi_ljspeech_joint_finetune_conformer_fastspeech2_hifigan.sh.to_be_done │ │ │ └── kan-bayashi_ljspeech_vits.sh.to_be_done │ │ ├── etalab-ia │ │ │ ├── camembert-base-squadFR-fquad-piaf.out │ │ │ └── camembert-base-squadFR-fquad-piaf.sh │ │ ├── facebook │ │ │ ├── #blenderbot-3B.err# │ │ │ ├── bart-base.out │ │ │ ├── bart-base.sh │ │ │ ├── bart-large-cnn.out │ │ │ ├── bart-large-cnn.sh │ │ │ ├── bart-large-mnli.out │ │ │ ├── bart-large-mnli.sh │ │ │ ├── bart-large-xsum.out │ │ │ ├── bart-large-xsum.sh │ │ │ ├── bart-large.out │ │ │ ├── bart-large.sh │ │ │ ├── blenderbot-3B.out │ │ │ ├── blenderbot-3B.sh │ │ │ ├── blenderbot-400M-distill.out │ │ │ ├── blenderbot-400M-distill.sh │ │ │ ├── blenderbot-90M.out │ │ │ ├── blenderbot-90M.sh │ │ │ ├── blenderbot_small-90M.out │ │ │ ├── blenderbot_small-90M.sh │ │ │ ├── deit-base-distilled-patch16-224.out │ │ │ ├── deit-base-distilled-patch16-224.sh │ │ │ ├── deit-small-distilled-patch16-224.out │ │ │ ├── deit-small-distilled-patch16-224.sh │ │ │ ├── detr-resnet-101-dc5.out │ │ │ ├── detr-resnet-101-dc5.sh │ │ │ ├── detr-resnet-101-panoptic.out │ │ │ ├── detr-resnet-101-panoptic.sh │ │ │ ├── detr-resnet-101.out │ │ │ ├── detr-resnet-101.sh │ │ │ ├── detr-resnet-50-dc5.out │ │ │ ├── detr-resnet-50-dc5.sh │ │ │ ├── detr-resnet-50-panoptic.out │ │ │ ├── detr-resnet-50-panoptic.sh │ │ │ ├── detr-resnet-50.out │ │ │ ├── detr-resnet-50.sh │ │ │ ├── dpr-question_encoder-single-nq-base.out │ │ │ ├── dpr-question_encoder-single-nq-base.sh │ │ │ ├── fastspeech2-en-200_speaker-cv4.sh.to_be_done │ │ │ ├── fastspeech2-en-ljspeech.sh.to_be_done │ │ │ ├── hubert-large-ls960-ft.out │ │ │ ├── hubert-large-ls960-ft.sh │ │ │ ├── m2m100_418M.out │ │ │ ├── m2m100_418M.sh │ │ │ ├── mbart-large-50-one-to-many-mmt.out │ │ │ ├── mbart-large-50-one-to-many-mmt.sh │ │ │ ├── tts_transformer-en-200_speaker-cv4.sh.to_be_done │ │ │ ├── tts_transformer-en-ljspeech.sh.to_be_done │ │ │ ├── tts_transformer-es-css10.sh.to_be_done │ │ │ ├── tts_transformer-ru-cv7_css10.sh.to_be_done │ │ │ ├── tts_transformer-zh-cv7_css10.sh.to_be_done │ │ │ ├── wav2vec2-base-960h.out │ │ │ ├── wav2vec2-base-960h.sh │ │ │ ├── wav2vec2-large-960h-lv60-self.out │ │ │ ├── wav2vec2-large-960h-lv60-self.sh │ │ │ ├── wav2vec2-large-960h.out │ │ │ ├── wav2vec2-large-960h.sh │ │ │ ├── wav2vec2-large-xlsr-53.sh.to_be_done │ │ │ └── xglm-564M.sh.to_be_done │ │ ├── finiteautomata │ │ │ ├── beto-sentiment-analysis.out │ │ │ └── beto-sentiment-analysis.sh │ │ ├── flair │ │ │ ├── ner-english-fast.sh.to_be_done │ │ │ ├── ner-english-large.sh.to_be_done │ │ │ ├── ner-english-ontonotes-fast.sh.to_be_done │ │ │ └── ner-english.sh.to_be_done │ │ ├── flax-community │ │ │ └── dalle-mini.sh.to_be_done │ │ ├── gagan3012 │ │ │ ├── ViTGPT2_vizwiz.out │ │ │ └── ViTGPT2_vizwiz.sh │ │ ├── google-deepmind │ │ │ └── alphafold-v2.sh.to_be_done │ │ ├── google │ │ │ ├── mt5-base.out │ │ │ ├── mt5-base.sh │ │ │ ├── pegasus-cnn_dailymail.out │ │ │ ├── pegasus-cnn_dailymail.sh │ │ │ ├── pegasus-large.out │ │ │ ├── pegasus-large.sh │ │ │ ├── pegasus-xsum.out │ │ │ ├── pegasus-xsum.sh │ │ │ ├── t5-v1_1-large.out │ │ │ ├── t5-v1_1-large.sh │ │ │ ├── tapas-base-finetuned-sqa.sh.to_be_done │ │ │ ├── tapas-base-finetuned-wikisql-supervised.sh.to_be_done │ │ │ ├── tapas-base-finetuned-wtq.sh.to_be_done │ │ │ ├── tapas-large-finetuned-sqa.sh.to_be_done │ │ │ ├── tapas-large-finetuned-wikisql-supervised.sh.to_be_done │ │ │ ├── tapas-large-finetuned-wtq.sh.to_be_done │ │ │ ├── tapas-tiny-finetuned-sqa.sh.to_be_done │ │ │ ├── vit-base-patch16-224.out │ │ │ ├── vit-base-patch16-224.sh │ │ │ ├── vit-base-patch16-384.out │ │ │ └── vit-base-patch16-384.sh │ │ ├── gpt2-large.out │ │ ├── gpt2-large.sh │ │ ├── gpt2-medium.out │ │ ├── gpt2-medium.sh │ │ ├── gpt2.out │ │ ├── gpt2.sh │ │ ├── gsurma │ │ │ └── ai_dreamer..sh.to_be_done │ │ ├── hf-internal-testing │ │ │ ├── processor_with_lm.out │ │ │ ├── processor_with_lm.sh │ │ │ ├── tiny-random-beit-pipeline.out │ │ │ ├── tiny-random-beit-pipeline.sh │ │ │ ├── tiny-random-clip-zero-shot-image-classification.out │ │ │ ├── tiny-random-clip-zero-shot-image-classification.sh │ │ │ ├── tiny-random-unispeech-sat.out │ │ │ ├── tiny-random-unispeech-sat.sh │ │ │ ├── tiny-random-unispeech.out │ │ │ ├── tiny-random-unispeech.sh │ │ │ ├── tiny-random-vit.out │ │ │ └── tiny-random-vit.sh │ │ ├── human-centered-summarization │ │ │ ├── financial-summarization-pegasus.out │ │ │ └── financial-summarization-pegasus.sh │ │ ├── j-hartmann │ │ │ ├── emotion-english-distilroberta-base.out │ │ │ └── emotion-english-distilroberta-base.sh │ │ ├── joeddav │ │ │ ├── xlm-roberta-large-xnli.out │ │ │ └── xlm-roberta-large-xnli.sh │ │ ├── jonatasgrosman │ │ │ ├── wav2vec2-large-xlsr-53-english.out │ │ │ └── wav2vec2-large-xlsr-53-english.sh │ │ ├── julien-c │ │ │ ├── DPRNNTasNet-ks16_WHAM_sepclean.sh.to_be_done │ │ │ ├── voice-activity-detection.sh.to_be_done │ │ │ └── wine-quality.sh.to_be_done │ │ ├── kha-white │ │ │ ├── manga-ocr-base.out │ │ │ └── manga-ocr-base.sh │ │ ├── lakahaga │ │ │ └── novel_reading_tts.sh.to_be_done │ │ ├── lysandre │ │ │ ├── tapas-temporary-repo.sh.to_be_done │ │ │ ├── tiny-tapas-random-sqa.sh.to_be_done │ │ │ ├── tiny-tapas-random-wtq.sh.to_be_done │ │ │ ├── tiny-vit-random.out │ │ │ └── tiny-vit-random.sh │ │ ├── microsoft │ │ │ ├── DialoGPT-large.out │ │ │ ├── DialoGPT-large.sh │ │ │ ├── DialoGPT-medium.out │ │ │ ├── DialoGPT-medium.sh │ │ │ ├── DialoGPT-small.out │ │ │ ├── DialoGPT-small.sh │ │ │ ├── beit-base-finetuned-ade-640-640.sh.to_be_done │ │ │ ├── beit-base-patch16-224-pt22k-ft22k.out │ │ │ ├── beit-base-patch16-224-pt22k-ft22k.sh │ │ │ ├── beit-base-patch16-224.out │ │ │ ├── beit-base-patch16-224.sh │ │ │ ├── beit-large-finetuned-ade-640-640.sh.to_be_done │ │ │ ├── codebert-base.out │ │ │ ├── codebert-base.sh │ │ │ ├── swin-base-patch4-window7-224.out │ │ │ ├── swin-base-patch4-window7-224.sh │ │ │ ├── swin-tiny-patch4-window7-224.out │ │ │ └── swin-tiny-patch4-window7-224.sh │ │ ├── mindee │ │ │ └── fasterrcnn_mobilenet_v3_large_fpn.sh.to_be_done │ │ ├── mishig │ │ │ ├── tiny-detr-mobilenetsv3-panoptic.out │ │ │ ├── tiny-detr-mobilenetsv3-panoptic.sh │ │ │ ├── tiny-detr-mobilenetsv3.out │ │ │ └── tiny-detr-mobilenetsv3.sh │ │ ├── models.txt │ │ ├── monsoon-nlp │ │ │ ├── hindi-bert.out │ │ │ └── hindi-bert.sh │ │ ├── mpariente │ │ │ └── DPRNNTasNet-ks2_WHAM_sepclean.sh.to_be_done │ │ ├── nateraw │ │ │ ├── hot-dog.out │ │ │ └── hot-dog.sh │ │ ├── nielsr │ │ │ ├── detr-resnet-50-new.out │ │ │ ├── detr-resnet-50-new.sh │ │ │ ├── detr-resnet-50.out │ │ │ └── detr-resnet-50.sh │ │ ├── nlptown │ │ │ ├── bert-base-multilingual-uncased-sentiment.out │ │ │ └── bert-base-multilingual-uncased-sentiment.sh │ │ ├── nvidia │ │ │ ├── segformer-b0-finetuned-ade-512-512.out │ │ │ ├── segformer-b0-finetuned-ade-512-512.sh │ │ │ ├── segformer-b5-finetuned-ade-640-640.out │ │ │ └── segformer-b5-finetuned-ade-640-640.sh │ │ ├── openai │ │ │ ├── clip-vit-base-patch32.out │ │ │ └── clip-vit-base-patch32.sh │ │ ├── osanseviero │ │ │ ├── BigGAN-deep-128.sh.to_be_done │ │ │ ├── dalle-mini-fork.sh.to_be_done │ │ │ └── hubert-sd.sh.to_be_done │ │ ├── patrickvonplaten │ │ │ ├── t5-tiny-random.out │ │ │ ├── t5-tiny-random.sh │ │ │ ├── wav2vec2_tiny_random_robust.out │ │ │ ├── wav2vec2_tiny_random_robust.sh │ │ │ ├── wavlm-libri-clean-100h-base-plus.out │ │ │ └── wavlm-libri-clean-100h-base-plus.sh │ │ ├── philschmid │ │ │ ├── bart-large-cnn-samsum.out │ │ │ └── bart-large-cnn-samsum.sh │ │ ├── pyannote │ │ │ ├── segmentation.sh.to_be_done │ │ │ └── voice-activity-detection.sh.to_be_done │ │ ├── r3dhummingbird │ │ │ ├── DialoGPT-medium-joshua.out │ │ │ └── DialoGPT-medium-joshua.sh │ │ ├── remotejob │ │ │ ├── tweetsDISTILGPT2fi_v4.out │ │ │ └── tweetsDISTILGPT2fi_v4.sh │ │ ├── risingodegua │ │ │ └── wine-quality-model.sh.to_be_done │ │ ├── roberta-base.out │ │ ├── roberta-base.sh │ │ ├── roberta-large-mnli.out │ │ ├── roberta-large-mnli.sh │ │ ├── roberta-large.out │ │ ├── roberta-large.sh │ │ ├── sachin │ │ │ ├── vit2distilgpt2.out │ │ │ └── vit2distilgpt2.sh │ │ ├── sberbank-ai │ │ │ ├── ruT5-base.out │ │ │ ├── ruT5-base.sh │ │ │ └── rudalle-Malevich.sh.to_be_done │ │ ├── scikit-learn-examples │ │ │ └── example.sh.to_be_done │ │ ├── sentence-transformers │ │ │ ├── LaBSE.sh.to_be_done │ │ │ ├── all-MiniLM-L6-v2.sh.to_be_done │ │ │ ├── all-mpnet-base-v2.sh.to_be_done │ │ │ ├── bert-base-nli-mean-tokens.sh.to_be_done │ │ │ ├── distilbert-base-nli-mean-tokens.sh.to_be_done │ │ │ ├── multi-qa-MiniLM-L6-cos-v1.sh.to_be_done │ │ │ ├── multi-qa-mpnet-base-dot-v1.sh.to_be_done │ │ │ ├── paraphrase-MiniLM-L6-v2.sh.to_be_done │ │ │ ├── paraphrase-mpnet-base-v2.sh.to_be_done │ │ │ ├── paraphrase-multilingual-MiniLM-L12-v2.sh.to_be_done │ │ │ └── paraphrase-xlm-r-multilingual-v1.sh.to_be_done │ │ ├── speechbrain │ │ │ ├── emotion-recognition-wav2vec2-IEMOCAP.sh.to_be_done │ │ │ ├── metricgan-plus-voicebank.sh.to_be_done │ │ │ ├── mtl-mimic-voicebank.sh.to_be_done │ │ │ ├── sepformer-wsj02mix.sh.to_be_done │ │ │ └── spkrec-xvect-voxceleb.sh.to_be_done │ │ ├── sshleifer │ │ │ ├── distilbart-cnn-12-6.out │ │ │ ├── distilbart-cnn-12-6.sh │ │ │ ├── distilbart-cnn-6-6.out │ │ │ └── distilbart-cnn-6-6.sh │ │ ├── superb │ │ │ ├── hubert-large-superb-er.out │ │ │ ├── hubert-large-superb-er.sh │ │ │ ├── wav2vec2-base-superb-ks.out │ │ │ └── wav2vec2-base-superb-ks.sh │ │ ├── t5-base.out │ │ ├── t5-base.sh │ │ ├── t5-large.out │ │ ├── t5-large.sh │ │ ├── t5-small.out │ │ ├── t5-small.sh │ │ ├── thatdramebaazguy │ │ │ ├── roberta-base-squad.out │ │ │ └── roberta-base-squad.sh │ │ ├── top10.out │ │ ├── top10.sh │ │ ├── training-transformers-together │ │ │ └── dalle-demo-v1.sh.to_be_done │ │ ├── tuner007 │ │ │ ├── pegasus_paraphrase.out │ │ │ └── pegasus_paraphrase.sh │ │ ├── typeform │ │ │ ├── distilbert-base-uncased-mnli.out │ │ │ └── distilbert-base-uncased-mnli.sh │ │ ├── valhalla │ │ │ ├── distilbart-mnli-12-1.out │ │ │ ├── distilbart-mnli-12-1.sh │ │ │ ├── distilbart-mnli-12-6.out │ │ │ └── distilbart-mnli-12-6.sh │ │ ├── w11wo │ │ │ ├── javanese-gpt2-small-imdb.out │ │ │ └── javanese-gpt2-small-imdb.sh │ │ ├── xlm-roberta-base.out │ │ ├── xlm-roberta-base.sh │ │ ├── xlm-roberta-large-finetuned-conll03-english.out │ │ ├── xlm-roberta-large-finetuned-conll03-english.sh │ │ ├── xlnet-base-cased.out │ │ └── xlnet-base-cased.sh │ └── model.Paddle │ │ ├── BigSalmon │ │ ├── InformalToFormalLincoln21.out │ │ └── InformalToFormalLincoln21.sh │ │ ├── CLTL │ │ ├── MedRoBERTa.nl.out │ │ └── MedRoBERTa.nl.sh │ │ ├── DeepESP │ │ ├── gpt2-spanish.out │ │ └── gpt2-spanish.sh │ │ ├── DeepPavlov │ │ ├── rubert-base-cased-conversational.out │ │ ├── rubert-base-cased-conversational.sh │ │ ├── rubert-base-cased.out │ │ └── rubert-base-cased.sh │ │ ├── DingleyMaillotUrgell │ │ ├── homer-bot.out │ │ └── homer-bot.sh │ │ ├── FPTAI │ │ ├── vibert-base-cased.out │ │ └── vibert-base-cased.sh │ │ ├── GroNLP │ │ ├── bert-base-dutch-cased.out │ │ ├── bert-base-dutch-cased.sh │ │ ├── gpt2-small-dutch.out │ │ ├── gpt2-small-dutch.sh │ │ ├── gpt2-small-italian-embeddings.out │ │ ├── gpt2-small-italian-embeddings.sh │ │ ├── gpt2-small-italian.out │ │ └── gpt2-small-italian.sh │ │ ├── Grossmend │ │ ├── rudialogpt3_medium_based_on_gpt2.out │ │ └── rudialogpt3_medium_based_on_gpt2.sh │ │ ├── HooshvareLab │ │ ├── bert-base-parsbert-uncased.out │ │ ├── bert-base-parsbert-uncased.sh │ │ ├── bert-fa-base-uncased-sentiment-snappfood.out │ │ ├── bert-fa-base-uncased-sentiment-snappfood.sh │ │ ├── bert-fa-zwnj-base.out │ │ ├── bert-fa-zwnj-base.sh │ │ ├── gpt2-fa.out │ │ ├── gpt2-fa.sh │ │ ├── roberta-fa-zwnj-base.out │ │ └── roberta-fa-zwnj-base.sh │ │ ├── KB │ │ ├── bert-base-swedish-cased-ner.out │ │ ├── bert-base-swedish-cased-ner.sh │ │ ├── bert-base-swedish-cased.out │ │ └── bert-base-swedish-cased.sh │ │ ├── KETI-AIR │ │ ├── ke-t5-base.out │ │ ├── ke-t5-base.sh │ │ ├── ke-t5-small.out │ │ └── ke-t5-small.sh │ │ ├── KNOWN_ISSUES.md │ │ ├── KoichiYasuoka │ │ ├── bert-base-japanese-upos.out │ │ └── bert-base-japanese-upos.sh │ │ ├── Langboat │ │ ├── mengzi-bert-base-fin.out │ │ ├── mengzi-bert-base-fin.sh │ │ ├── mengzi-bert-base.out │ │ ├── mengzi-bert-base.sh │ │ ├── mengzi-t5-base.out │ │ └── mengzi-t5-base.sh │ │ ├── LorenzoDeMattei │ │ ├── GePpeTto.out │ │ └── GePpeTto.sh │ │ ├── Luyu │ │ ├── co-condenser-marco.out │ │ └── co-condenser-marco.sh │ │ ├── Maltehb │ │ ├── danish-bert-botxo.out │ │ └── danish-bert-botxo.sh │ │ ├── Michau │ │ ├── t5-base-en-generate-headline.out │ │ └── t5-base-en-generate-headline.sh │ │ ├── NYTK │ │ ├── text-generation-poem-petofi-gpt2-small-hungarian.out │ │ └── text-generation-poem-petofi-gpt2-small-hungarian.sh │ │ ├── Nokia │ │ ├── nlgp-natural.out │ │ └── nlgp-natural.sh │ │ ├── ProsusAI │ │ ├── finbert.out │ │ └── finbert.sh │ │ ├── Rakib │ │ ├── roberta-base-on-cuad.out │ │ └── roberta-base-on-cuad.sh │ │ ├── Recognai │ │ ├── bert-base-spanish-wwm-cased-xnli.out │ │ └── bert-base-spanish-wwm-cased-xnli.sh │ │ ├── Rostlab │ │ ├── prot_t5_base_mt_uniref50.out │ │ └── prot_t5_base_mt_uniref50.sh │ │ ├── SIC98 │ │ ├── GPT2-python-code-generator.out │ │ └── GPT2-python-code-generator.sh │ │ ├── SZTAKI-HLT │ │ ├── hubert-base-cc.out │ │ └── hubert-base-cc.sh │ │ ├── Sahajtomar │ │ ├── German_Zeroshot.out │ │ └── German_Zeroshot.sh │ │ ├── Salesforce │ │ ├── grappa_large_jnt.out │ │ └── grappa_large_jnt.sh │ │ ├── SkolkovoInstitute │ │ ├── roberta_toxicity_classifier.out │ │ └── roberta_toxicity_classifier.sh │ │ ├── SpanBERT │ │ ├── spanbert-base-cased.out │ │ ├── spanbert-base-cased.sh │ │ ├── spanbert-large-cased.out │ │ └── spanbert-large-cased.sh │ │ ├── ThomasNLG │ │ ├── t5-qa_squad2neg-en.out │ │ └── t5-qa_squad2neg-en.sh │ │ ├── TrLOX │ │ ├── gpt2-tdk.out │ │ └── gpt2-tdk.sh │ │ ├── TurkuNLP │ │ ├── bert-base-finnish-cased-v1.out │ │ └── bert-base-finnish-cased-v1.sh │ │ ├── UBC-NLP │ │ ├── MARBERT.out │ │ └── MARBERT.sh │ │ ├── Wikidepia │ │ ├── IndoT5-base.out │ │ └── IndoT5-base.sh │ │ ├── akhooli │ │ ├── gpt2-small-arabic-poetry.out │ │ └── gpt2-small-arabic-poetry.sh │ │ ├── albert-base-v1.out │ │ ├── albert-base-v1.sh │ │ ├── albert-base-v2.out │ │ ├── albert-base-v2.sh │ │ ├── albert-chinese-base.out │ │ ├── albert-chinese-base.sh │ │ ├── albert-chinese-large.out │ │ ├── albert-chinese-large.sh │ │ ├── albert-chinese-small.out │ │ ├── albert-chinese-small.sh │ │ ├── albert-chinese-tiny.out │ │ ├── albert-chinese-tiny.sh │ │ ├── albert-chinese-xlarge.out │ │ ├── albert-chinese-xlarge.sh │ │ ├── albert-chinese-xxlarge.out │ │ ├── albert-chinese-xxlarge.sh │ │ ├── albert-large-v1.out │ │ ├── albert-large-v1.sh │ │ ├── albert-large-v2.out │ │ ├── albert-large-v2.sh │ │ ├── albert-xlarge-v1.out │ │ ├── albert-xlarge-v1.sh │ │ ├── albert-xlarge-v2.out │ │ ├── albert-xlarge-v2.sh │ │ ├── albert-xxlarge-v1.out │ │ ├── albert-xxlarge-v1.sh │ │ ├── albert-xxlarge-v2.out │ │ ├── albert-xxlarge-v2.sh │ │ ├── allenai │ │ ├── biomed_roberta_base.out │ │ ├── biomed_roberta_base.sh │ │ ├── reviews_roberta_base.out │ │ ├── reviews_roberta_base.sh │ │ ├── scibert_scivocab_cased.out │ │ ├── scibert_scivocab_cased.sh │ │ ├── scibert_scivocab_uncased.out │ │ └── scibert_scivocab_uncased.sh │ │ ├── alvaroalon2 │ │ ├── biobert_chemical_ner.out │ │ ├── biobert_chemical_ner.sh │ │ ├── biobert_diseases_ner.out │ │ ├── biobert_diseases_ner.sh │ │ ├── biobert_genetic_ner.out │ │ └── biobert_genetic_ner.sh │ │ ├── amberoad │ │ ├── bert-multilingual-passage-reranking-msmarco.out │ │ └── bert-multilingual-passage-reranking-msmarco.sh │ │ ├── anonymous-german-nlp │ │ ├── german-gpt2.out │ │ └── german-gpt2.sh │ │ ├── antoiloui │ │ ├── belgpt2.out │ │ └── belgpt2.sh │ │ ├── asafaya │ │ ├── bert-base-arabic.out │ │ └── bert-base-arabic.sh │ │ ├── asi │ │ ├── gpt-fr-cased-base.out │ │ ├── gpt-fr-cased-base.sh │ │ ├── gpt-fr-cased-small.out │ │ └── gpt-fr-cased-small.sh │ │ ├── aubmindlab │ │ ├── bert-base-arabertv02.out │ │ └── bert-base-arabertv02.sh │ │ ├── aychang │ │ ├── roberta-base-imdb.out │ │ └── roberta-base-imdb.sh │ │ ├── bart-base.out │ │ ├── bart-base.sh │ │ ├── bart-large.out │ │ ├── bart-large.sh │ │ ├── benjamin │ │ ├── gerpt2.out │ │ ├── gerpt2.sh │ │ ├── roberta-base-wechsel-german.out │ │ └── roberta-base-wechsel-german.sh │ │ ├── beomi │ │ ├── kcbert-base.out │ │ ├── kcbert-base.sh │ │ ├── kcbert-large.out │ │ └── kcbert-large.sh │ │ ├── bert-base-cased-finetuned-mrpc.out │ │ ├── bert-base-cased-finetuned-mrpc.sh │ │ ├── bert-base-cased.out │ │ ├── bert-base-cased.sh │ │ ├── bert-base-chinese.out │ │ ├── bert-base-chinese.sh │ │ ├── bert-base-german-cased.out │ │ ├── bert-base-german-cased.sh │ │ ├── bert-base-german-dbmdz-uncased.out │ │ ├── bert-base-german-dbmdz-uncased.sh │ │ ├── bert-base-multilingual-cased.out │ │ ├── bert-base-multilingual-cased.sh │ │ ├── bert-base-multilingual-uncased.out │ │ ├── bert-base-multilingual-uncased.sh │ │ ├── bert-base-uncased.out │ │ ├── bert-base-uncased.sh │ │ ├── bert-large-cased-whole-word-masking-finetuned-squad.out │ │ ├── bert-large-cased-whole-word-masking-finetuned-squad.sh │ │ ├── bert-large-cased-whole-word-masking.out │ │ ├── bert-large-cased-whole-word-masking.sh │ │ ├── bert-large-cased.out │ │ ├── bert-large-cased.sh │ │ ├── bert-large-uncased-whole-word-masking-finetuned-squad.out │ │ ├── bert-large-uncased-whole-word-masking-finetuned-squad.sh │ │ ├── bert-large-uncased-whole-word-masking.out │ │ ├── bert-large-uncased-whole-word-masking.sh │ │ ├── bert-large-uncased.out │ │ ├── bert-large-uncased.sh │ │ ├── bert-wwm-chinese.out │ │ ├── bert-wwm-chinese.sh │ │ ├── bert-wwm-ext-chinese.out │ │ ├── bert-wwm-ext-chinese.sh │ │ ├── bertin-project │ │ ├── bertin-roberta-base-spanish.out │ │ └── bertin-roberta-base-spanish.sh │ │ ├── bhadresh-savani │ │ ├── roberta-base-emotion.out │ │ └── roberta-base-emotion.sh │ │ ├── bigbird-base-uncased.out │ │ ├── bigbird-base-uncased.sh │ │ ├── blanchefort │ │ ├── rubert-base-cased-sentiment.out │ │ └── rubert-base-cased-sentiment.sh │ │ ├── blenderbot-1B-distill.out │ │ ├── blenderbot-1B-distill.sh │ │ ├── blenderbot-3B.out │ │ ├── blenderbot-3B.sh │ │ ├── blenderbot-400M-distill.out │ │ ├── blenderbot-400M-distill.sh │ │ ├── blenderbot_small-90M.out │ │ ├── blenderbot_small-90M.sh │ │ ├── blinoff │ │ ├── roberta-base-russian-v0.out │ │ └── roberta-base-russian-v0.sh │ │ ├── bvanaken │ │ ├── clinical-assertion-negation-bert.out │ │ └── clinical-assertion-negation-bert.sh │ │ ├── cahya │ │ ├── gpt2-small-indonesian-522M.out │ │ ├── gpt2-small-indonesian-522M.sh │ │ ├── roberta-base-indonesian-1.5G.out │ │ └── roberta-base-indonesian-1.5G.sh │ │ ├── cambridgeltl │ │ ├── simctg_wikitext103.out │ │ └── simctg_wikitext103.sh │ │ ├── cardiffnlp │ │ ├── twitter-roberta-base-emoji.out │ │ ├── twitter-roberta-base-emoji.sh │ │ ├── twitter-roberta-base-emotion.out │ │ ├── twitter-roberta-base-emotion.sh │ │ ├── twitter-roberta-base-hate.out │ │ ├── twitter-roberta-base-hate.sh │ │ ├── twitter-roberta-base-offensive.out │ │ ├── twitter-roberta-base-offensive.sh │ │ ├── twitter-roberta-base-sentiment.out │ │ ├── twitter-roberta-base-sentiment.sh │ │ ├── twitter-roberta-base.out │ │ └── twitter-roberta-base.sh │ │ ├── ceostroff │ │ ├── harry-potter-gpt2-fanfiction.out │ │ └── harry-potter-gpt2-fanfiction.sh │ │ ├── chinese-electra-base.out │ │ ├── chinese-electra-base.sh │ │ ├── chinese-electra-small.out │ │ ├── chinese-electra-small.sh │ │ ├── chinese-xlnet-base.out │ │ ├── chinese-xlnet-base.sh │ │ ├── chinese-xlnet-large.out │ │ ├── chinese-xlnet-large.sh │ │ ├── chinese-xlnet-mid.out │ │ ├── chinese-xlnet-mid.sh │ │ ├── chkla │ │ ├── roberta-argument.out │ │ └── roberta-argument.sh │ │ ├── ckiplab │ │ ├── bert-base-chinese-ner.out │ │ ├── bert-base-chinese-ner.sh │ │ ├── bert-base-chinese-ws.out │ │ ├── bert-base-chinese-ws.sh │ │ ├── bert-base-chinese.out │ │ └── bert-base-chinese.sh │ │ ├── cl-tohoku │ │ ├── bert-base-japanese-char-v2.out │ │ ├── bert-base-japanese-char-v2.sh │ │ ├── bert-base-japanese-char.out │ │ ├── bert-base-japanese-char.sh │ │ ├── bert-base-japanese-v2.out │ │ ├── bert-base-japanese-v2.sh │ │ ├── bert-base-japanese-whole-word-masking.out │ │ ├── bert-base-japanese-whole-word-masking.sh │ │ ├── bert-base-japanese.out │ │ ├── bert-base-japanese.sh │ │ ├── bert-large-japanese.out │ │ └── bert-large-japanese.sh │ │ ├── cointegrated │ │ ├── LaBSE-en-ru.out │ │ ├── LaBSE-en-ru.sh │ │ ├── roberta-large-cola-krishna2020.out │ │ ├── roberta-large-cola-krishna2020.sh │ │ ├── rubert-tiny.out │ │ ├── rubert-tiny.sh │ │ ├── rubert-tiny2.out │ │ └── rubert-tiny2.sh │ │ ├── congcongwang │ │ ├── gpt2_medium_fine_tuned_coder.out │ │ └── gpt2_medium_fine_tuned_coder.sh │ │ ├── convbert-base.out │ │ ├── convbert-base.sh │ │ ├── convbert-medium-small.out │ │ ├── convbert-medium-small.sh │ │ ├── convbert-small.out │ │ ├── convbert-small.sh │ │ ├── cross-encoder │ │ ├── ms-marco-MiniLM-L-12-v2.out │ │ ├── ms-marco-MiniLM-L-12-v2.sh │ │ ├── ms-marco-TinyBERT-L-2.out │ │ ├── ms-marco-TinyBERT-L-2.sh │ │ ├── nli-MiniLM2-L6-H768.out │ │ ├── nli-MiniLM2-L6-H768.sh │ │ ├── nli-distilroberta-base.out │ │ ├── nli-distilroberta-base.sh │ │ ├── nli-roberta-base.out │ │ ├── nli-roberta-base.sh │ │ ├── quora-distilroberta-base.out │ │ ├── quora-distilroberta-base.sh │ │ ├── quora-roberta-base.out │ │ ├── quora-roberta-base.sh │ │ ├── stsb-TinyBERT-L-4.out │ │ ├── stsb-TinyBERT-L-4.sh │ │ ├── stsb-distilroberta-base.out │ │ ├── stsb-distilroberta-base.sh │ │ ├── stsb-roberta-base.out │ │ ├── stsb-roberta-base.sh │ │ ├── stsb-roberta-large.out │ │ └── stsb-roberta-large.sh │ │ ├── csarron │ │ ├── roberta-base-squad-v1.out │ │ └── roberta-base-squad-v1.sh │ │ ├── ctrl.out │ │ ├── ctrl.sh │ │ ├── daigo │ │ ├── bert-base-japanese-sentiment.out │ │ └── bert-base-japanese-sentiment.sh │ │ ├── datificate │ │ ├── gpt2-small-spanish.out │ │ └── gpt2-small-spanish.sh │ │ ├── dbddv01 │ │ ├── gpt2-french-small.out │ │ └── gpt2-french-small.sh │ │ ├── dbmdz │ │ ├── bert-base-german-cased.out │ │ ├── bert-base-german-cased.sh │ │ ├── bert-base-german-uncased.out │ │ ├── bert-base-german-uncased.sh │ │ ├── bert-base-italian-uncased.out │ │ ├── bert-base-italian-uncased.sh │ │ ├── bert-base-italian-xxl-cased.out │ │ ├── bert-base-italian-xxl-cased.sh │ │ ├── bert-base-turkish-128k-cased.out │ │ ├── bert-base-turkish-128k-cased.sh │ │ ├── bert-base-turkish-cased.out │ │ ├── bert-base-turkish-cased.sh │ │ ├── bert-base-turkish-uncased.out │ │ ├── bert-base-turkish-uncased.sh │ │ ├── bert-large-cased-finetuned-conll03-english.out │ │ └── bert-large-cased-finetuned-conll03-english.sh │ │ ├── dccuchile │ │ ├── bert-base-spanish-wwm-cased.out │ │ ├── bert-base-spanish-wwm-cased.sh │ │ ├── bert-base-spanish-wwm-uncased.out │ │ └── bert-base-spanish-wwm-uncased.sh │ │ ├── deep-learning-analytics │ │ ├── GrammarCorrector.out │ │ ├── GrammarCorrector.sh │ │ ├── wikihow-t5-small.out │ │ └── wikihow-t5-small.sh │ │ ├── deepparag │ │ ├── DumBot.out │ │ └── DumBot.sh │ │ ├── deepset │ │ ├── bert-base-cased-squad2.out │ │ ├── bert-base-cased-squad2.sh │ │ ├── bert-large-uncased-whole-word-masking-squad2.out │ │ ├── bert-large-uncased-whole-word-masking-squad2.sh │ │ ├── minilm-uncased-squad2.out │ │ ├── minilm-uncased-squad2.sh │ │ ├── roberta-base-squad2-covid.out │ │ ├── roberta-base-squad2-covid.sh │ │ ├── roberta-base-squad2-distilled.out │ │ ├── roberta-base-squad2-distilled.sh │ │ ├── roberta-base-squad2.out │ │ ├── roberta-base-squad2.sh │ │ ├── sentence_bert.out │ │ ├── sentence_bert.sh │ │ ├── tinyroberta-squad2.out │ │ └── tinyroberta-squad2.sh │ │ ├── digitalepidemiologylab │ │ ├── covid-twitter-bert-v2.out │ │ └── covid-twitter-bert-v2.sh │ │ ├── distilbert-base-cased.out │ │ ├── distilbert-base-cased.sh │ │ ├── distilbert-base-multilingual-cased.out │ │ ├── distilbert-base-multilingual-cased.sh │ │ ├── distilbert-base-uncased.out │ │ ├── distilbert-base-uncased.sh │ │ ├── distilgpt2.out │ │ ├── distilgpt2.sh │ │ ├── distilroberta-base.out │ │ ├── distilroberta-base.sh │ │ ├── dkleczek │ │ ├── bert-base-polish-uncased-v1.out │ │ └── bert-base-polish-uncased-v1.sh │ │ ├── dmis-lab │ │ ├── biobert-base-cased-v1.2.out │ │ └── biobert-base-cased-v1.2.sh │ │ ├── dslim │ │ ├── bert-base-NER-uncased.out │ │ ├── bert-base-NER-uncased.sh │ │ ├── bert-base-NER.out │ │ ├── bert-base-NER.sh │ │ ├── bert-large-NER.out │ │ └── bert-large-NER.sh │ │ ├── dumitrescustefan │ │ ├── bert-base-romanian-cased-v1.out │ │ ├── bert-base-romanian-cased-v1.sh │ │ ├── bert-base-romanian-uncased-v1.out │ │ └── bert-base-romanian-uncased-v1.sh │ │ ├── electra-base.out │ │ ├── electra-base.sh │ │ ├── electra-large.out │ │ ├── electra-large.sh │ │ ├── electra-small.out │ │ ├── electra-small.sh │ │ ├── elozano │ │ ├── tweet_emotion_eval.out │ │ ├── tweet_emotion_eval.sh │ │ ├── tweet_offensive_eval.out │ │ ├── tweet_offensive_eval.sh │ │ ├── tweet_sentiment_eval.out │ │ └── tweet_sentiment_eval.sh │ │ ├── emilyalsentzer │ │ ├── Bio_ClinicalBERT.out │ │ ├── Bio_ClinicalBERT.sh │ │ ├── Bio_Discharge_Summary_BERT.out │ │ └── Bio_Discharge_Summary_BERT.sh │ │ ├── ericzhou │ │ ├── tsundere_v1.out │ │ └── tsundere_v1.sh │ │ ├── ernie-1.0.out │ │ ├── ernie-1.0.sh │ │ ├── ernie-2.0-en-finetuned-squad.out │ │ ├── ernie-2.0-en-finetuned-squad.sh │ │ ├── ernie-2.0-en.out │ │ ├── ernie-2.0-en.sh │ │ ├── ernie-doc-base-en.out │ │ ├── ernie-doc-base-en.sh │ │ ├── ernie-doc-base-zh.out │ │ ├── ernie-doc-base-zh.sh │ │ ├── ernie-gen-base-en.out │ │ ├── ernie-gen-base-en.sh │ │ ├── ernie-gen-large-en-430g.out │ │ ├── ernie-gen-large-en-430g.sh │ │ ├── ernie-gen-large-en.out │ │ ├── ernie-gen-large-en.sh │ │ ├── ernie-gram-zh.out │ │ ├── ernie-gram-zh.sh │ │ ├── ernie-tiny.out │ │ ├── ernie-tiny.sh │ │ ├── fabriceyhc │ │ ├── bert-base-uncased-amazon_polarity.out │ │ └── bert-base-uncased-amazon_polarity.sh │ │ ├── facebook │ │ ├── muppet-roberta-base.out │ │ ├── muppet-roberta-base.sh │ │ ├── muppet-roberta-large.out │ │ └── muppet-roberta-large.sh │ │ ├── felflare │ │ ├── bert-restore-punctuation.out │ │ └── bert-restore-punctuation.sh │ │ ├── finiteautomata │ │ ├── beto-sentiment-analysis.out │ │ └── beto-sentiment-analysis.sh │ │ ├── flax-community │ │ ├── gpt2-medium-indonesian.out │ │ ├── gpt2-medium-indonesian.sh │ │ ├── gpt2-medium-persian.out │ │ ├── gpt2-medium-persian.sh │ │ ├── gpt2-small-indonesian.out │ │ └── gpt2-small-indonesian.sh │ │ ├── flexudy │ │ ├── t5-small-wav2vec2-grammar-fixer.out │ │ └── t5-small-wav2vec2-grammar-fixer.sh │ │ ├── google │ │ ├── bert_uncased_L-2_H-128_A-2.out │ │ ├── bert_uncased_L-2_H-128_A-2.sh │ │ ├── bert_uncased_L-4_H-256_A-4.out │ │ ├── bert_uncased_L-4_H-256_A-4.sh │ │ ├── bert_uncased_L-4_H-512_A-8.out │ │ ├── bert_uncased_L-4_H-512_A-8.sh │ │ ├── bert_uncased_L-6_H-256_A-4.out │ │ ├── bert_uncased_L-6_H-256_A-4.sh │ │ ├── bert_uncased_L-8_H-512_A-8.out │ │ ├── bert_uncased_L-8_H-512_A-8.sh │ │ ├── muril-base-cased.out │ │ ├── muril-base-cased.sh │ │ ├── t5-base-lm-adapt.out │ │ ├── t5-base-lm-adapt.sh │ │ ├── t5-large-ssm-nq.out │ │ ├── t5-large-ssm-nq.sh │ │ ├── t5-large-ssm.out │ │ ├── t5-large-ssm.sh │ │ ├── t5-small-lm-adapt.out │ │ ├── t5-small-lm-adapt.sh │ │ ├── t5-small-ssm-nq.out │ │ ├── t5-small-ssm-nq.sh │ │ ├── t5-v1_1-base.out │ │ ├── t5-v1_1-base.sh │ │ ├── t5-v1_1-large.out │ │ ├── t5-v1_1-large.sh │ │ ├── t5-v1_1-small.out │ │ └── t5-v1_1-small.sh │ │ ├── gorkemgoknar │ │ ├── gpt2-small-turkish.out │ │ └── gpt2-small-turkish.sh │ │ ├── gpt-cpm-large-cn.out │ │ ├── gpt-cpm-large-cn.sh │ │ ├── gpt-cpm-small-cn-distill.out │ │ ├── gpt-cpm-small-cn-distill.sh │ │ ├── gpt2-en.out │ │ ├── gpt2-en.sh │ │ ├── gpt2-large-en.out │ │ ├── gpt2-large-en.sh │ │ ├── gpt2-medium-en.out │ │ ├── gpt2-medium-en.sh │ │ ├── gpt2-xl-en.out │ │ ├── gpt2-xl-en.sh │ │ ├── hf-internal-testing │ │ ├── tiny-bert-for-token-classification.out │ │ ├── tiny-bert-for-token-classification.sh │ │ ├── tiny-random-gpt2.out │ │ └── tiny-random-gpt2.sh │ │ ├── hfl │ │ ├── chinese-bert-wwm-ext.out │ │ ├── chinese-bert-wwm-ext.sh │ │ ├── chinese-bert-wwm.out │ │ ├── chinese-bert-wwm.sh │ │ ├── chinese-macbert-large.out │ │ ├── chinese-macbert-large.sh │ │ ├── rbt3.out │ │ └── rbt3.sh │ │ ├── huawei-noah │ │ ├── TinyBERT_General_4L_312D.out │ │ └── TinyBERT_General_4L_312D.sh │ │ ├── huggingface │ │ ├── CodeBERTa-language-id.out │ │ ├── CodeBERTa-language-id.sh │ │ ├── CodeBERTa-small-v1.out │ │ └── CodeBERTa-small-v1.sh │ │ ├── huggingtweets │ │ ├── hel_ql-shahdashrf_-sinnerslayerr-witheredstrings.out │ │ ├── hel_ql-shahdashrf_-sinnerslayerr-witheredstrings.sh │ │ ├── slime_machine.out │ │ ├── slime_machine.sh │ │ ├── wwm_shakespeare.out │ │ └── wwm_shakespeare.sh │ │ ├── indolem │ │ ├── indobert-base-uncased.out │ │ └── indobert-base-uncased.sh │ │ ├── indonesian-nlp │ │ ├── gpt2.out │ │ └── gpt2.sh │ │ ├── iverxin │ │ ├── bert-base-japanese-char-whole-word-masking.out │ │ ├── bert-base-japanese-char-whole-word-masking.sh │ │ ├── bert-base-japanese-char.out │ │ ├── bert-base-japanese-char.sh │ │ ├── bert-base-japanese-whole-word-masking.out │ │ ├── bert-base-japanese-whole-word-masking.sh │ │ ├── bert-base-japanese.out │ │ └── bert-base-japanese.sh │ │ ├── j-hartmann │ │ ├── emotion-english-distilroberta-base.out │ │ └── emotion-english-distilroberta-base.sh │ │ ├── jcblaise │ │ ├── gpt2-tagalog.out │ │ └── gpt2-tagalog.sh │ │ ├── johngiorgi │ │ ├── declutr-base.out │ │ └── declutr-base.sh │ │ ├── junnyu │ │ ├── ckiplab-bert-base-chinese-ner.out │ │ ├── ckiplab-bert-base-chinese-ner.sh │ │ ├── ckiplab-bert-base-chinese-pos.out │ │ ├── ckiplab-bert-base-chinese-pos.sh │ │ ├── ckiplab-bert-base-chinese-ws.out │ │ ├── ckiplab-bert-base-chinese-ws.sh │ │ ├── distilgpt2.out │ │ ├── distilgpt2.sh │ │ ├── hfl-chinese-electra-180g-base-discriminator.out │ │ ├── hfl-chinese-electra-180g-base-discriminator.sh │ │ ├── hfl-chinese-electra-180g-small-ex-discriminator.out │ │ ├── hfl-chinese-electra-180g-small-ex-discriminator.sh │ │ ├── hfl-chinese-legal-electra-small-generator.out │ │ ├── hfl-chinese-legal-electra-small-generator.sh │ │ ├── microsoft-DialoGPT-large.out │ │ ├── microsoft-DialoGPT-large.sh │ │ ├── microsoft-DialoGPT-medium.out │ │ ├── microsoft-DialoGPT-medium.sh │ │ ├── microsoft-DialoGPT-small.out │ │ ├── microsoft-DialoGPT-small.sh │ │ ├── nlptown-bert-base-multilingual-uncased-sentiment.out │ │ ├── nlptown-bert-base-multilingual-uncased-sentiment.sh │ │ ├── tbs17-MathBERT.out │ │ ├── tbs17-MathBERT.sh │ │ ├── uer-gpt2-chinese-poem.out │ │ └── uer-gpt2-chinese-poem.sh │ │ ├── klue │ │ ├── bert-base.out │ │ └── bert-base.sh │ │ ├── kykim │ │ ├── bert-kor-base.out │ │ └── bert-kor-base.sh │ │ ├── lassl │ │ ├── roberta-ko-small.out │ │ └── roberta-ko-small.sh │ │ ├── layoutlm-base-uncased.out │ │ ├── layoutlm-base-uncased.sh │ │ ├── layoutlm-large-uncased.out │ │ ├── layoutlm-large-uncased.sh │ │ ├── layoutlmv2-base-uncased.out │ │ ├── layoutlmv2-base-uncased.sh │ │ ├── layoutlmv2-large-uncased.out │ │ ├── layoutlmv2-large-uncased.sh │ │ ├── layoutxlm-base-uncased.out │ │ ├── layoutxlm-base-uncased.sh │ │ ├── lvwerra │ │ ├── gpt2-imdb.out │ │ └── gpt2-imdb.sh │ │ ├── macbert-base-chinese.out │ │ ├── macbert-base-chinese.sh │ │ ├── macbert-large-chinese.out │ │ ├── macbert-large-chinese.sh │ │ ├── macedonizer │ │ ├── hr-gpt2.out │ │ ├── hr-gpt2.sh │ │ ├── mk-roberta-base.out │ │ ├── mk-roberta-base.sh │ │ ├── sr-gpt2.out │ │ └── sr-gpt2.sh │ │ ├── mbart-large-50-many-to-many-mmt.out │ │ ├── mbart-large-50-many-to-many-mmt.sh │ │ ├── mbart-large-50-many-to-one-mmt.out │ │ ├── mbart-large-50-many-to-one-mmt.sh │ │ ├── mbart-large-50-one-to-many-mmt.out │ │ ├── mbart-large-50-one-to-many-mmt.sh │ │ ├── mbart-large-cc25.out │ │ ├── mbart-large-cc25.sh │ │ ├── mbart-large-en-ro.out │ │ ├── mbart-large-en-ro.sh │ │ ├── megagonlabs │ │ ├── t5-base-japanese-web.out │ │ └── t5-base-japanese-web.sh │ │ ├── mental │ │ ├── mental-roberta-base.out │ │ └── mental-roberta-base.sh │ │ ├── microsoft │ │ ├── BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext.out │ │ ├── BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext.sh │ │ ├── BiomedNLP-PubMedBERT-base-uncased-abstract.out │ │ ├── BiomedNLP-PubMedBERT-base-uncased-abstract.sh │ │ ├── CodeGPT-small-java-adaptedGPT2.out │ │ ├── CodeGPT-small-java-adaptedGPT2.sh │ │ ├── CodeGPT-small-py-adaptedGPT2.out │ │ ├── CodeGPT-small-py-adaptedGPT2.sh │ │ ├── CodeGPT-small-py.out │ │ ├── CodeGPT-small-py.sh │ │ ├── DialoGPT-large.out │ │ ├── DialoGPT-large.sh │ │ ├── DialoGPT-small.out │ │ ├── DialoGPT-small.sh │ │ ├── DialogRPT-depth.out │ │ ├── DialogRPT-depth.sh │ │ ├── DialogRPT-human-vs-machine.out │ │ ├── DialogRPT-human-vs-machine.sh │ │ ├── DialogRPT-human-vs-rand.out │ │ ├── DialogRPT-human-vs-rand.sh │ │ ├── DialogRPT-updown.out │ │ ├── DialogRPT-updown.sh │ │ ├── DialogRPT-width.out │ │ ├── DialogRPT-width.sh │ │ ├── codebert-base-mlm.out │ │ ├── codebert-base-mlm.sh │ │ ├── graphcodebert-base.out │ │ └── graphcodebert-base.sh │ │ ├── mobilebert-uncased.out │ │ ├── mobilebert-uncased.sh │ │ ├── models.txt │ │ ├── monologg │ │ ├── bert-base-cased-goemotions-group.out │ │ ├── bert-base-cased-goemotions-group.sh │ │ ├── bert-base-cased-goemotions-original.out │ │ └── bert-base-cased-goemotions-original.sh │ │ ├── mpnet-base.out │ │ ├── mpnet-base.sh │ │ ├── mrm8488 │ │ ├── GPT-2-finetuned-common_gen.out │ │ ├── GPT-2-finetuned-common_gen.sh │ │ ├── GPT-2-finetuned-covid-bio-medrxiv.out │ │ ├── GPT-2-finetuned-covid-bio-medrxiv.sh │ │ ├── bert-medium-finetuned-squadv2.out │ │ ├── bert-medium-finetuned-squadv2.sh │ │ ├── bert-small-finetuned-squadv2.out │ │ ├── bert-small-finetuned-squadv2.sh │ │ ├── bert-spanish-cased-finetuned-ner.out │ │ ├── bert-spanish-cased-finetuned-ner.sh │ │ ├── bert-tiny-finetuned-sms-spam-detection.out │ │ ├── bert-tiny-finetuned-sms-spam-detection.sh │ │ ├── distill-bert-base-spanish-wwm-cased-finetuned-spa-squad2-es.out │ │ ├── distill-bert-base-spanish-wwm-cased-finetuned-spa-squad2-es.sh │ │ ├── distilroberta-finetuned-financial-news-sentiment-analysis.out │ │ ├── distilroberta-finetuned-financial-news-sentiment-analysis.sh │ │ ├── distilroberta-finetuned-tweets-hate-speech.out │ │ ├── distilroberta-finetuned-tweets-hate-speech.sh │ │ ├── t5-base-finetuned-common_gen.out │ │ ├── t5-base-finetuned-common_gen.sh │ │ ├── t5-small-finetuned-quora-for-paraphrasing.out │ │ └── t5-small-finetuned-quora-for-paraphrasing.sh │ │ ├── navteca │ │ ├── quora-roberta-base.out │ │ ├── quora-roberta-base.sh │ │ ├── roberta-base-squad2.out │ │ ├── roberta-base-squad2.sh │ │ ├── roberta-large-squad2.out │ │ └── roberta-large-squad2.sh │ │ ├── neuralmind │ │ ├── bert-base-portuguese-cased.out │ │ ├── bert-base-portuguese-cased.sh │ │ ├── bert-large-portuguese-cased.out │ │ └── bert-large-portuguese-cased.sh │ │ ├── nezha-base-chinese.out │ │ ├── nezha-base-chinese.sh │ │ ├── nezha-base-wwm-chinese.out │ │ ├── nezha-base-wwm-chinese.sh │ │ ├── nezha-large-chinese.out │ │ ├── nezha-large-chinese.sh │ │ ├── nezha-large-wwm-chinese.out │ │ ├── nezha-large-wwm-chinese.sh │ │ ├── nielsr │ │ ├── nt5-small-rc1.out │ │ └── nt5-small-rc1.sh │ │ ├── nlpaueb │ │ ├── bert-base-greek-uncased-v1.out │ │ ├── bert-base-greek-uncased-v1.sh │ │ ├── legal-bert-base-uncased.out │ │ ├── legal-bert-base-uncased.sh │ │ ├── legal-bert-small-uncased.out │ │ └── legal-bert-small-uncased.sh │ │ ├── nlptown │ │ ├── bert-base-multilingual-uncased-sentiment.out │ │ └── bert-base-multilingual-uncased-sentiment.sh │ │ ├── nosaydomore │ │ ├── deepset-roberta-base-squad2.out │ │ ├── deepset-roberta-base-squad2.sh │ │ ├── roberta-en-base.out │ │ ├── roberta-en-base.sh │ │ ├── roberta-en-large.out │ │ ├── roberta-en-large.sh │ │ ├── sshleifei-tiny-distilroberta-base.out │ │ ├── sshleifei-tiny-distilroberta-base.sh │ │ ├── uer-roberta-base-chn-extractive-qa.out │ │ ├── uer-roberta-base-chn-extractive-qa.sh │ │ ├── uer-roberta-base-ft-chinanews-chn.out │ │ ├── uer-roberta-base-ft-chinanews-chn.sh │ │ ├── uer-roberta-base-ft-cluener2020-chn.out │ │ └── uer-roberta-base-ft-cluener2020-chn.sh │ │ ├── nreimers │ │ ├── BERT-Tiny_L-2_H-128_A-2.out │ │ ├── BERT-Tiny_L-2_H-128_A-2.sh │ │ ├── MiniLMv2-L6-H384-distilled-from-RoBERTa-Large.out │ │ └── MiniLMv2-L6-H384-distilled-from-RoBERTa-Large.sh │ │ ├── nyu-mll │ │ ├── roberta-base-100M-1.out │ │ ├── roberta-base-100M-1.sh │ │ ├── roberta-base-1B-1.out │ │ ├── roberta-base-1B-1.sh │ │ ├── roberta-med-small-1M-1.out │ │ └── roberta-med-small-1M-1.sh │ │ ├── oliverguhr │ │ ├── german-sentiment-bert.out │ │ └── german-sentiment-bert.sh │ │ ├── onlplab │ │ ├── alephbert-base.out │ │ └── alephbert-base.sh │ │ ├── ozcangundes │ │ ├── T5-base-for-BioQA.out │ │ └── T5-base-for-BioQA.sh │ │ ├── p-christ │ │ ├── 12412fsasf.out │ │ └── 12412fsasf.sh │ │ ├── philschmid │ │ ├── BERT-Banking77.out │ │ └── BERT-Banking77.sh │ │ ├── pierreguillou │ │ ├── bert-base-cased-squad-v1.1-portuguese.out │ │ ├── bert-base-cased-squad-v1.1-portuguese.sh │ │ ├── bert-large-cased-squad-v1.1-portuguese.out │ │ ├── bert-large-cased-squad-v1.1-portuguese.sh │ │ ├── gpt2-small-portuguese.out │ │ └── gpt2-small-portuguese.sh │ │ ├── plato-mini.out │ │ ├── plato-mini.sh │ │ ├── pranavpsv │ │ ├── genre-story-generator-v2.out │ │ ├── genre-story-generator-v2.sh │ │ ├── gpt2-genre-story-generator.out │ │ └── gpt2-genre-story-generator.sh │ │ ├── prithivida │ │ ├── grammar_error_correcter_v1.out │ │ ├── grammar_error_correcter_v1.sh │ │ ├── informal_to_formal_styletransfer.out │ │ ├── informal_to_formal_styletransfer.sh │ │ ├── parrot_fluency_on_BERT.out │ │ ├── parrot_fluency_on_BERT.sh │ │ ├── parrot_paraphraser_on_T5.out │ │ └── parrot_paraphraser_on_T5.sh │ │ ├── ramsrigouthamg │ │ ├── t5-large-paraphraser-diverse-high-quality.out │ │ └── t5-large-paraphraser-diverse-high-quality.sh │ │ ├── razent │ │ ├── SciFive-base-Pubmed_PMC.out │ │ ├── SciFive-base-Pubmed_PMC.sh │ │ ├── SciFive-large-Pubmed_PMC.out │ │ └── SciFive-large-Pubmed_PMC.sh │ │ ├── rbhushan │ │ ├── distilgpt2-finetuned-wikitext2.out │ │ └── distilgpt2-finetuned-wikitext2.sh │ │ ├── rbt3.out │ │ ├── rbt3.sh │ │ ├── rbtl3.out │ │ ├── rbtl3.sh │ │ ├── readerbench │ │ ├── RoGPT2-large.out │ │ └── RoGPT2-large.sh │ │ ├── reformer-crime-and-punishment.out │ │ ├── reformer-crime-and-punishment.sh │ │ ├── reformer-enwik8.out │ │ ├── reformer-enwik8.sh │ │ ├── remotejob │ │ ├── gradientclassification_v0.out │ │ ├── gradientclassification_v0.sh │ │ ├── tweetsDISTILGPT2fi_v4.out │ │ └── tweetsDISTILGPT2fi_v4.sh │ │ ├── roberta-base-openai-detector.out │ │ ├── roberta-base-openai-detector.sh │ │ ├── roberta-base.out │ │ ├── roberta-base.sh │ │ ├── roberta-large-openai-detector.out │ │ ├── roberta-large-openai-detector.sh │ │ ├── roberta-large.out │ │ ├── roberta-large.sh │ │ ├── roberta-wwm-ext-large.out │ │ ├── roberta-wwm-ext-large.sh │ │ ├── roberta-wwm-ext.out │ │ ├── roberta-wwm-ext.sh │ │ ├── roformer-chinese-base.out │ │ ├── roformer-chinese-base.sh │ │ ├── roformer-chinese-char-base.out │ │ ├── roformer-chinese-char-base.sh │ │ ├── roformer-chinese-char-small.out │ │ ├── roformer-chinese-char-small.sh │ │ ├── roformer-chinese-sim-char-base.out │ │ ├── roformer-chinese-sim-char-base.sh │ │ ├── roformer-chinese-sim-char-ft-base.out │ │ ├── roformer-chinese-sim-char-ft-base.sh │ │ ├── roformer-chinese-sim-char-ft-small.out │ │ ├── roformer-chinese-sim-char-ft-small.sh │ │ ├── roformer-chinese-sim-char-small.out │ │ ├── roformer-chinese-sim-char-small.sh │ │ ├── roformer-chinese-small.out │ │ ├── roformer-chinese-small.sh │ │ ├── roformer-english-small-discriminator.out │ │ ├── roformer-english-small-discriminator.sh │ │ ├── roformer-english-small-generator.out │ │ ├── roformer-english-small-generator.sh │ │ ├── ruiqi-zhong │ │ ├── roberta-base-meta-tuning-test.out │ │ └── roberta-base-meta-tuning-test.sh │ │ ├── salesken │ │ ├── grammar_correction.out │ │ ├── grammar_correction.sh │ │ ├── query_wellformedness_score.out │ │ └── query_wellformedness_score.sh │ │ ├── savasy │ │ ├── bert-base-turkish-sentiment-cased.out │ │ └── bert-base-turkish-sentiment-cased.sh │ │ ├── sberbank-ai │ │ ├── ruT5-base.out │ │ ├── ruT5-base.sh │ │ ├── ruT5-large.out │ │ ├── ruT5-large.sh │ │ ├── rugpt3large_based_on_gpt2.out │ │ ├── rugpt3large_based_on_gpt2.sh │ │ ├── rugpt3small_based_on_gpt2.out │ │ └── rugpt3small_based_on_gpt2.sh │ │ ├── seyonec │ │ ├── BPE_SELFIES_PubChem_shard00_160k.out │ │ ├── BPE_SELFIES_PubChem_shard00_160k.sh │ │ ├── ChemBERTA_PubChem1M_shard00_155k.out │ │ ├── ChemBERTA_PubChem1M_shard00_155k.sh │ │ ├── ChemBERTa-zinc-base-v1.out │ │ ├── ChemBERTa-zinc-base-v1.sh │ │ ├── ChemBERTa_zinc250k_v2_40k.out │ │ ├── ChemBERTa_zinc250k_v2_40k.sh │ │ ├── PubChem10M_SMILES_BPE_396_250.out │ │ ├── PubChem10M_SMILES_BPE_396_250.sh │ │ ├── PubChem10M_SMILES_BPE_450k.out │ │ ├── PubChem10M_SMILES_BPE_450k.sh │ │ ├── PubChem10M_SMILES_BPE_50k.out │ │ └── PubChem10M_SMILES_BPE_50k.sh │ │ ├── shahrukhx01 │ │ ├── bert-mini-finetune-question-detection.out │ │ └── bert-mini-finetune-question-detection.sh │ │ ├── shibing624 │ │ ├── macbert4csc-base-chinese.out │ │ ├── macbert4csc-base-chinese.sh │ │ ├── text2vec-base-chinese.out │ │ └── text2vec-base-chinese.sh │ │ ├── shiyue │ │ ├── roberta-large-tac08.out │ │ └── roberta-large-tac08.sh │ │ ├── siebert │ │ ├── sentiment-roberta-large-english.out │ │ └── sentiment-roberta-large-english.sh │ │ ├── simbert-base-chinese.out │ │ ├── simbert-base-chinese.sh │ │ ├── skep_ernie_1.0_large_ch.out │ │ ├── skep_ernie_1.0_large_ch.sh │ │ ├── skep_ernie_2.0_large_en.out │ │ ├── skep_ernie_2.0_large_en.sh │ │ ├── skep_roberta_large_en.out │ │ ├── skep_roberta_large_en.sh │ │ ├── snrspeaks │ │ ├── t5-one-line-summary.out │ │ └── t5-one-line-summary.sh │ │ ├── softcatala │ │ ├── julibert.out │ │ └── julibert.sh │ │ ├── sonoisa │ │ ├── t5-base-japanese-question-generation.out │ │ ├── t5-base-japanese-question-generation.sh │ │ ├── t5-base-japanese.out │ │ └── t5-base-japanese.sh │ │ ├── squeezebert-mnli-headless.out │ │ ├── squeezebert-mnli-headless.sh │ │ ├── squeezebert-mnli.out │ │ ├── squeezebert-mnli.sh │ │ ├── squeezebert-uncased.out │ │ ├── squeezebert-uncased.sh │ │ ├── sshleifer-tiny-ctrl.out │ │ ├── sshleifer-tiny-ctrl.sh │ │ ├── sshleifer-tiny-distilbert-base-uncase-finetuned-sst-2-english.out │ │ ├── sshleifer-tiny-distilbert-base-uncase-finetuned-sst-2-english.sh │ │ ├── sshleifer │ │ ├── tiny-dbmdz-bert-large-cased-finetuned-conll03-english.out │ │ ├── tiny-dbmdz-bert-large-cased-finetuned-conll03-english.sh │ │ ├── tiny-distilbert-base-cased.out │ │ ├── tiny-distilbert-base-cased.sh │ │ ├── tiny-distilroberta-base.out │ │ ├── tiny-distilroberta-base.sh │ │ ├── tiny-gpt2.out │ │ └── tiny-gpt2.sh │ │ ├── t5-base.out │ │ ├── t5-base.sh │ │ ├── t5-large.out │ │ ├── t5-large.sh │ │ ├── t5-small.out │ │ ├── t5-small.sh │ │ ├── tennessejoyce │ │ ├── titlewave-t5-base.out │ │ └── titlewave-t5-base.sh │ │ ├── textattack │ │ ├── bert-base-uncased-CoLA.out │ │ ├── bert-base-uncased-CoLA.sh │ │ ├── bert-base-uncased-MNLI.out │ │ ├── bert-base-uncased-MNLI.sh │ │ ├── bert-base-uncased-MRPC.out │ │ ├── bert-base-uncased-MRPC.sh │ │ ├── bert-base-uncased-QNLI.out │ │ ├── bert-base-uncased-QNLI.sh │ │ ├── bert-base-uncased-QQP.out │ │ ├── bert-base-uncased-QQP.sh │ │ ├── bert-base-uncased-RTE.out │ │ ├── bert-base-uncased-RTE.sh │ │ ├── bert-base-uncased-SST-2.out │ │ ├── bert-base-uncased-SST-2.sh │ │ ├── bert-base-uncased-STS-B.out │ │ ├── bert-base-uncased-STS-B.sh │ │ ├── bert-base-uncased-WNLI.out │ │ ├── bert-base-uncased-WNLI.sh │ │ ├── bert-base-uncased-ag-news.out │ │ ├── bert-base-uncased-ag-news.sh │ │ ├── bert-base-uncased-imdb.out │ │ ├── bert-base-uncased-imdb.sh │ │ ├── bert-base-uncased-rotten-tomatoes.out │ │ ├── bert-base-uncased-rotten-tomatoes.sh │ │ ├── bert-base-uncased-rotten_tomatoes.out │ │ ├── bert-base-uncased-rotten_tomatoes.sh │ │ ├── bert-base-uncased-snli.out │ │ ├── bert-base-uncased-snli.sh │ │ ├── roberta-base-CoLA.out │ │ ├── roberta-base-CoLA.sh │ │ ├── roberta-base-MNLI.out │ │ ├── roberta-base-MNLI.sh │ │ ├── roberta-base-MRPC.out │ │ ├── roberta-base-MRPC.sh │ │ ├── roberta-base-QNLI.out │ │ ├── roberta-base-QNLI.sh │ │ ├── roberta-base-SST-2.out │ │ ├── roberta-base-SST-2.sh │ │ ├── roberta-base-ag-news.out │ │ ├── roberta-base-ag-news.sh │ │ ├── roberta-base-imdb.out │ │ └── roberta-base-imdb.sh │ │ ├── thatdramebaazguy │ │ ├── roberta-base-squad.out │ │ └── roberta-base-squad.sh │ │ ├── tinybert-4l-312d-v2.out │ │ ├── tinybert-4l-312d-v2.sh │ │ ├── tinybert-4l-312d-zh.out │ │ ├── tinybert-4l-312d-zh.sh │ │ ├── tinybert-4l-312d.out │ │ ├── tinybert-4l-312d.sh │ │ ├── tinybert-6l-768d-v2.out │ │ ├── tinybert-6l-768d-v2.sh │ │ ├── tinybert-6l-768d-zh.out │ │ ├── tinybert-6l-768d-zh.sh │ │ ├── tinybert-6l-768d.out │ │ ├── tinybert-6l-768d.sh │ │ ├── tli8hf │ │ ├── unqover-roberta-base-squad.out │ │ └── unqover-roberta-base-squad.sh │ │ ├── top10.out │ │ ├── top10.sh │ │ ├── tscholak │ │ ├── 3vnuv1vf.out │ │ ├── 3vnuv1vf.sh │ │ ├── t5.1.1.lm100k.base.out │ │ └── t5.1.1.lm100k.base.sh │ │ ├── uer │ │ ├── roberta-base-chinese-extractive-qa.out │ │ ├── roberta-base-chinese-extractive-qa.sh │ │ ├── roberta-base-finetuned-cluener2020-chinese.out │ │ └── roberta-base-finetuned-cluener2020-chinese.sh │ │ ├── ufal │ │ ├── robeczech-base.out │ │ └── robeczech-base.sh │ │ ├── uklfr │ │ ├── gottbert-base.out │ │ └── gottbert-base.sh │ │ ├── unified_transformer-12L-cn-luge.out │ │ ├── unified_transformer-12L-cn-luge.sh │ │ ├── unified_transformer-12L-cn.out │ │ ├── unified_transformer-12L-cn.sh │ │ ├── unimo-text-1.0-large.out │ │ ├── unimo-text-1.0-large.sh │ │ ├── unimo-text-1.0-lcsts-new.out │ │ ├── unimo-text-1.0-lcsts-new.sh │ │ ├── unimo-text-1.0.out │ │ ├── unimo-text-1.0.sh │ │ ├── unitary │ │ ├── toxic-bert.out │ │ └── toxic-bert.sh │ │ ├── uw-hai │ │ ├── polyjuice.out │ │ └── polyjuice.sh │ │ ├── valhalla │ │ ├── t5-small-e2e-qg.out │ │ ├── t5-small-e2e-qg.sh │ │ ├── t5-small-qa-qg-hl.out │ │ ├── t5-small-qa-qg-hl.sh │ │ ├── t5-small-qg-hl.out │ │ ├── t5-small-qg-hl.sh │ │ ├── t5-small-qg-prepend.out │ │ └── t5-small-qg-prepend.sh │ │ ├── vblagoje │ │ ├── bert-english-uncased-finetuned-pos.out │ │ └── bert-english-uncased-finetuned-pos.sh │ │ ├── vennify │ │ ├── t5-base-grammar-correction.out │ │ └── t5-base-grammar-correction.sh │ │ ├── vinai │ │ ├── bertweet-large.out │ │ └── bertweet-large.sh │ │ ├── w11wo │ │ ├── javanese-gpt2-small-imdb.out │ │ └── javanese-gpt2-small-imdb.sh │ │ ├── wietsedv │ │ ├── bert-base-dutch-cased.out │ │ └── bert-base-dutch-cased.sh │ │ ├── xlnet-base-cased.out │ │ ├── xlnet-base-cased.sh │ │ ├── xlnet-large-cased.out │ │ ├── xlnet-large-cased.sh │ │ ├── ynie │ │ ├── roberta-large-snli_mnli_fever_anli_R1_R2_R3-nli.out │ │ ├── roberta-large-snli_mnli_fever_anli_R1_R2_R3-nli.sh │ │ ├── roberta-large_conv_contradiction_detector_v0.out │ │ └── roberta-large_conv_contradiction_detector_v0.sh │ │ └── youscan │ │ ├── ukr-roberta-base.out │ │ └── ukr-roberta-base.sh │ └── task │ ├── audio-classification.out │ ├── audio-classification.sh │ ├── audio-to-audio.out │ ├── audio-to-audio.sh │ ├── automatic-speech-recognition.out │ ├── automatic-speech-recognition.sh │ ├── conversational.out │ ├── conversational.sh │ ├── feature-extraction.out │ ├── feature-extraction.sh │ ├── fill-mask.out │ ├── fill-mask.sh │ ├── image-classification.out │ ├── image-classification.sh │ ├── image-segmentation.out │ ├── image-segmentation.sh │ ├── image-to-text.out │ ├── image-to-text.sh │ ├── object-detection.out │ ├── object-detection.sh │ ├── protein-folding.out │ ├── protein-folding.sh │ ├── question-answering.out │ ├── question-answering.sh │ ├── sentence-similarity.out │ ├── sentence-similarity.sh │ ├── speech-segmentation.out │ ├── speech-segmentation.sh │ ├── structured-data-classification.out │ ├── structured-data-classification.sh │ ├── summarization.out │ ├── summarization.sh │ ├── table-question-answering.out │ ├── table-question-answering.sh │ ├── text-classification.out │ ├── text-classification.sh │ ├── text-generation.out │ ├── text-generation.sh │ ├── text-to-image.out │ ├── text-to-image.sh │ ├── text-to-speech.out │ ├── text-to-speech.sh │ ├── text2text-generation.out │ ├── text2text-generation.sh │ ├── token-classification.out │ ├── token-classification.sh │ ├── top10.out │ ├── top10.sh │ ├── translation.out │ ├── translation.sh │ ├── voice-activity-detection.out │ ├── voice-activity-detection.sh │ ├── zero-shot-classification.out │ ├── zero-shot-classification.sh │ ├── zero-shot-image-classification.out │ └── zero-shot-image-classification.sh ├── gft ├── __init__.py ├── gft_cat_data ├── gft_cat_data.py ├── gft_eval ├── gft_eval.py ├── gft_fit ├── gft_fit.py ├── gft_internals │ ├── #paddle_model_zoo.py# │ ├── __init__.py │ ├── eval_for_classify.py │ ├── eval_for_classify_classic.py │ ├── eval_for_classify_hf.py │ ├── eval_for_classify_pd.py │ ├── eval_for_classify_spans.py │ ├── eval_for_classify_spans_hf.py │ ├── eval_for_classify_spans_pd.py │ ├── eval_for_classify_tokens.py │ ├── eval_for_ctc.py │ ├── eval_for_regress.py │ ├── eval_for_regress_hf.py │ ├── eval_for_regress_pd.py │ ├── fit_for_classify.py │ ├── fit_for_classify_classic.py │ ├── fit_for_classify_hf.py │ ├── fit_for_classify_pd.py │ ├── fit_for_classify_spans.py │ ├── fit_for_classify_spans_hf.py │ ├── fit_for_classify_spans_pd.py │ ├── fit_for_classify_tokens.py │ ├── fit_for_ctc.py │ ├── fit_for_regress.py │ ├── fit_for_regress_hf.py │ ├── fit_for_regress_pd.py │ ├── gft_predict_hf.py │ ├── gft_predict_pd.py │ ├── gft_summary_hf.py │ ├── gft_summary_pd.py │ ├── gft_util.py │ ├── huggingface_hub │ │ ├── README.md │ │ ├── __init__.py │ │ ├── adapters.txt │ │ ├── best_of │ │ │ ├── datasets.html │ │ │ └── datasets │ │ │ │ └── README.md │ │ ├── downloads.jpg │ │ ├── has_tokenizer.py │ │ ├── huggingface_datasets.txt │ │ ├── huggingface_datasets_and_models.txt │ │ ├── huggingface_models.txt │ │ ├── huggingface_models_with_labels.txt │ │ ├── jobs │ │ │ └── love.sh │ │ ├── labels │ │ │ └── emotion.txt │ │ ├── list_adapters.py │ │ ├── list_huggingface_datasets.py │ │ ├── list_huggingface_datasets_and_models.py │ │ ├── list_huggingface_models.py │ │ └── models_for_dataset.py │ ├── loadable_models.py │ ├── my_auto_model_hf.py │ ├── my_auto_model_pd.py │ ├── my_auto_model_util.py │ ├── my_datasets.py │ ├── my_task.py │ ├── paddle_dataset_zoo.py │ ├── paddle_model_zoo.py │ ├── paddle_model_zoo.txt │ ├── parse_args.py │ ├── parse_eqn.py │ ├── predict_speech.py │ ├── prepare_datasets │ │ ├── __init__.py │ │ ├── dataset_to_case_labels.py │ │ └── dataset_to_text.py │ ├── run_qa.py │ ├── sklearn_metrics │ │ ├── __init__.py │ │ ├── accuracy_score.py │ │ ├── adjusted_mutual_info_score.py │ │ ├── adjusted_rand_score.py │ │ ├── average_precision_score.py │ │ ├── balanced_accuracy_score.py │ │ ├── brier_score_loss.py │ │ ├── completeness_score.py │ │ ├── explained_variance_score.py │ │ ├── fowlkes_mallows_score.py │ │ ├── homogeneity_score.py │ │ ├── jaccard_score.py │ │ ├── log_loss.py │ │ ├── max_error.py │ │ ├── mean_absolute_error.py │ │ ├── mean_absolute_percentage_error.py │ │ ├── mean_gamma_deviance.py │ │ ├── mean_poisson_deviance.py │ │ ├── mean_squared_error.py │ │ ├── mean_squared_log_error.py │ │ ├── median_absolute_error.py │ │ ├── multiclass_glue.py │ │ ├── mutual_info_score.py │ │ ├── normalized_mutual_info_score.py │ │ ├── r2_score.py │ │ ├── rand_score.py │ │ ├── recall_score.py │ │ ├── roc_auc_score.py │ │ ├── top_k_accuracy_score.py │ │ ├── v_measure_score.py │ │ └── weighted_glue.py │ ├── trainer_qa.py │ └── utils_qa.py ├── gft_predict ├── gft_predict.py ├── gft_summary └── gft_summary.py ├── requirements ├── README.md ├── create_new_venv.sh ├── frozen.txt ├── requirements.txt ├── requirements_for_paddlespeech.txt ├── requirements_simple_cpu.txt ├── requirements_with_adapters.txt ├── requirements_without_adapters-cpu.txt ├── requirements_without_adapters.txt └── requirements_without_gpu.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/README.md -------------------------------------------------------------------------------- /README.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/README.old.md -------------------------------------------------------------------------------- /datasets/KGC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/LICENSE -------------------------------------------------------------------------------- /datasets/KGC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/README.md -------------------------------------------------------------------------------- /datasets/KGC/WN18RR.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/WN18RR.test -------------------------------------------------------------------------------- /datasets/KGC/WN18RR.tiny.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/WN18RR.tiny.test -------------------------------------------------------------------------------- /datasets/KGC/WN18RR.tiny.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/WN18RR.tiny.train -------------------------------------------------------------------------------- /datasets/KGC/WN18RR.tiny.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/WN18RR.tiny.val -------------------------------------------------------------------------------- /datasets/KGC/WN18RR.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/WN18RR.train -------------------------------------------------------------------------------- /datasets/KGC/WN18RR.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/KGC/WN18RR.val -------------------------------------------------------------------------------- /datasets/VAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/README.md -------------------------------------------------------------------------------- /datasets/VAD/VAD.small_splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/VAD.small_splits.txt -------------------------------------------------------------------------------- /datasets/VAD/VAD.tiny_splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/VAD.tiny_splits.txt -------------------------------------------------------------------------------- /datasets/VAD/VAD_splits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/VAD_splits.txt -------------------------------------------------------------------------------- /datasets/VAD/reconstitute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/reconstitute.sh -------------------------------------------------------------------------------- /datasets/VAD/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/README.md -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.1000k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.1000k.test -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.1000k.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.1000k.train -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.1000k.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.1000k.val -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.100k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.100k.test -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.100k.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.100k.train -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.100k.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.100k.val -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.10k.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.10k.test -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.10k.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.10k.train -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.10k.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.10k.val -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.tiny.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.tiny.test -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.tiny.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.tiny.train -------------------------------------------------------------------------------- /datasets/VAD/simple/VAD.simple.tiny.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/VAD.simple.tiny.val -------------------------------------------------------------------------------- /datasets/VAD/simple/sample_one_out_of_domain.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/VAD/simple/sample_one_out_of_domain.test -------------------------------------------------------------------------------- /datasets/syn_ant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/README.md -------------------------------------------------------------------------------- /datasets/syn_ant/tag-adj-pairs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-adj-pairs.test -------------------------------------------------------------------------------- /datasets/syn_ant/tag-adj-pairs.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-adj-pairs.train -------------------------------------------------------------------------------- /datasets/syn_ant/tag-adj-pairs.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-adj-pairs.val -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-pairs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-pairs.test -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-pairs.tiny.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-pairs.tiny.test -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-pairs.tiny.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-pairs.tiny.train -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-pairs.tiny.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-pairs.tiny.val -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-pairs.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-pairs.train -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-pairs.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-pairs.val -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-small-pairs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-small-pairs.test -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-small-pairs.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-small-pairs.train -------------------------------------------------------------------------------- /datasets/syn_ant/tag-fallows-small-pairs.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-fallows-small-pairs.val -------------------------------------------------------------------------------- /datasets/syn_ant/tag-noun-pairs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-noun-pairs.test -------------------------------------------------------------------------------- /datasets/syn_ant/tag-noun-pairs.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-noun-pairs.train -------------------------------------------------------------------------------- /datasets/syn_ant/tag-noun-pairs.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-noun-pairs.val -------------------------------------------------------------------------------- /datasets/syn_ant/tag-verb-pairs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-verb-pairs.test -------------------------------------------------------------------------------- /datasets/syn_ant/tag-verb-pairs.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-verb-pairs.train -------------------------------------------------------------------------------- /datasets/syn_ant/tag-verb-pairs.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/datasets/syn_ant/tag-verb-pairs.val -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/for_developers_only/error_logs/20220322.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/for_developers_only/error_logs/20220322.txt -------------------------------------------------------------------------------- /doc/for_developers_only/misc/not_working.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/for_developers_only/misc/not_working.txt -------------------------------------------------------------------------------- /doc/for_developers_only/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/for_developers_only/questions.md -------------------------------------------------------------------------------- /doc/for_developers_only/topics_to_discuss/#20220329.md#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/for_developers_only/topics_to_discuss/#20220329.md# -------------------------------------------------------------------------------- /doc/for_developers_only/topics_to_discuss/20220329.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/for_developers_only/topics_to_discuss/20220329.md -------------------------------------------------------------------------------- /doc/for_developers_only/topics_to_discuss/20220405.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/for_developers_only/topics_to_discuss/20220405.md -------------------------------------------------------------------------------- /doc/old_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/old_README.md -------------------------------------------------------------------------------- /doc/sections/arguments/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/arguments.md -------------------------------------------------------------------------------- /doc/sections/arguments/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/data.md -------------------------------------------------------------------------------- /doc/sections/arguments/eqn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/eqn.md -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/README.md -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SA1.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SA1.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SA2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SA2.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SI499.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SI499.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SX139.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SX139.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SX229.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SX229.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SX319.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SX319.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SX409.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SX409.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/inputs/objects/wav/TIMIT/SX49.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/inputs/objects/wav/TIMIT/SX49.WAV -------------------------------------------------------------------------------- /doc/sections/arguments/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/model.md -------------------------------------------------------------------------------- /doc/sections/arguments/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/arguments/task.md -------------------------------------------------------------------------------- /doc/sections/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/cheatsheet.md -------------------------------------------------------------------------------- /doc/sections/examples/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/examples/examples.md -------------------------------------------------------------------------------- /doc/sections/functions/gft_cat_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/functions/gft_cat_data.md -------------------------------------------------------------------------------- /doc/sections/functions/gft_eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/functions/gft_eval.md -------------------------------------------------------------------------------- /doc/sections/functions/gft_fit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/functions/gft_fit.md -------------------------------------------------------------------------------- /doc/sections/functions/gft_predict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/functions/gft_predict.md -------------------------------------------------------------------------------- /doc/sections/functions/gft_predict/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/functions/gft_predict/image.md -------------------------------------------------------------------------------- /doc/sections/functions/gft_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/functions/gft_summary.md -------------------------------------------------------------------------------- /doc/sections/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/glossary.md -------------------------------------------------------------------------------- /doc/sections/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/installation.md -------------------------------------------------------------------------------- /doc/sections/intro/simple_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/intro/simple_examples.md -------------------------------------------------------------------------------- /doc/sections/intro/standard_recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/doc/sections/intro/standard_recipe.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/eval_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/eval_examples/README.md -------------------------------------------------------------------------------- /examples/eval_examples/errors2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/eval_examples/errors2.txt -------------------------------------------------------------------------------- /examples/eval_examples/errors3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/eval_examples/errors3.txt -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.HuggingFace/our_models/glue/qnli.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-91.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.HuggingFace/our_models/text_classification/snli.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-89.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.HuggingFace/their_models/AdapterHub/boolq.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-86.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.HuggingFace/their_models/AdapterHub/squad.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-27.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.HuggingFace/their_models/glue/mnli_mismatched.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-84.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.HuggingFace/their_models/paraphrase/paws_unlabeled_final.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-27.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.HuggingFace/language/data.Paddle/their_models/sentiment/dureader_yesno.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-26.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/VAD/simple/1000k.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-32.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/VAD/simple/100k.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-30 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/VAD/simple/10k.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-32.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.HuggingFace/glue/mnli_matched.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-55.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.HuggingFace/glue/mnli_mismatched.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-55.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.HuggingFace/glue/stsb.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-55.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.HuggingFace/question_answering/squad.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-56.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/our_models/glue/mnli_matched.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-44.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/our_models/glue/mnli_mismatched.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-35.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/our_models/glue/mrpc.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-35.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/our_models/glue/qnli.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-35.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/question_answering/squad.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-53.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/bq_corpus/ernie-doc-base-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-44.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/bq_corpus/ernie-doc-base-zh.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-47.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/bq_corpus/ernie-gen-base-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-47.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/bq_corpus/ernie-gen-large-en-430g.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-44.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/bq_corpus/ernie-gen-large-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-47.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/lcqmc/ernie-doc-base-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-51.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/lcqmc/ernie-doc-base-zh.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-52.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/lcqmc/ernie-gen-base-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-52.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/lcqmc/ernie-gen-large-en-430g.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-52.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/lcqmc/ernie-gen-large-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-53.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/paws-x/ernie-doc-base-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-50.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/paws-x/ernie-doc-base-zh.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-51.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/paws-x/ernie-gen-base-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-50.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/paws-x/ernie-gen-large-en-430g.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-50.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/eval_examples/model.PaddleHub/language/data.PaddleHub/text_similarity/paws-x/ernie-gen-large-en.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-51.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/fit_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/fit_examples/README.md -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/bert-base-cased/glue.lr.1.batch.128/params: -------------------------------------------------------------------------------- 1 | model=bert-base-cased 2 | lr=1e-5 3 | bs=128 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/bert-base-cased/glue.lr.1.batch.256/params: -------------------------------------------------------------------------------- 1 | model=bert-base-cased 2 | lr=1e-5 3 | bs=256 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/bert-base-cased/glue.lr.1.batch.512/params: -------------------------------------------------------------------------------- 1 | model=bert-base-cased 2 | lr=1e-5 3 | bs=512 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/bert-base-cased/glue.lr.2.batch.128/params: -------------------------------------------------------------------------------- 1 | model=bert-base-cased 2 | lr=2e-5 3 | bs=128 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/bert-base-cased/glue.lr.2.batch.256/params: -------------------------------------------------------------------------------- 1 | model=bert-base-cased 2 | lr=2e-5 3 | bs=256 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/bert-base-cased/glue.lr.2.batch.512/params: -------------------------------------------------------------------------------- 1 | model=bert-base-cased 2 | lr=2e-5 3 | bs=512 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-base/glue.lr.1.batch.128/params: -------------------------------------------------------------------------------- 1 | model=roberta-base 2 | lr=1e-5 3 | bs=128 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-base/glue.lr.1.batch.256/params: -------------------------------------------------------------------------------- 1 | model=roberta-base 2 | lr=1e-5 3 | bs=256 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-base/glue.lr.1.batch.512/params: -------------------------------------------------------------------------------- 1 | model=roberta-base 2 | lr=1e-5 3 | bs=512 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-base/glue.lr.2.batch.128/params: -------------------------------------------------------------------------------- 1 | model=roberta-base 2 | lr=2e-5 3 | bs=128 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-base/glue.lr.2.batch.256/params: -------------------------------------------------------------------------------- 1 | model=roberta-base 2 | lr=2e-5 3 | bs=256 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-base/glue.lr.2.batch.512/params: -------------------------------------------------------------------------------- 1 | model=roberta-base 2 | lr=2e-5 3 | bs=512 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-large/glue.lr.1.batch.128/params: -------------------------------------------------------------------------------- 1 | model=roberta-large 2 | lr=1e-5 3 | bs=128 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-large/glue.lr.1.batch.256/params: -------------------------------------------------------------------------------- 1 | model=roberta-large 2 | lr=1e-5 3 | bs=256 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-large/glue.lr.1.batch.512/params: -------------------------------------------------------------------------------- 1 | model=roberta-large 2 | lr=1e-5 3 | bs=512 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-large/glue.lr.2.batch.128/params: -------------------------------------------------------------------------------- 1 | model=roberta-large 2 | lr=2e-5 3 | bs=128 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-large/glue.lr.2.batch.256/params: -------------------------------------------------------------------------------- 1 | model=roberta-large 2 | lr=2e-5 3 | bs=256 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/hyper/roberta-large/glue.lr.2.batch.512/params: -------------------------------------------------------------------------------- 1 | model=roberta-large 2 | lr=2e-5 3 | bs=512 4 | -------------------------------------------------------------------------------- /examples/fit_examples/model.HuggingFace/language/data.HuggingFace/question_answering/squad.out: -------------------------------------------------------------------------------- 1 | hostname = asimov-157.svail.baidu.com 2 | -------------------------------------------------------------------------------- /examples/fit_examples/model.PaddleHub/language/VAD/VAD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/fit_examples/model.PaddleHub/language/VAD/VAD.sh -------------------------------------------------------------------------------- /examples/predict_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/predict_examples/README.md -------------------------------------------------------------------------------- /examples/predict_examples/model.HuggingFace/language/data.HuggingFace/their_models/question_answering/squad/033: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $squad/do_one m3hrdadfi/gpt2-QA 3 | -------------------------------------------------------------------------------- /examples/summary_examples/KNOWN_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/KNOWN_ISSUES.md -------------------------------------------------------------------------------- /examples/summary_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/README.md -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/anli.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/anli.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/anli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/anli.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/blimp.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/blimp.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/blimp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/blimp.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/cfq.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/cfq.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/cfq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/cfq.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/data.txt -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/glue.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/glue.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/glue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/glue.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/hans.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/hans.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/hans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/hans.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/imdb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/imdb.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/imdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/imdb.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/klue.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/klue.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/klue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/klue.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/paws.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/paws.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/paws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/paws.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/piqa.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/piqa.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/piqa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/piqa.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/race.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/race.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/race.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/race.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/samsum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/samsum.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/snli.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/snli.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/snli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/snli.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/squad.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/squad.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/squad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/squad.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/top10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/top10.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/top10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/top10.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/top50/wikipedia.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | gft_summary --data H:wikipedia 3 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/trec.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/trec.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/trec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/trec.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/wmt16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/wmt16.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/wmt16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/wmt16.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/xnli.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/xnli.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/xnli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/xnli.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/xsum.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/xsum.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/xsum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/xsum.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.HuggingFace/xtreme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.HuggingFace/xtreme.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/bq_corpus.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/bq_corpus.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/bq_corpus.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:bq_corpus 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/c3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/c3.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/c3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:c3 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/cail2019_scm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:cail2019_scm 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/chnsenticorp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:chnsenticorp 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/clue.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/clue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/clue.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/cmrc2018.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/cmrc2018.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/cmrc2018.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:cmrc2018 --splits train,dev,trial 4 | 5 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/conll2002.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/conll2002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/conll2002.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/cote.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/cote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/cote.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/couplet.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/couplet.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/couplet.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:couplet 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/drcd.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/drcd.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/drcd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:drcd 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/duconv.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/duconv.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/duconv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/duconv.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/dureader_checklist.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:dureader_checklist --splits train,dev,test1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/dureader_qg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/dureader_qg.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/dureader_robust.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:dureader_robust 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/dureader_yesno.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:dureader_yesno 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/fewclue.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/fewclue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/fewclue.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/glue.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/glue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/glue.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/hyp.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/hyp.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/hyp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:hyp 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/imdb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/imdb.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/imdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/imdb.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/iwslt15.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/iwslt15.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/iwslt15.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:iwslt15 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/lcqmc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/lcqmc.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/lcqmc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:lcqmc 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/lcsts_new.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/lcsts_new.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/lcsts_new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/lcsts_new.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/msra_ner.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/msra_ner.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/msra_ner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/msra_ner.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/nlpcc13_evsam05_hit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:nlpcc13_evsam05_hit 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/nlpcc13_evsam05_thu.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:nlpcc13_evsam05_thu 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/nlpcc14_sc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/nlpcc14_sc.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/nlpcc14_sc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/nlpcc14_sc.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/paws-x.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/paws-x.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/paws-x.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:paws-x 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/peoples_daily_ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:peoples_daily_ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/poetry.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/poetry.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/poetry.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:poetry 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/ptb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/ptb.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/ptb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:ptb --splits train,valid,test 4 | 5 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/seabsa16.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/seabsa16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/seabsa16.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/sighan-cn.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/sighan-cn.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/sighan-cn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/sighan-cn.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/squad.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/squad.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/squad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/squad.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/thucnews.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/thucnews.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/thucnews.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:thucnews 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/top10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/top10.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/top10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/top10.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/triviaqa.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/triviaqa.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/triviaqa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/triviaqa.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/wmt14ende.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/wmt14ende.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/wmt14ende.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:wmt14ende 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/xnli.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/xnli.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/xnli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/xnli.sh -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/xnli_cn.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/data/data.Paddle/xnli_cn.out -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/xnli_cn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:xnli_cn 4 | -------------------------------------------------------------------------------- /examples/summary_examples/data/data.Paddle/yahoo_answer_100k.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --data P:yahoo_answer_100k --splits train,valid,test 4 | 5 | -------------------------------------------------------------------------------- /examples/summary_examples/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/errors.txt -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/EleutherAI/gpt-j-6B.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model EleutherAI/gpt-j-6B 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/EleutherAI/gpt-neo-1.3B.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model EleutherAI/gpt-neo-1.3B 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-ar-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-ar-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-de-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-de-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-en-ROMANCE.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-en-ROMANCE 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-en-de.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-en-de 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-es-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-es-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-fr-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-fr-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Helsinki-NLP/opus-mt-zh-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Helsinki-NLP/opus-mt-zh-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Rostlab/prot_t5_xl_uniref50.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Rostlab/prot_t5_xl_uniref50 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Sahajtomar/German_Zeroshot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Sahajtomar/German_Zeroshot 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/Xibanya/sunset_city.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model Xibanya/sunset_city 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/allenai/led-base-16384.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:allenai/led-base-16384 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/apol/dalle-mini.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:apol/dalle-mini 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/bert-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:bert-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/bert-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:bert-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/bert-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:bert-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/cl-tohoku/bert-base-japanese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:cl-tohoku/bert-base-japanese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/classla/bcms-bertic-ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:classla/bcms-bertic-ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/davanstrien/detr_beyond_words.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:davanstrien/detr_beyond_words 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/deepparag/Aeona.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:deepparag/Aeona 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/deepset/bert-base-cased-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:deepset/bert-base-cased-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/deepset/minilm-uncased-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model deepset/minilm-uncased-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/deepset/roberta-base-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model deepset/roberta-base-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/distilbert-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model distilbert-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/distilgpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model distilgpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/dslim/bert-base-NER.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model dslim/bert-base-NER 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/dslim/bert-large-NER.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model dslim/bert-large-NER 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/bart-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/bart-base --task default 4 | 5 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/bart-large-cnn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/bart-large-cnn 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/bart-large-mnli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/bart-large-mnli 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/bart-large-xsum.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/bart-large-xsum 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/blenderbot-3B.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/blenderbot-3B 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/blenderbot-400M-distill.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/blenderbot-400M-distill 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/blenderbot-90M.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/blenderbot-90M 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/blenderbot_small-90M.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/blenderbot_small-90M 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/detr-resnet-101-dc5.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/detr-resnet-101-dc5 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/detr-resnet-101.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/detr-resnet-101 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/detr-resnet-50-dc5.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/detr-resnet-50-dc5 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/detr-resnet-50.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/detr-resnet-50 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/hubert-large-ls960-ft.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/hubert-large-ls960-ft 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/m2m100_418M.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/m2m100_418M 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/wav2vec2-base-960h.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/wav2vec2-base-960h 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/wav2vec2-large-960h.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/wav2vec2-large-960h 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/facebook/xglm-564M.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model facebook/xglm-564M 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/flair/ner-english-fast.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model flair/ner-english-fast 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/flair/ner-english-large.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model flair/ner-english-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/flair/ner-english.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model flair/ner-english 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/gagan3012/ViTGPT2_vizwiz.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model gagan3012/ViTGPT2_vizwiz 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/mt5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/mt5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/pegasus-cnn_dailymail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/pegasus-cnn_dailymail 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/pegasus-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/pegasus-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/pegasus-xsum.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/pegasus-xsum 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/t5-v1_1-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/t5-v1_1-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/vit-base-patch16-224.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/vit-base-patch16-224 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/google/vit-base-patch16-384.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model google/vit-base-patch16-384 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/gpt2-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model gpt2-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/gpt2-medium.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model gpt2-medium 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/gpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model gpt2 4 | 5 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/gsurma/ai_dreamer..sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model gsurma/ai_dreamer 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/joeddav/xlm-roberta-large-xnli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model joeddav/xlm-roberta-large-xnli 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/julien-c/wine-quality.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model julien-c/wine-quality 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/kha-white/manga-ocr-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model kha-white/manga-ocr-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/lysandre/tiny-vit-random.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model lysandre/tiny-vit-random 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/microsoft/DialoGPT-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model microsoft/DialoGPT-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/microsoft/DialoGPT-medium.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model microsoft/DialoGPT-medium 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/microsoft/DialoGPT-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model microsoft/DialoGPT-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/mishig/tiny-detr-mobilenetsv3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model mishig/tiny-detr-mobilenetsv3 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/nateraw/hot-dog.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model nateraw/hot-dog 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/nielsr/detr-resnet-50-new.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model nielsr/detr-resnet-50-new 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/nielsr/detr-resnet-50.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model nielsr/detr-resnet-50 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/openai/clip-vit-base-patch32.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:openai/clip-vit-base-patch32 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/osanseviero/hubert-sd.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model osanseviero/hubert-sd 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/pyannote/segmentation.sh.to_be_done: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model pyannote/segmentation 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model H:roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/roberta-large-mnli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model roberta-large-mnli 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/roberta-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model roberta-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/sachin/vit2distilgpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model sachin/vit2distilgpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/sberbank-ai/ruT5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model sberbank-ai/ruT5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/sshleifer/distilbart-cnn-12-6.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model sshleifer/distilbart-cnn-12-6 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/sshleifer/distilbart-cnn-6-6.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model sshleifer/distilbart-cnn-6-6 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/t5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model t5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/t5-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model t5-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/t5-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model t5-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/tuner007/pegasus_paraphrase.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model tuner007/pegasus_paraphrase 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/valhalla/distilbart-mnli-12-1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model valhalla/distilbart-mnli-12-1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/valhalla/distilbart-mnli-12-6.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model valhalla/distilbart-mnli-12-6 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/w11wo/javanese-gpt2-small-imdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model w11wo/javanese-gpt2-small-imdb 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/xlm-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model xlm-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.HuggingFace/xlnet-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model xlnet-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/CLTL/MedRoBERTa.nl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:CLTL/MedRoBERTa.nl 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/DeepESP/gpt2-spanish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:DeepESP/gpt2-spanish 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/DeepPavlov/rubert-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:DeepPavlov/rubert-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/DingleyMaillotUrgell/homer-bot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:DingleyMaillotUrgell/homer-bot 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/FPTAI/vibert-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:FPTAI/vibert-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/GroNLP/bert-base-dutch-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:GroNLP/bert-base-dutch-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/GroNLP/gpt2-small-dutch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:GroNLP/gpt2-small-dutch 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/GroNLP/gpt2-small-italian.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:GroNLP/gpt2-small-italian 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/HooshvareLab/bert-fa-zwnj-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:HooshvareLab/bert-fa-zwnj-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/HooshvareLab/gpt2-fa.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:HooshvareLab/gpt2-fa 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/KB/bert-base-swedish-cased-ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:KB/bert-base-swedish-cased-ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/KB/bert-base-swedish-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:KB/bert-base-swedish-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/KETI-AIR/ke-t5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:KETI-AIR/ke-t5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/KETI-AIR/ke-t5-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:KETI-AIR/ke-t5-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Langboat/mengzi-bert-base-fin.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Langboat/mengzi-bert-base-fin 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Langboat/mengzi-bert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Langboat/mengzi-bert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Langboat/mengzi-t5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Langboat/mengzi-t5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/LorenzoDeMattei/GePpeTto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:LorenzoDeMattei/GePpeTto 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Luyu/co-condenser-marco.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Luyu/co-condenser-marco 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Maltehb/danish-bert-botxo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Maltehb/danish-bert-botxo 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Nokia/nlgp-natural.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Nokia/nlgp-natural 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ProsusAI/finbert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ProsusAI/finbert 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Rakib/roberta-base-on-cuad.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Rakib/roberta-base-on-cuad 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Rostlab/prot_t5_base_mt_uniref50.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Rostlab/prot_t5_base_mt_uniref50 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/SIC98/GPT2-python-code-generator.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:SIC98/GPT2-python-code-generator 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/SZTAKI-HLT/hubert-base-cc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:SZTAKI-HLT/hubert-base-cc 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Sahajtomar/German_Zeroshot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Sahajtomar/German_Zeroshot 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Salesforce/grappa_large_jnt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Salesforce/grappa_large_jnt 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/SpanBERT/spanbert-large-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:SpanBERT/spanbert-large-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ThomasNLG/t5-qa_squad2neg-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ThomasNLG/t5-qa_squad2neg-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/TrLOX/gpt2-tdk.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:TrLOX/gpt2-tdk 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/UBC-NLP/MARBERT.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:UBC-NLP/MARBERT 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/Wikidepia/IndoT5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:Wikidepia/IndoT5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/akhooli/gpt2-small-arabic-poetry.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:akhooli/gpt2-small-arabic-poetry 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-base-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-base-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-base-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-base-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-chinese-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-chinese-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-chinese-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-chinese-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-chinese-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-chinese-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-chinese-tiny.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-chinese-tiny 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-chinese-xlarge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-chinese-xlarge 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-chinese-xxlarge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-chinese-xxlarge 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-large-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-large-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-large-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-large-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-xlarge-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-xlarge-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-xlarge-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-xlarge-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-xxlarge-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-xxlarge-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/albert-xxlarge-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:albert-xxlarge-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/allenai/biomed_roberta_base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:allenai/biomed_roberta_base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/allenai/reviews_roberta_base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:allenai/reviews_roberta_base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/allenai/scibert_scivocab_cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:allenai/scibert_scivocab_cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/allenai/scibert_scivocab_uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:allenai/scibert_scivocab_uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/alvaroalon2/biobert_chemical_ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:alvaroalon2/biobert_chemical_ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/alvaroalon2/biobert_diseases_ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:alvaroalon2/biobert_diseases_ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/alvaroalon2/biobert_genetic_ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:alvaroalon2/biobert_genetic_ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/antoiloui/belgpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:antoiloui/belgpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/asafaya/bert-base-arabic.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:asafaya/bert-base-arabic 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/asi/gpt-fr-cased-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:asi/gpt-fr-cased-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/asi/gpt-fr-cased-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:asi/gpt-fr-cased-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/aychang/roberta-base-imdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:aychang/roberta-base-imdb 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bart-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bart-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bart-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bart-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/benjamin/gerpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:benjamin/gerpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/beomi/kcbert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:beomi/kcbert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/beomi/kcbert-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:beomi/kcbert-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-german-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-german-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-german-dbmdz-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-german-dbmdz-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-multilingual-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-multilingual-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-multilingual-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-multilingual-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-large-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-large-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-large-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-large-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-wwm-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-wwm-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bert-wwm-ext-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bert-wwm-ext-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/bigbird-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:bigbird-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/blenderbot-1B-distill.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:blenderbot-1B-distill 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/blenderbot-3B.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:blenderbot-3B 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/blenderbot-400M-distill.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:blenderbot-400M-distill 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/blenderbot_small-90M.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:blenderbot_small-90M 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/blinoff/roberta-base-russian-v0.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:blinoff/roberta-base-russian-v0 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cahya/gpt2-small-indonesian-522M.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cahya/gpt2-small-indonesian-522M 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cambridgeltl/simctg_wikitext103.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cambridgeltl/simctg_wikitext103 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cardiffnlp/twitter-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cardiffnlp/twitter-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/chinese-electra-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:chinese-electra-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/chinese-electra-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:chinese-electra-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/chinese-xlnet-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:chinese-xlnet-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/chinese-xlnet-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:chinese-xlnet-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/chinese-xlnet-mid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:chinese-xlnet-mid 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/chkla/roberta-argument.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:chkla/roberta-argument 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ckiplab/bert-base-chinese-ner.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ckiplab/bert-base-chinese-ner 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ckiplab/bert-base-chinese-ws.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ckiplab/bert-base-chinese-ws 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ckiplab/bert-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ckiplab/bert-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cl-tohoku/bert-base-japanese-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cl-tohoku/bert-base-japanese-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cl-tohoku/bert-base-japanese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cl-tohoku/bert-base-japanese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cl-tohoku/bert-large-japanese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cl-tohoku/bert-large-japanese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cointegrated/LaBSE-en-ru.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cointegrated/LaBSE-en-ru 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cointegrated/rubert-tiny.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cointegrated/rubert-tiny 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cointegrated/rubert-tiny2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cointegrated/rubert-tiny2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/convbert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:convbert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/convbert-medium-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:convbert-medium-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/convbert-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:convbert-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cross-encoder/nli-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cross-encoder/nli-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cross-encoder/quora-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cross-encoder/quora-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cross-encoder/stsb-TinyBERT-L-4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cross-encoder/stsb-TinyBERT-L-4 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cross-encoder/stsb-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cross-encoder/stsb-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/cross-encoder/stsb-roberta-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:cross-encoder/stsb-roberta-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/csarron/roberta-base-squad-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:csarron/roberta-base-squad-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ctrl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/model/model.Paddle/ctrl.out -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ctrl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ctrl 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/datificate/gpt2-small-spanish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:datificate/gpt2-small-spanish 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dbddv01/gpt2-french-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dbddv01/gpt2-french-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dbmdz/bert-base-german-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dbmdz/bert-base-german-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dbmdz/bert-base-german-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dbmdz/bert-base-german-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dbmdz/bert-base-italian-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dbmdz/bert-base-italian-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dbmdz/bert-base-turkish-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dbmdz/bert-base-turkish-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dbmdz/bert-base-turkish-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dbmdz/bert-base-turkish-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/deepparag/DumBot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:deepparag/DumBot 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/deepset/bert-base-cased-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:deepset/bert-base-cased-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/deepset/minilm-uncased-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:deepset/minilm-uncased-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/deepset/roberta-base-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:deepset/roberta-base-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/deepset/sentence_bert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:deepset/sentence_bert 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/deepset/tinyroberta-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:deepset/tinyroberta-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/distilbert-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:distilbert-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/distilbert-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:distilbert-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/distilgpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:distilgpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/distilroberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:distilroberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dslim/bert-base-NER-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dslim/bert-base-NER-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dslim/bert-base-NER.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dslim/bert-base-NER 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/dslim/bert-large-NER.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:dslim/bert-large-NER 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/electra-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:electra-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/electra-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:electra-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/electra-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:electra-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/elozano/tweet_emotion_eval.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:elozano/tweet_emotion_eval 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/elozano/tweet_offensive_eval.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:elozano/tweet_offensive_eval 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/emilyalsentzer/Bio_ClinicalBERT.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:emilyalsentzer/Bio_ClinicalBERT 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ericzhou/tsundere_v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ericzhou/tsundere_v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-1.0.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-1.0 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-2.0-en-finetuned-squad.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-2.0-en-finetuned-squad 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-2.0-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-2.0-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-doc-base-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-doc-base-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-doc-base-zh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-doc-base-zh 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-gen-base-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-gen-base-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-gen-large-en-430g.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-gen-large-en-430g 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-gen-large-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-gen-large-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-gram-zh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-gram-zh 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ernie-tiny.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ernie-tiny 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/facebook/muppet-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:facebook/muppet-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/facebook/muppet-roberta-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:facebook/muppet-roberta-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/muril-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/muril-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-base-lm-adapt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-base-lm-adapt 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-large-ssm-nq.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-large-ssm-nq 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-large-ssm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-large-ssm 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-small-lm-adapt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-small-lm-adapt 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-small-ssm-nq.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-small-ssm-nq 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-v1_1-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-v1_1-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-v1_1-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-v1_1-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/google/t5-v1_1-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:google/t5-v1_1-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gorkemgoknar/gpt2-small-turkish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gorkemgoknar/gpt2-small-turkish 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gpt-cpm-large-cn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gpt-cpm-large-cn 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gpt-cpm-small-cn-distill.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gpt-cpm-small-cn-distill 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gpt2-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gpt2-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gpt2-large-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gpt2-large-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gpt2-medium-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gpt2-medium-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/gpt2-xl-en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:gpt2-xl-en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/hfl/chinese-bert-wwm-ext.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:hfl/chinese-bert-wwm-ext 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/hfl/chinese-bert-wwm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:hfl/chinese-bert-wwm 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/hfl/chinese-macbert-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:hfl/chinese-macbert-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/hfl/rbt3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:hfl/rbt3 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/huggingface/CodeBERTa-small-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:huggingface/CodeBERTa-small-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/huggingtweets/slime_machine.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:huggingtweets/slime_machine 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/huggingtweets/wwm_shakespeare.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:huggingtweets/wwm_shakespeare 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/indonesian-nlp/gpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:indonesian-nlp/gpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/iverxin/bert-base-japanese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:iverxin/bert-base-japanese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/jcblaise/gpt2-tagalog.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:jcblaise/gpt2-tagalog 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/johngiorgi/declutr-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:johngiorgi/declutr-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/junnyu/distilgpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:junnyu/distilgpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/junnyu/microsoft-DialoGPT-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:junnyu/microsoft-DialoGPT-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/junnyu/microsoft-DialoGPT-medium.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:junnyu/microsoft-DialoGPT-medium 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/junnyu/microsoft-DialoGPT-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:junnyu/microsoft-DialoGPT-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/junnyu/tbs17-MathBERT.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:junnyu/tbs17-MathBERT 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/junnyu/uer-gpt2-chinese-poem.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:junnyu/uer-gpt2-chinese-poem 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/klue/bert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:klue/bert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/kykim/bert-kor-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:kykim/bert-kor-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/lassl/roberta-ko-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:lassl/roberta-ko-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/layoutlm-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:layoutlm-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/layoutlm-large-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:layoutlm-large-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/layoutlmv2-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:layoutlmv2-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/layoutlmv2-large-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:layoutlmv2-large-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/layoutxlm-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:layoutxlm-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/lvwerra/gpt2-imdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:lvwerra/gpt2-imdb 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/macbert-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:macbert-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/macbert-large-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:macbert-large-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/macedonizer/hr-gpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:macedonizer/hr-gpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/macedonizer/mk-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:macedonizer/mk-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/macedonizer/sr-gpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:macedonizer/sr-gpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/mbart-large-50-many-to-one-mmt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:mbart-large-50-many-to-one-mmt 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/mbart-large-50-one-to-many-mmt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:mbart-large-50-one-to-many-mmt 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/mbart-large-cc25.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:mbart-large-cc25 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/mbart-large-en-ro.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:mbart-large-en-ro 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/megagonlabs/t5-base-japanese-web.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:megagonlabs/t5-base-japanese-web 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/CodeGPT-small-py.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/CodeGPT-small-py 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/DialoGPT-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/DialoGPT-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/DialoGPT-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/DialoGPT-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/DialogRPT-depth.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/DialogRPT-depth 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/DialogRPT-updown.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/DialogRPT-updown 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/DialogRPT-width.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/DialogRPT-width 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/codebert-base-mlm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/codebert-base-mlm 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/microsoft/graphcodebert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:microsoft/graphcodebert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/mobilebert-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:mobilebert-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/model/model.Paddle/models.txt -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/mpnet-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:mpnet-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/navteca/quora-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:navteca/quora-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/navteca/roberta-base-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:navteca/roberta-base-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/navteca/roberta-large-squad2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:navteca/roberta-large-squad2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nezha-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nezha-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nezha-base-wwm-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nezha-base-wwm-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nezha-large-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nezha-large-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nezha-large-wwm-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nezha-large-wwm-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nielsr/nt5-small-rc1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nielsr/nt5-small-rc1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nlpaueb/legal-bert-base-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nlpaueb/legal-bert-base-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nlpaueb/legal-bert-small-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nlpaueb/legal-bert-small-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nosaydomore/roberta-en-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nosaydomore/roberta-en-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nosaydomore/roberta-en-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nosaydomore/roberta-en-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nreimers/BERT-Tiny_L-2_H-128_A-2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nreimers/BERT-Tiny_L-2_H-128_A-2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nyu-mll/roberta-base-100M-1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nyu-mll/roberta-base-100M-1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nyu-mll/roberta-base-1B-1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nyu-mll/roberta-base-1B-1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/nyu-mll/roberta-med-small-1M-1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:nyu-mll/roberta-med-small-1M-1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/oliverguhr/german-sentiment-bert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:oliverguhr/german-sentiment-bert 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/onlplab/alephbert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:onlplab/alephbert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ozcangundes/T5-base-for-BioQA.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ozcangundes/T5-base-for-BioQA 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/p-christ/12412fsasf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:p-christ/12412fsasf 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/philschmid/BERT-Banking77.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:philschmid/BERT-Banking77 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/plato-mini.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:plato-mini 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/razent/SciFive-base-Pubmed_PMC.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:razent/SciFive-base-Pubmed_PMC 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/razent/SciFive-large-Pubmed_PMC.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:razent/SciFive-large-Pubmed_PMC 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/rbt3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/model/model.Paddle/rbt3.out -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/rbt3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:rbt3 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/rbtl3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/model/model.Paddle/rbtl3.out -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/rbtl3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:rbtl3 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/readerbench/RoGPT2-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:readerbench/RoGPT2-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/reformer-crime-and-punishment.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:reformer-crime-and-punishment 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/reformer-enwik8.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:reformer-enwik8 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/remotejob/tweetsDISTILGPT2fi_v4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:remotejob/tweetsDISTILGPT2fi_v4 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roberta-base-openai-detector.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roberta-base-openai-detector 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roberta-large-openai-detector.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roberta-large-openai-detector 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roberta-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roberta-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roberta-wwm-ext-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roberta-wwm-ext-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roberta-wwm-ext.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roberta-wwm-ext 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-chinese-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-chinese-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-chinese-char-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-chinese-char-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-chinese-char-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-chinese-char-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-chinese-sim-char-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-chinese-sim-char-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-chinese-sim-char-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-chinese-sim-char-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-chinese-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-chinese-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/roformer-english-small-generator.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:roformer-english-small-generator 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/salesken/grammar_correction.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:salesken/grammar_correction 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/sberbank-ai/ruT5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:sberbank-ai/ruT5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/sberbank-ai/ruT5-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:sberbank-ai/ruT5-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/seyonec/ChemBERTa-zinc-base-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:seyonec/ChemBERTa-zinc-base-v1 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/shibing624/text2vec-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:shibing624/text2vec-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/shiyue/roberta-large-tac08.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:shiyue/roberta-large-tac08 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/simbert-base-chinese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:simbert-base-chinese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/skep_ernie_1.0_large_ch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:skep_ernie_1.0_large_ch 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/skep_ernie_2.0_large_en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:skep_ernie_2.0_large_en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/skep_roberta_large_en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:skep_roberta_large_en 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/softcatala/julibert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:softcatala/julibert 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/sonoisa/t5-base-japanese.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:sonoisa/t5-base-japanese 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/squeezebert-mnli-headless.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:squeezebert-mnli-headless 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/squeezebert-mnli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:squeezebert-mnli 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/squeezebert-uncased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:squeezebert-uncased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/sshleifer-tiny-ctrl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:sshleifer-tiny-ctrl 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/sshleifer/tiny-gpt2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:sshleifer/tiny-gpt2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/t5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:t5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/t5-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:t5-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/t5-small.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:t5-small 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tennessejoyce/titlewave-t5-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tennessejoyce/titlewave-t5-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/bert-base-uncased-QQP.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/bert-base-uncased-QQP 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/bert-base-uncased-RTE.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/bert-base-uncased-RTE 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-CoLA.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-CoLA 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-MNLI.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-MNLI 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-MRPC.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-MRPC 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-QNLI.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-QNLI 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-SST-2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-SST-2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-ag-news.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-ag-news 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/textattack/roberta-base-imdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:textattack/roberta-base-imdb 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tinybert-4l-312d-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tinybert-4l-312d-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tinybert-4l-312d-zh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tinybert-4l-312d-zh 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tinybert-4l-312d.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tinybert-4l-312d 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tinybert-6l-768d-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tinybert-6l-768d-v2 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tinybert-6l-768d-zh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tinybert-6l-768d-zh 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tinybert-6l-768d.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tinybert-6l-768d 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/top10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/model/model.Paddle/top10.out -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/top10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/model/model.Paddle/top10.sh -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tscholak/3vnuv1vf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tscholak/3vnuv1vf 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/tscholak/t5.1.1.lm100k.base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:tscholak/t5.1.1.lm100k.base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/ufal/robeczech-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:ufal/robeczech-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/uklfr/gottbert-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:uklfr/gottbert-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/unified_transformer-12L-cn-luge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:unified_transformer-12L-cn-luge 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/unified_transformer-12L-cn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:unified_transformer-12L-cn 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/unimo-text-1.0-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:unimo-text-1.0-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/unimo-text-1.0-lcsts-new.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:unimo-text-1.0-lcsts-new 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/unimo-text-1.0.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:unimo-text-1.0 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/unitary/toxic-bert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:unitary/toxic-bert 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/uw-hai/polyjuice.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:uw-hai/polyjuice 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/valhalla/t5-small-e2e-qg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:valhalla/t5-small-e2e-qg 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/valhalla/t5-small-qa-qg-hl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:valhalla/t5-small-qa-qg-hl 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/valhalla/t5-small-qg-hl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:valhalla/t5-small-qg-hl 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/valhalla/t5-small-qg-prepend.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:valhalla/t5-small-qg-prepend 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/vinai/bertweet-large.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:vinai/bertweet-large 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/w11wo/javanese-gpt2-small-imdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:w11wo/javanese-gpt2-small-imdb 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/wietsedv/bert-base-dutch-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:wietsedv/bert-base-dutch-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/xlnet-base-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:xlnet-base-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/xlnet-large-cased.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:xlnet-large-cased 4 | -------------------------------------------------------------------------------- /examples/summary_examples/model/model.Paddle/youscan/ukr-roberta-base.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gft_summary --model P:youscan/ukr-roberta-base 4 | -------------------------------------------------------------------------------- /examples/summary_examples/task/audio-classification.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/audio-classification.out -------------------------------------------------------------------------------- /examples/summary_examples/task/audio-classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/audio-classification.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/audio-to-audio.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/audio-to-audio.out -------------------------------------------------------------------------------- /examples/summary_examples/task/audio-to-audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/audio-to-audio.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/conversational.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/conversational.out -------------------------------------------------------------------------------- /examples/summary_examples/task/conversational.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/conversational.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/feature-extraction.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/feature-extraction.out -------------------------------------------------------------------------------- /examples/summary_examples/task/feature-extraction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/feature-extraction.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/fill-mask.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/fill-mask.out -------------------------------------------------------------------------------- /examples/summary_examples/task/fill-mask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/fill-mask.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/image-classification.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/image-classification.out -------------------------------------------------------------------------------- /examples/summary_examples/task/image-classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/image-classification.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/image-segmentation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/image-segmentation.out -------------------------------------------------------------------------------- /examples/summary_examples/task/image-segmentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/image-segmentation.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/image-to-text.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/image-to-text.out -------------------------------------------------------------------------------- /examples/summary_examples/task/image-to-text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/image-to-text.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/object-detection.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/object-detection.out -------------------------------------------------------------------------------- /examples/summary_examples/task/object-detection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/object-detection.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/protein-folding.out: -------------------------------------------------------------------------------- 1 | task: protein-folding --> 0 models 2 | -------------------------------------------------------------------------------- /examples/summary_examples/task/protein-folding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/protein-folding.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/question-answering.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/question-answering.out -------------------------------------------------------------------------------- /examples/summary_examples/task/question-answering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/question-answering.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/sentence-similarity.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/sentence-similarity.out -------------------------------------------------------------------------------- /examples/summary_examples/task/sentence-similarity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/sentence-similarity.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/speech-segmentation.out: -------------------------------------------------------------------------------- 1 | task: speech-segmentation --> 0 models 2 | -------------------------------------------------------------------------------- /examples/summary_examples/task/speech-segmentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/speech-segmentation.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/structured-data-classification.out: -------------------------------------------------------------------------------- 1 | task: structured-data-classification --> 0 models 2 | -------------------------------------------------------------------------------- /examples/summary_examples/task/summarization.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/summarization.out -------------------------------------------------------------------------------- /examples/summary_examples/task/summarization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/summarization.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/text-classification.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-classification.out -------------------------------------------------------------------------------- /examples/summary_examples/task/text-classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-classification.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/text-generation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-generation.out -------------------------------------------------------------------------------- /examples/summary_examples/task/text-generation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-generation.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/text-to-image.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-to-image.out -------------------------------------------------------------------------------- /examples/summary_examples/task/text-to-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-to-image.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/text-to-speech.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-to-speech.out -------------------------------------------------------------------------------- /examples/summary_examples/task/text-to-speech.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text-to-speech.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/text2text-generation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text2text-generation.out -------------------------------------------------------------------------------- /examples/summary_examples/task/text2text-generation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/text2text-generation.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/token-classification.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/token-classification.out -------------------------------------------------------------------------------- /examples/summary_examples/task/token-classification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/token-classification.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/top10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/top10.out -------------------------------------------------------------------------------- /examples/summary_examples/task/top10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/top10.sh -------------------------------------------------------------------------------- /examples/summary_examples/task/translation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/translation.out -------------------------------------------------------------------------------- /examples/summary_examples/task/translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/examples/summary_examples/task/translation.sh -------------------------------------------------------------------------------- /gft/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gft/gft_cat_data: -------------------------------------------------------------------------------- 1 | gft_cat_data.py -------------------------------------------------------------------------------- /gft/gft_cat_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_cat_data.py -------------------------------------------------------------------------------- /gft/gft_eval: -------------------------------------------------------------------------------- 1 | gft_eval.py -------------------------------------------------------------------------------- /gft/gft_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_eval.py -------------------------------------------------------------------------------- /gft/gft_fit: -------------------------------------------------------------------------------- 1 | gft_fit.py -------------------------------------------------------------------------------- /gft/gft_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_fit.py -------------------------------------------------------------------------------- /gft/gft_internals/#paddle_model_zoo.py#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/#paddle_model_zoo.py# -------------------------------------------------------------------------------- /gft/gft_internals/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_classic.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_spans.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_spans_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_spans_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_spans_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_spans_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_classify_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_classify_tokens.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_ctc.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_regress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_regress.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_regress_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_regress_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/eval_for_regress_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/eval_for_regress_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_classic.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_spans.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_spans_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_spans_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_spans_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_spans_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_classify_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_classify_tokens.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_ctc.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_regress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_regress.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_regress_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_regress_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/fit_for_regress_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/fit_for_regress_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/gft_predict_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/gft_predict_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/gft_predict_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/gft_predict_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/gft_summary_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/gft_summary_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/gft_summary_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/gft_summary_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/gft_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/gft_util.py -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/README.md -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/adapters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/adapters.txt -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/best_of/datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/best_of/datasets.html -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/downloads.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/downloads.jpg -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/has_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/has_tokenizer.py -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/jobs/love.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/jobs/love.sh -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/labels/emotion.txt: -------------------------------------------------------------------------------- 1 | 0 sadness 2 | 1 joy 3 | 2 love 4 | 3 anger 5 | 4 fear 6 | 5 surprise 7 | -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/list_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/list_adapters.py -------------------------------------------------------------------------------- /gft/gft_internals/huggingface_hub/models_for_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/huggingface_hub/models_for_dataset.py -------------------------------------------------------------------------------- /gft/gft_internals/loadable_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/loadable_models.py -------------------------------------------------------------------------------- /gft/gft_internals/my_auto_model_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/my_auto_model_hf.py -------------------------------------------------------------------------------- /gft/gft_internals/my_auto_model_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/my_auto_model_pd.py -------------------------------------------------------------------------------- /gft/gft_internals/my_auto_model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/my_auto_model_util.py -------------------------------------------------------------------------------- /gft/gft_internals/my_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/my_datasets.py -------------------------------------------------------------------------------- /gft/gft_internals/my_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/my_task.py -------------------------------------------------------------------------------- /gft/gft_internals/paddle_dataset_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/paddle_dataset_zoo.py -------------------------------------------------------------------------------- /gft/gft_internals/paddle_model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/paddle_model_zoo.py -------------------------------------------------------------------------------- /gft/gft_internals/paddle_model_zoo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/paddle_model_zoo.txt -------------------------------------------------------------------------------- /gft/gft_internals/parse_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/parse_args.py -------------------------------------------------------------------------------- /gft/gft_internals/parse_eqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/parse_eqn.py -------------------------------------------------------------------------------- /gft/gft_internals/predict_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/predict_speech.py -------------------------------------------------------------------------------- /gft/gft_internals/prepare_datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gft/gft_internals/prepare_datasets/dataset_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/prepare_datasets/dataset_to_text.py -------------------------------------------------------------------------------- /gft/gft_internals/run_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/run_qa.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/accuracy_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/accuracy_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/brier_score_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/brier_score_loss.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/completeness_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/completeness_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/homogeneity_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/homogeneity_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/jaccard_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/jaccard_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/log_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/log_loss.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/max_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/max_error.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/mean_squared_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/mean_squared_error.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/multiclass_glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/multiclass_glue.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/mutual_info_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/mutual_info_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/r2_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/r2_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/rand_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/rand_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/recall_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/recall_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/roc_auc_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/roc_auc_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/v_measure_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/v_measure_score.py -------------------------------------------------------------------------------- /gft/gft_internals/sklearn_metrics/weighted_glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/sklearn_metrics/weighted_glue.py -------------------------------------------------------------------------------- /gft/gft_internals/trainer_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/trainer_qa.py -------------------------------------------------------------------------------- /gft/gft_internals/utils_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_internals/utils_qa.py -------------------------------------------------------------------------------- /gft/gft_predict: -------------------------------------------------------------------------------- 1 | gft_predict.py -------------------------------------------------------------------------------- /gft/gft_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_predict.py -------------------------------------------------------------------------------- /gft/gft_summary: -------------------------------------------------------------------------------- 1 | gft_summary.py -------------------------------------------------------------------------------- /gft/gft_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/gft/gft_summary.py -------------------------------------------------------------------------------- /requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/README.md -------------------------------------------------------------------------------- /requirements/create_new_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/create_new_venv.sh -------------------------------------------------------------------------------- /requirements/frozen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/frozen.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /requirements/requirements_for_paddlespeech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements_for_paddlespeech.txt -------------------------------------------------------------------------------- /requirements/requirements_simple_cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements_simple_cpu.txt -------------------------------------------------------------------------------- /requirements/requirements_with_adapters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements_with_adapters.txt -------------------------------------------------------------------------------- /requirements/requirements_without_adapters-cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements_without_adapters-cpu.txt -------------------------------------------------------------------------------- /requirements/requirements_without_adapters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements_without_adapters.txt -------------------------------------------------------------------------------- /requirements/requirements_without_gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/requirements/requirements_without_gpu.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwchurch/gft/HEAD/setup.py --------------------------------------------------------------------------------