Datasets:

Modalities:
Text
Libraries:
Datasets
License:
eddie14 commited on
Commit
6d76bae
·
1 Parent(s): 3439da6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -2
README.md CHANGED
@@ -21,8 +21,17 @@ dataset_info:
21
  ```
22
  from datasets import load_dataset
23
 
24
- raw_dataset = load_dataset("wisenut-nlp-team/namu", "raw", use_auth_token="<your personal/api token>")
25
- processed_dataset = load_dataset("wisenut-nlp-team/namu", "processed", use_auth_token="<your personal/api token>")
 
 
 
 
 
 
 
 
 
26
  ```
27
 
28
 
 
21
  ```
22
  from datasets import load_dataset
23
 
24
+ raw_dataset = load_dataset(
25
+ "wisenut-nlp-team/namu",
26
+ "raw",
27
+ use_auth_token="<your personal/api token>"
28
+ )
29
+
30
+ processed_dataset = load_dataset(
31
+ "wisenut-nlp-team/namu",
32
+ "processed",
33
+ use_auth_token="<your personal/api token>"
34
+ )
35
  ```
36
 
37