--- 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 test[Patrizio Bellan](pbellan@fbk.eu) ## Inception Schema The INcePtion schema che be downloaded here. test[Patrizio Bellan](pbellan@fbk.eu) The article can be downloaded here Annotation guidelines can be downloaded here The dataset (version 1.0.1) can be downloaded here Python dataset reader (alpha version) to interact with the dataset can be found here ## 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')