├── ACL_2022_TreeMix.pdf ├── Augmentation.py ├── LICENSE ├── README.md ├── batch_train.py ├── online_augmentation ├── __init__.py └── __pycache__ │ ├── __init__.cpython-38.pyc │ └── __init__.cpython-39.pyc ├── process_data ├── Load_data.py ├── __init__.py ├── __pycache__ │ ├── Augmentation.cpython-39.pyc │ ├── Load_data.cpython-38.pyc │ ├── Load_data.cpython-39.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── ceshi.cpython-39.pyc │ ├── settings.cpython-38.pyc │ └── settings.cpython-39.pyc ├── get_data.py └── settings.py ├── requirements.txt ├── run.py └── transformers_doc └── pytorch └── task_summary.ipynb /ACL_2022_TreeMix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/ACL_2022_TreeMix.pdf -------------------------------------------------------------------------------- /Augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/Augmentation.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/README.md -------------------------------------------------------------------------------- /batch_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/batch_train.py -------------------------------------------------------------------------------- /online_augmentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/online_augmentation/__init__.py -------------------------------------------------------------------------------- /online_augmentation/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/online_augmentation/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /online_augmentation/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/online_augmentation/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /process_data/Load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/Load_data.py -------------------------------------------------------------------------------- /process_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__init__.py -------------------------------------------------------------------------------- /process_data/__pycache__/Augmentation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/Augmentation.cpython-39.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/Load_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/Load_data.cpython-38.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/Load_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/Load_data.cpython-39.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/ceshi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/ceshi.cpython-39.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /process_data/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /process_data/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/get_data.py -------------------------------------------------------------------------------- /process_data/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/process_data/settings.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/run.py -------------------------------------------------------------------------------- /transformers_doc/pytorch/task_summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhang7/TreeMix/HEAD/transformers_doc/pytorch/task_summary.ipynb --------------------------------------------------------------------------------