Datasets:

Modalities:
Tabular
Text
Formats:
csv
Languages:
Indonesian
ArXiv:
Libraries:
Datasets
pandas
License:
haryoaw commited on
Commit
f7873bc
1 Parent(s): a877256

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -1
README.md CHANGED
@@ -1,3 +1,25 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-sa-4.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - id
7
+ size_categories:
8
+ - n<1K
9
+ configs:
10
+ - config_name: id
11
+ data_files:
12
+ - split: test
13
+ path: test_copal.csv
14
+ - split: test_colloquial
15
+ path: test_copal_colloquial.csv
16
  ---
17
+
18
+ ## How to Use
19
+
20
+ ```py
21
+ from datasets import load_dataset
22
+
23
+ copal_id_dataset = load_dataset('haryoaw/COPAL', 'id', subset='test')
24
+ copal_id_colloquial_dataset = load_dataset('haryoaw/COPAL', 'id', subset='test_colloquial')
25
+ ```