File size: 2,396 Bytes
46ccbc6 f7f9e40 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 b3cdcd3 bafabb4 bd9a0e7 bafabb4 dd5f7e3 bafabb4 46ccbc6 caa20c8 e3b8e02 caa20c8 cb1fad8 caa20c8 90214d6 caa20c8 90214d6 caa20c8 cb1fad8 caa20c8 cb1fad8 caa20c8 cb1fad8 caa20c8 cb1fad8 caa20c8 cb1fad8 90214d6 cb1fad8 90214d6 cb1fad8 90214d6 cb1fad8 caa20c8 cb1fad8 caa20c8 cb1fad8 90214d6 cb1fad8 90214d6 cb1fad8 caa20c8 cb1fad8 caa20c8 cb1fad8 |
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
---
language:
- hu
size_categories:
- 10K<n<100K
pretty_name: K-Monitor sajtóadatbázis
dataset_info:
features:
- name: news_id
dtype: int64
- name: title
dtype: string
- name: description
dtype: string
- name: text
dtype: string
- name: source_url
dtype: string
- name: archive_url
dtype: string
- name: kmdb_url
dtype: string
- name: newspaper
dtype: string
- name: category
dtype: string
- name: pub_time
dtype: string
- name: persons
sequence: string
- name: institutions
sequence: string
- name: places
sequence: string
- name: others
sequence: string
- name: files
sequence: string
splits:
- name: train
num_bytes: 276705420
num_examples: 60178
download_size: 157469009
dataset_size: 276705420
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
Forrás: https://adatbazis.k-monitor.hu/
## Használat
```python
from datasets import load_dataset
dataset = load_dataset('K-Monitor/kmdb_base')
# írjuk ki egy cikk címét
print(dataset['train'][0]['title'])
```
Pandas-zal:
```python
import pandas as pd
df = pd.read_parquet("hf://datasets/K-Monitor/kmdb_base/data/train-00000-of-00001.parquet")
```
## Oszlopok magyarázata
`news_id`: a cikk k-monitor-os azonosítója
`title`: hírportál által adott cím (hiányos lehet, lásd: kmonitor_title)
`description`: k-monitor adatbázisában tárolt leírás
`text`: cikk szövegének törzse, tisztítva (üres is lehet, de előfordulhat az is, hogy nem teljes)
`source_url`: cikk url-je, ami hírportálra mutat
`archive_url`: archive.org-os url, az url archivált változatát tárolja
`kmdb_url`: a cikk k-monitor adatbázisba felvett rekordjára mutat (https://adatbazis.k-monitor.hu/hirek/...)
`newspaper`: a hírportál neve (a k-monitor adatbázisból származik)
`category`: a cikk kategóriája (általában magyar/eu/világ hír)
`files`: a cikk mely aktákban szerepel
`pub_time`: a cikk publikálásának időpontja (a k-monitor adatbázisból származik, nem mindig pontos)
`authors`: a cikk szerzői, ez a hír parsolása közben kinyert információ (lehet, hogy hibás, sokszor hiányzik)
`persons`: a cikkre felvett személyek
`institutions`: a cikkre felvett intézmények
`places`: a cikkre felvett helyszínek
`others`: a cikkre felvett egyéb címkék |