Datasets:
| configs: | |
| - config_name: document_metadata | |
| data_files: | |
| - split: train | |
| path: data/document_metadata/document_metadata.parquet | |
| - config_name: spans | |
| data_files: | |
| - split: train | |
| path: data/spans/spans.parquet | |
| - config_name: relations | |
| data_files: | |
| - split: train | |
| path: data/relations/relations.parquet | |
| task_categories: | |
| - token-classification | |
| language: | |
| - fr | |
| tags: | |
| - inception | |
| - uima | |
| - annotation | |
| # test | |
| Dataset annoté via [INCEpTION](https://inception-project.github.io/), converti depuis le format JSON UIMA CAS. | |
| ## Structure des fichiers | |
| | Config | Contenu | | |
| |---|---| | |
| | `document_metadata` | Titre, texte brut, annotation document-level | | |
| | `spans` | Annotations Span avec leurs attributs | | |
| | `relations` | Relations entre spans | | |
| ## Chargement | |
| ```python | |
| from datasets import load_dataset | |
| metadata = load_dataset("abdellaouic/test", name="document_metadata", split="train") | |
| spans = load_dataset("abdellaouic/test", name="spans", split="train") | |
| relations = load_dataset("abdellaouic/test", name="relations", split="train") | |
| ``` | |