AWeirdDev commited on
Commit
933176f
1 Parent(s): 11e9c3c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md CHANGED
@@ -18,4 +18,36 @@ configs:
18
  data_files:
19
  - split: train
20
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  data_files:
19
  - split: train
20
  path: data/train-*
21
+ license: mit
22
+ language:
23
+ - zh
24
+ tags:
25
+ - philosophy
26
+ size_categories:
27
+ - 10K<n<100K
28
+ pretty_name: zh-TW Articles (ZL)
29
+ task_categories:
30
+ - text-generation
31
+ - text2text-generation
32
+ - summarization
33
  ---
34
+
35
+ # zh-tw-articles-zl (12K)
36
+
37
+ Articles obtained from [勵志人生 - Zeelive](https://zeelive.com.tw).
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ dataset = load_dataset("AWeirdDev/zh-tw-articles-zl")
43
+ ```
44
+
45
+ ## Format
46
+
47
+ ```python
48
+ {
49
+ "title": "孩子童年不吃苦,家長晚年必吃苦" # The title
50
+ "link": "https://www.zeelive.com.tw/jiatingjiaoyu/184191.html",
51
+ "content": "錢財莫輕,勤苦得來;奢華莫學,自取貧窮…" # Text content
52
+ }
53
+ ```