gitextract_dlrbq2_y/ ├── README.md ├── demo.py ├── finetune/ │ ├── README.md │ ├── deepspeed/ │ │ └── cpu_offload.json │ ├── mc/ │ │ ├── README.md │ │ ├── data/ │ │ │ └── medqa_usmle_hf/ │ │ │ ├── dev.json │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── preprocess_medqa.py │ │ ├── run_experiments.py │ │ └── run_multiple_choice.py │ ├── seqcls/ │ │ ├── README.md │ │ ├── data/ │ │ │ ├── bioasq_hf/ │ │ │ │ ├── dev.json │ │ │ │ ├── test.json │ │ │ │ └── train.json │ │ │ └── pubmedqa_hf/ │ │ │ ├── dev.json │ │ │ ├── test.json │ │ │ └── train.json │ │ ├── preprocess_blurb_seqcls.py │ │ └── run_seqcls_gpt.py │ ├── setup/ │ │ └── requirements.txt │ ├── textgen/ │ │ ├── data/ │ │ │ └── meqsum/ │ │ │ ├── test.source │ │ │ ├── test.target │ │ │ ├── train.source │ │ │ ├── train.target │ │ │ ├── val.source │ │ │ └── val.target │ │ └── gpt2/ │ │ ├── finetune_for_summarization.py │ │ ├── generate_demo.py │ │ ├── run_generation_batch.py │ │ ├── sum_data_collator.py │ │ └── sum_dataset.py │ └── utils/ │ ├── custom_modeling_gpt2.py │ ├── custom_modeling_gpt_neo.py │ └── hf_flash_gpt_2.py └── tokenize/ └── train_bpe.py