File size: 1,008 Bytes
22e40a6
 
 
 
 
 
 
9220649
 
22e40a6
 
11e9c3c
22e40a6
11e9c3c
 
22e40a6
 
 
 
 
933176f
 
 
 
 
 
 
31696af
933176f
 
 
 
22e40a6
933176f
31696af
933176f
31696af
933176f
 
 
 
31696af
933176f
 
 
 
 
 
 
 
ebf8f90
933176f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
dataset_info:
  features:
  - name: title
    dtype: string
  - name: link
    dtype: string
  - name: contents
    dtype: string
  splits:
  - name: train
    num_bytes: 59924593
    num_examples: 12061
  download_size: 31652693
  dataset_size: 59924593
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: mit
language:
- zh
tags:
- philosophy
size_categories:
- 10K<n<100K
pretty_name: zh-TW Essays (ZL)
task_categories:
- text-generation
- text2text-generation
- summarization
---

# zh-tw-essays (12K)

Essays obtained from [勵志人生 - Zeelive](https://zeelive.com.tw).

```python
from datasets import load_dataset

dataset = load_dataset("AWeirdDev/zh-tw-essays")
```

## Format

```python
{
    "title": "孩子童年不吃苦,家長晚年必吃苦"  # The title
    "link": "https://www.zeelive.com.tw/jiatingjiaoyu/184191.html",
    "content": "錢財莫輕,勤苦得來;奢華莫學,自取貧窮…"  # Text content. **May be blank!**
}
```