abdellaouic commited on
Commit
46af6b7
·
verified ·
1 Parent(s): 12d9dba

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: document_metadata
4
+ data_files:
5
+ - split: train
6
+ path: data/document_metadata/document_metadata.parquet
7
+ - config_name: spans
8
+ data_files:
9
+ - split: train
10
+ path: data/spans/spans.parquet
11
+ - config_name: relations
12
+ data_files:
13
+ - split: train
14
+ path: data/relations/relations.parquet
15
+ task_categories:
16
+ - token-classification
17
+ language:
18
+ - fr
19
+ tags:
20
+ - inception
21
+ - uima
22
+ - annotation
23
+ ---
24
+
25
+ # test
26
+
27
+ Dataset annoté via [INCEpTION](https://inception-project.github.io/), converti depuis le format JSON UIMA CAS.
28
+
29
+ ## Structure des fichiers
30
+
31
+ | Config | Contenu |
32
+ |---|---|
33
+ | `document_metadata` | Titre, texte brut, annotation document-level |
34
+ | `spans` | Annotations Span avec leurs attributs |
35
+ | `relations` | Relations entre spans |
36
+
37
+ ## Chargement
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ metadata = load_dataset("abdellaouic/test", name="document_metadata", split="train")
43
+ spans = load_dataset("abdellaouic/test", name="spans", split="train")
44
+ relations = load_dataset("abdellaouic/test", name="relations", split="train")
45
+ ```