gitextract_st1fh_50/ ├── .gitignore ├── .readthedocs.yaml ├── README.md ├── data/ │ ├── test.csv │ └── validation/ │ ├── cosmos_qa.csv │ └── xsum.csv ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── conf.py │ └── index.rst ├── environment.yml ├── llm_merging/ │ ├── data.py │ ├── evaluation.py │ ├── main.py │ ├── merging/ │ │ ├── FlanT5Avg.py │ │ ├── LlamaAvg.py │ │ ├── Merges.py │ │ ├── TinyLlamaAvg.py │ │ └── __init__.py │ └── model/ │ ├── __init__.py │ ├── decoder_functions.py │ └── encoder_decoder_functions.py ├── setup.py └── starter_kit.ipynb