Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -37,3 +37,15 @@ GhanaNews dataset is a collection of news articles from various Ghanaian News Po
|
|
37 |
|
38 |
The Ghana news topic classification dataset is constructed by Theophilus Siameh (theodondre@gmail.com) from the dataset above.
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
The Ghana news topic classification dataset is constructed by Theophilus Siameh (theodondre@gmail.com) from the dataset above.
|
39 |
|
40 |
+
|
41 |
+
|
42 |
+
### Load Dataset
|
43 |
+
```shell
|
44 |
+
pip install datasets
|
45 |
+
```
|
46 |
+
```python
|
47 |
+
from datasets import load_dataset
|
48 |
+
|
49 |
+
train = load_dataset("worldboss/ghana-news", split="train")
|
50 |
+
test = load_dataset("worldboss/ghana-news", split="test")
|
51 |
+
```
|