├── .DS_Store ├── Annotation Guideline.pdf ├── LICENSE ├── README.md ├── SciER ├── LLM │ ├── .DS_Store │ ├── dev.jsonl │ ├── test.jsonl │ ├── test_ood.jsonl │ └── train.jsonl └── PLM │ ├── dev.jsonl │ ├── test.jsonl │ ├── test_ood.jsonl │ └── train.jsonl ├── __pycache__ ├── data_structures.cpython-311.pyc └── data_structures.cpython-39.pyc ├── data_loader.py ├── data_structures.py └── figures ├── Ablation.png ├── SciER_type.jpg └── train_size.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/.DS_Store -------------------------------------------------------------------------------- /Annotation Guideline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/Annotation Guideline.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/README.md -------------------------------------------------------------------------------- /SciER/LLM/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/LLM/.DS_Store -------------------------------------------------------------------------------- /SciER/LLM/dev.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/LLM/dev.jsonl -------------------------------------------------------------------------------- /SciER/LLM/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/LLM/test.jsonl -------------------------------------------------------------------------------- /SciER/LLM/test_ood.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/LLM/test_ood.jsonl -------------------------------------------------------------------------------- /SciER/LLM/train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/LLM/train.jsonl -------------------------------------------------------------------------------- /SciER/PLM/dev.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/PLM/dev.jsonl -------------------------------------------------------------------------------- /SciER/PLM/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/PLM/test.jsonl -------------------------------------------------------------------------------- /SciER/PLM/test_ood.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/PLM/test_ood.jsonl -------------------------------------------------------------------------------- /SciER/PLM/train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/SciER/PLM/train.jsonl -------------------------------------------------------------------------------- /__pycache__/data_structures.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/__pycache__/data_structures.cpython-311.pyc -------------------------------------------------------------------------------- /__pycache__/data_structures.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/__pycache__/data_structures.cpython-39.pyc -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/data_loader.py -------------------------------------------------------------------------------- /data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/data_structures.py -------------------------------------------------------------------------------- /figures/Ablation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/figures/Ablation.png -------------------------------------------------------------------------------- /figures/SciER_type.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/figures/SciER_type.jpg -------------------------------------------------------------------------------- /figures/train_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edzq/SciER/HEAD/figures/train_size.png --------------------------------------------------------------------------------