Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,67 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- zh
|
4 |
license: mit
|
5 |
+
size_categories:
|
6 |
+
- 1K<n<10K
|
7 |
+
task_categories:
|
8 |
+
- text-generation
|
9 |
+
pretty_name: zh-tw-articles-2k
|
10 |
+
tags:
|
11 |
+
- medical
|
12 |
+
- finance
|
13 |
+
- webdataset
|
14 |
+
dataset_info:
|
15 |
+
features:
|
16 |
+
- name: image
|
17 |
+
dtype: string
|
18 |
+
- name: title
|
19 |
+
dtype: string
|
20 |
+
- name: content
|
21 |
+
dtype: string
|
22 |
+
- name: tag
|
23 |
+
dtype: string
|
24 |
+
- name: author
|
25 |
+
dtype: string
|
26 |
+
- name: timestamp
|
27 |
+
dtype: string
|
28 |
+
- name: link
|
29 |
+
dtype: string
|
30 |
+
splits:
|
31 |
+
- name: train
|
32 |
+
num_bytes: 5294263
|
33 |
+
num_examples: 2000
|
34 |
+
download_size: 3541689
|
35 |
+
dataset_size: 5294263
|
36 |
+
configs:
|
37 |
+
- config_name: default
|
38 |
+
data_files:
|
39 |
+
- split: train
|
40 |
+
path: data/train-*
|
41 |
---
|
42 |
+
|
43 |
+
<img alt="PTS News"
|
44 |
+
src="https://news.pts.org.tw/images/logo.svg"
|
45 |
+
width="320" />
|
46 |
+
|
47 |
+
# zh-tw-pts-articles-**sm**
|
48 |
+
|
49 |
+
🐣English • [🇹🇼 繁體中文](https://huggingface.co/datasets/AWeirdDev/zh-tw-pts-articles-sm/blob/main/README-zhTW.md)
|
50 |
+
|
51 |
+
|
52 |
+
```python
|
53 |
+
Dataset({
|
54 |
+
features: ['image', 'title', 'conclusion', 'content', 'timestamp', 'category', 'link'],
|
55 |
+
num_rows: 1400
|
56 |
+
})
|
57 |
+
```
|
58 |
+
|
59 |
+
## Use The Dataset
|
60 |
+
|
61 |
+
Use [🤗 Datasets](https://pypi.org/project/datasets) to download, use or modify this dataset.
|
62 |
+
|
63 |
+
```python
|
64 |
+
from datasets import load_dataset
|
65 |
+
|
66 |
+
dataset = load_dataset("AWeirdDev/zh-tw-pts-articles-sm")
|
67 |
+
```
|