--- annotations_creators: - expert-generated language_creators: - expert-generated language: - en license: - mit multilinguality: - monolingual pretty_name: PET size_categories: - 1KUpdate - v1.0.0: Added token classification task - v1.0.1: Added extraction relation task ## Annotation Guidelines ### Inception Schema The inception schema can be found [here](https://pdi.fbk.eu/pet/inception-schema.json) ### Annotation Guidelines The Annotation guidelines and procedures adopted to annotate the PET dataset can be downloaded [here](https://pdi.fbk.eu/pet/annotation-guidelines-for-process-description.pdf) ### Article The Article can be downloeaded [here](https://doi.org/10.48550/arXiv.2203.04860) ### Python Interface A python interface (beta version) to interact with the dataset can be found [here](https://pypi.org/project/petdatasetreader/) ### Benchmarks A python benchmarking procedure to test approaches on the PET dataset will be released soon. ## Loading data ### Token-classification task ```python from datasets import load_dataset modelhub_dataset = load_dataset("patriziobellan/PET", name='token-classification') ``` ### Relations-extraction task ```python from datasets import load_dataset modelhub_dataset = load_dataset("patriziobellan/PET", name='relations-extraction')