worldboss commited on
Commit
b50c4c1
1 Parent(s): 54e7623

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
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
+ ```