├── .gitignore ├── README.md ├── aste_dataset.py ├── data └── ASTE.zip ├── marker_trainer.py ├── models ├── __init__.py ├── marker_t5.py └── modeling_t5.py ├── run.py ├── scripts ├── base_absa.bash ├── base_run.bash ├── run_full.bash └── run_single.bash └── utils ├── __init__.py ├── data_utils.py ├── eval_utils.py ├── format_utils.py ├── parse_utils.py └── read_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/README.md -------------------------------------------------------------------------------- /aste_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/aste_dataset.py -------------------------------------------------------------------------------- /data/ASTE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/data/ASTE.zip -------------------------------------------------------------------------------- /marker_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/marker_trainer.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/marker_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/models/marker_t5.py -------------------------------------------------------------------------------- /models/modeling_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/models/modeling_t5.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/run.py -------------------------------------------------------------------------------- /scripts/base_absa.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/scripts/base_absa.bash -------------------------------------------------------------------------------- /scripts/base_run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/scripts/base_run.bash -------------------------------------------------------------------------------- /scripts/run_full.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/scripts/run_full.bash -------------------------------------------------------------------------------- /scripts/run_single.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/scripts/run_single.bash -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/utils/eval_utils.py -------------------------------------------------------------------------------- /utils/format_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/utils/format_utils.py -------------------------------------------------------------------------------- /utils/parse_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/utils/parse_utils.py -------------------------------------------------------------------------------- /utils/read_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLPWM-WHU/SLGM/HEAD/utils/read_utils.py --------------------------------------------------------------------------------