Datasets:
metadata
language:
- zh
license: mit
size_categories:
- 1K<n<10K
task_categories:
- text-generation
pretty_name: zh-tw-articles-2k
tags:
- medical
- finance
- webdataset
dataset_info:
features:
- name: image
dtype: string
- name: title
dtype: string
- name: conclusion
dtype: string
- name: content
dtype: string
- name: timestamp
dtype: string
- name: category
dtype: string
- name: link
dtype: string
splits:
- name: train
num_bytes: 3079847
num_examples: 1400
download_size: 2127628
dataset_size: 3079847
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
zh-tw-pts-articles-sm
🇺🇸 English • 🐣繁體中文
此資料集包含了從 公視新聞網 抓取的新聞資料。
注意:部分 key 對應的值(例如
conclusion
)有可能為None
。
Dataset({
features: [
'image', # 縮圖
'title', # 標題
'conclusion', # 結論(「結論先講」一欄,可能為 None)
'content', # 文章內容
'timestamp', # 發布時間
'category', # 類別(可能為 None)
'link' # 文章連結
],
num_rows: 1400
})
使用此資料集
利用 🤗 Datasets 下載、使用或是編輯此資料集。
from datasets import load_dataset
dataset = load_dataset("AWeirdDev/zh-tw-pts-articles-sm")