Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -72,15 +72,15 @@ Check below at `Changelog` to see the changes in the different versions.
|
|
| 72 |
```python
|
| 73 |
from datasets import load_dataset
|
| 74 |
# Load NER
|
| 75 |
-
ds = load_dataset("EMBO/SourceData", "NER", version="
|
| 76 |
# Load PANELIZATION
|
| 77 |
-
ds = load_dataset("EMBO/SourceData", "PANELIZATION", version="
|
| 78 |
# Load GENEPROD ROLES
|
| 79 |
-
ds = load_dataset("EMBO/SourceData", "ROLES_GP", version="
|
| 80 |
# Load SMALL MOLECULE ROLES
|
| 81 |
-
ds = load_dataset("EMBO/SourceData", "ROLES_SM", version="
|
| 82 |
# Load MULTI ROLES
|
| 83 |
-
ds = load_dataset("EMBO/SourceData", "ROLES_MULTI", version="
|
| 84 |
```
|
| 85 |
## Dataset Description
|
| 86 |
- **Homepage:** https://sourcedata.embo.org
|
|
@@ -249,7 +249,7 @@ Thanks to [@tlemberger](https://github.com/tlemberger>) and [@drAbreu](https://g
|
|
| 249 |
|
| 250 |
## Changelog
|
| 251 |
|
| 252 |
-
* **v2.0.2** -
|
| 253 |
* **v1.0.2** - Modification of the generic patch in v1.0.1 to include generic terms of more than a word.
|
| 254 |
* **v1.0.1** - Added a first patch of generic terms. Terms such as cells, fluorescence, or animals where originally tagged, but in this version they are removed.
|
| 255 |
* **v1.0.0** - First publicly available version of the dataset. Data curated until March 2023.
|
|
|
|
| 72 |
```python
|
| 73 |
from datasets import load_dataset
|
| 74 |
# Load NER
|
| 75 |
+
ds = load_dataset("EMBO/SourceData", "NER", version="2.0.2")
|
| 76 |
# Load PANELIZATION
|
| 77 |
+
ds = load_dataset("EMBO/SourceData", "PANELIZATION", version="2.0.2")
|
| 78 |
# Load GENEPROD ROLES
|
| 79 |
+
ds = load_dataset("EMBO/SourceData", "ROLES_GP", version="2.0.2")
|
| 80 |
# Load SMALL MOLECULE ROLES
|
| 81 |
+
ds = load_dataset("EMBO/SourceData", "ROLES_SM", version="2.0.2")
|
| 82 |
# Load MULTI ROLES
|
| 83 |
+
ds = load_dataset("EMBO/SourceData", "ROLES_MULTI", version="2.0.2")
|
| 84 |
```
|
| 85 |
## Dataset Description
|
| 86 |
- **Homepage:** https://sourcedata.embo.org
|
|
|
|
| 249 |
|
| 250 |
## Changelog
|
| 251 |
|
| 252 |
+
* **v2.0.2** - Data curated until 20.09.2023. This version will also include the patch for milti-word generic terms.
|
| 253 |
* **v1.0.2** - Modification of the generic patch in v1.0.1 to include generic terms of more than a word.
|
| 254 |
* **v1.0.1** - Added a first patch of generic terms. Terms such as cells, fluorescence, or animals where originally tagged, but in this version they are removed.
|
| 255 |
* **v1.0.0** - First publicly available version of the dataset. Data curated until March 2023.
|