├── .gitignore ├── Experiment.py ├── LICENSE ├── Modules ├── Losses │ └── __init__.py ├── __init__.py └── dynamic_rag.py ├── README.md ├── config.py ├── dataloaders ├── arxiv.py ├── govreport.py ├── qmsum.py └── unified_data.py ├── environment.yml ├── number_params.py ├── oracle ├── GovReport │ ├── create_govreport_jsonl.py │ └── govreport_oracle.py ├── arxiv │ ├── arxiv_oracle.py │ └── create_arxiv_jsonl.py └── qmsum │ ├── create_qmsum_jsonl.py │ └── qmsum_oracle.py ├── outputs ├── logs │ └── .gitkeep ├── sampled_results │ └── .gitkeep ├── saved_model │ └── .gitkeep └── temp_results │ └── .gitkeep ├── test.py ├── train.py └── utils ├── __init__.py ├── clean_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/.gitignore -------------------------------------------------------------------------------- /Experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/Experiment.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/Losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__ file for Modules 2 | -------------------------------------------------------------------------------- /Modules/dynamic_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/Modules/dynamic_rag.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/config.py -------------------------------------------------------------------------------- /dataloaders/arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/dataloaders/arxiv.py -------------------------------------------------------------------------------- /dataloaders/govreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/dataloaders/govreport.py -------------------------------------------------------------------------------- /dataloaders/qmsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/dataloaders/qmsum.py -------------------------------------------------------------------------------- /dataloaders/unified_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/dataloaders/unified_data.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/environment.yml -------------------------------------------------------------------------------- /number_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/number_params.py -------------------------------------------------------------------------------- /oracle/GovReport/create_govreport_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/oracle/GovReport/create_govreport_jsonl.py -------------------------------------------------------------------------------- /oracle/GovReport/govreport_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/oracle/GovReport/govreport_oracle.py -------------------------------------------------------------------------------- /oracle/arxiv/arxiv_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/oracle/arxiv/arxiv_oracle.py -------------------------------------------------------------------------------- /oracle/arxiv/create_arxiv_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/oracle/arxiv/create_arxiv_jsonl.py -------------------------------------------------------------------------------- /oracle/qmsum/create_qmsum_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/oracle/qmsum/create_qmsum_jsonl.py -------------------------------------------------------------------------------- /oracle/qmsum/qmsum_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/oracle/qmsum/qmsum_oracle.py -------------------------------------------------------------------------------- /outputs/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/sampled_results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/saved_model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/temp_results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__ file for utils 2 | -------------------------------------------------------------------------------- /utils/clean_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/utils/clean_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yale-LILY/DYLE/HEAD/utils/utils.py --------------------------------------------------------------------------------