Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ The wikiann dataset contains NER tags with labels from O (0), B-PER (1), I-PER (
|
|
| 24 |
WikiANN (sometimes called PAN-X) is a multilingual named entity recognition dataset consisting of Wikipedia articles
|
| 25 |
annotated with LOC (location), PER (person), and ORG (organisation)
|
| 26 |
tags in the IOB2 format. This version corresponds to the balanced train, dev, and test splits of
|
| 27 |
-
|
| 28 |
|
| 29 |
Language WikiAnn ISO 639-3
|
| 30 |
Indonesian id ind
|
|
@@ -50,25 +50,25 @@ ind, jav, min, sun, ace, zlm, map-bms, mya, tgl, tha, vie, khm
|
|
| 50 |
## Supported Tasks
|
| 51 |
|
| 52 |
Named Entity Recognition
|
| 53 |
-
|
| 54 |
## Dataset Usage
|
| 55 |
### Using `datasets` library
|
| 56 |
```
|
| 57 |
-
|
| 58 |
-
|
| 59 |
```
|
| 60 |
### Using `seacrowd` library
|
| 61 |
```import seacrowd as sc
|
| 62 |
# Load the dataset using the default config
|
| 63 |
-
|
| 64 |
# Check all available subsets (config names) of the dataset
|
| 65 |
-
|
| 66 |
# Load the dataset using a specific config
|
| 67 |
-
|
| 68 |
```
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
|
| 73 |
## Dataset Homepage
|
| 74 |
|
|
|
|
| 24 |
WikiANN (sometimes called PAN-X) is a multilingual named entity recognition dataset consisting of Wikipedia articles
|
| 25 |
annotated with LOC (location), PER (person), and ORG (organisation)
|
| 26 |
tags in the IOB2 format. This version corresponds to the balanced train, dev, and test splits of
|
| 27 |
+
Rahimi et al. (2019), and uses the following subsets from the original WikiANN corpus
|
| 28 |
|
| 29 |
Language WikiAnn ISO 639-3
|
| 30 |
Indonesian id ind
|
|
|
|
| 50 |
## Supported Tasks
|
| 51 |
|
| 52 |
Named Entity Recognition
|
| 53 |
+
|
| 54 |
## Dataset Usage
|
| 55 |
### Using `datasets` library
|
| 56 |
```
|
| 57 |
+
from datasets import load_dataset
|
| 58 |
+
dset = datasets.load_dataset("SEACrowd/wikiann", trust_remote_code=True)
|
| 59 |
```
|
| 60 |
### Using `seacrowd` library
|
| 61 |
```import seacrowd as sc
|
| 62 |
# Load the dataset using the default config
|
| 63 |
+
dset = sc.load_dataset("wikiann", schema="seacrowd")
|
| 64 |
# Check all available subsets (config names) of the dataset
|
| 65 |
+
print(sc.available_config_names("wikiann"))
|
| 66 |
# Load the dataset using a specific config
|
| 67 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
| 68 |
```
|
| 69 |
+
|
| 70 |
+
More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
|
| 71 |
+
|
| 72 |
|
| 73 |
## Dataset Homepage
|
| 74 |
|