siddharthtumre commited on
Commit
7744b39
1 Parent(s): 34b7ae7

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license:
5
+ - unknown
6
+ size_categories:
7
+ - 10K<n<100K
8
+ task_categories:
9
+ - token-classification
10
+ task_ids:
11
+ - named-entity-recognition
12
+ dataset_info:
13
+ features:
14
+ - name: id
15
+ dtype: string
16
+ - name: tokens
17
+ sequence: string
18
+ - name: ner_tags
19
+ sequence:
20
+ class_label:
21
+ names:
22
+ '0': O
23
+ '1': B-DNA
24
+ '2': I-DNA
25
+ '3': B-RNA
26
+ '4': I-RNA
27
+ '5': B-cell_line
28
+ '6': I-cell_line
29
+ '7': B-cell_type
30
+ '8': I-cell_type
31
+ '9': B-protein
32
+ '10': I-protein
33
+ ---