Update README.md
Browse files
README.md
CHANGED
|
@@ -297,7 +297,7 @@ size_categories:
|
|
| 297 |
## Dataset Description
|
| 298 |
|
| 299 |
- **Homepage: https://changeiskey.org**
|
| 300 |
-
- **Repository: https://github.com/
|
| 301 |
- **Point of Contact: Simon Hengchen / iguanodon.ai**
|
| 302 |
|
| 303 |
|
|
@@ -364,11 +364,11 @@ One feature: `text`.
|
|
| 364 |
|
| 365 |
Load the whole corpus using
|
| 366 |
```python
|
| 367 |
-
dataset = load_dataset("
|
| 368 |
```
|
| 369 |
or a decadal subset using
|
| 370 |
```python
|
| 371 |
-
dataset = load_dataset("
|
| 372 |
```
|
| 373 |
The `decade` must be a string, valid values are within `range(1640, 1910, 10)`.
|
| 374 |
|
|
@@ -377,9 +377,9 @@ You can combine several decades using `concatenate_datasets` like this:
|
|
| 377 |
```python
|
| 378 |
from datasets import load_dataset, concatenate_datasets
|
| 379 |
|
| 380 |
-
ds_1800 = load_dataset("
|
| 381 |
-
ds_1810 = load_dataset("
|
| 382 |
-
ds_1820 = load_dataset("
|
| 383 |
|
| 384 |
ds_1800_1820 = concatenate_datasets([
|
| 385 |
ds_1800["train"],
|
|
@@ -439,7 +439,7 @@ Creative Commons Attribution Share Alike 4.0: https://creativecommons.org/licens
|
|
| 439 |
|
| 440 |
### Citation Information
|
| 441 |
|
| 442 |
-
You should always cite the original kubhist2 release, provided below as bibtex. If you want to additionally refer to this specific version, please also add a link to the huggingface page: https://huggingface.co/datasets/
|
| 443 |
|
| 444 |
```bibtex
|
| 445 |
@misc{Kubhist2,
|
|
|
|
| 297 |
## Dataset Description
|
| 298 |
|
| 299 |
- **Homepage: https://changeiskey.org**
|
| 300 |
+
- **Repository: https://github.com/iguanodon-ai/kubhist2**
|
| 301 |
- **Point of Contact: Simon Hengchen / iguanodon.ai**
|
| 302 |
|
| 303 |
|
|
|
|
| 364 |
|
| 365 |
Load the whole corpus using
|
| 366 |
```python
|
| 367 |
+
dataset = load_dataset("iguanodon-ai/kubhist2")
|
| 368 |
```
|
| 369 |
or a decadal subset using
|
| 370 |
```python
|
| 371 |
+
dataset = load_dataset("iguanodon-ai/kubhist2", "decade")
|
| 372 |
```
|
| 373 |
The `decade` must be a string, valid values are within `range(1640, 1910, 10)`.
|
| 374 |
|
|
|
|
| 377 |
```python
|
| 378 |
from datasets import load_dataset, concatenate_datasets
|
| 379 |
|
| 380 |
+
ds_1800 = load_dataset("iguanodon-ai/kubhist2", "1800")
|
| 381 |
+
ds_1810 = load_dataset("iguanodon-ai/kubhist2", "1810")
|
| 382 |
+
ds_1820 = load_dataset("iguanodon-ai/kubhist2", "1820")
|
| 383 |
|
| 384 |
ds_1800_1820 = concatenate_datasets([
|
| 385 |
ds_1800["train"],
|
|
|
|
| 439 |
|
| 440 |
### Citation Information
|
| 441 |
|
| 442 |
+
You should always cite the original kubhist2 release, provided below as bibtex. If you want to additionally refer to this specific version, please also add a link to the huggingface page: https://huggingface.co/datasets/iguanodon-ai/kubhist2.
|
| 443 |
|
| 444 |
```bibtex
|
| 445 |
@misc{Kubhist2,
|