Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- zh
|
4 |
+
license: mit
|
5 |
+
task_categories:
|
6 |
+
- text-generation
|
7 |
+
tags:
|
8 |
+
- medical
|
9 |
+
- finance
|
10 |
+
- webdataset
|
11 |
+
pretty_name: zh-tw-articles-2k
|
12 |
+
size_categories:
|
13 |
+
- 1K<n<10K
|
14 |
+
---
|
15 |
+
<img alt="Taiwan Flag"
|
16 |
+
src="https://github.com/AWeirdScratcher/tvbox/assets/90096971/1995d468-fee7-44c3-8bfb-298884d559eb"
|
17 |
+
align="right"
|
18 |
+
width="160" />
|
19 |
+
|
20 |
+
# zh-tw-articles-2k
|
21 |
+
|
22 |
+
🐣English • [🇹🇼 繁體中文](https://google.com)
|
23 |
+
|
24 |
+
This dataset contains Taiwan news articles scraped from (https://www.storm.mg) on March 2024.
|
25 |
+
|
26 |
+
- Size: `5.0MB` (5294263 bytes)
|
27 |
+
- Rows: `2000`, from \\(20n\\)
|
28 |
+
- \\(n\\) pages: `100`
|
29 |
+
|
30 |
+
```python
|
31 |
+
Dataset({
|
32 |
+
features: ['image', 'title', 'content', 'tag', 'author', 'timestamp', 'link'],
|
33 |
+
num_rows: 2000
|
34 |
+
})
|
35 |
+
```
|
36 |
+
|
37 |
+
## Use The Dataset
|
38 |
+
|
39 |
+
Use [🤗 Datasets](https://pypi.org/project/datasets) to download, use or modify this dataset.
|
40 |
+
|
41 |
+
```python
|
42 |
+
from datasets import load_dataset
|
43 |
+
|
44 |
+
dataset = load_dataset("https://huggingface.co/datasets/AWeirdDev/zh-tw-articles-2k")
|
45 |
+
```
|