Datasets:
File size: 1,648 Bytes
21c3729 9b0b07d bb7ceba 613a0d3 bb7ceba 613a0d3 bb7ceba 21c3729 bb7ceba 94dd140 6943139 94dd140 deca031 94dd140 |
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 |
---
dataset_info:
features:
- name: url
dtype: string
- name: channel_id
dtype: string
- name: post_id
dtype: int64
- name: views
dtype: int64
- name: pub_time
dtype: int64
- name: text
dtype: string
- name: fetch_time
dtype: int64
- name: images
sequence: string
- name: links
sequence: string
- name: videos
sequence: string
- name: reply_to
dtype: string
- name: forward_from
dtype: string
- name: channel_title
dtype: string
- name: has_obscene
dtype: bool
- name: patched_text
dtype: string
- name: groups
struct:
- name: economy
dtype: string
- name: main
dtype: string
- name: tech
dtype: string
- name: issue
dtype: string
- name: language
dtype: string
splits:
- name: train
num_bytes: 3508000056
num_examples: 1672028
download_size: 1827333867
dataset_size: 3508000056
license: cc-by-4.0
task_categories:
- text-generation
language:
- ru
pretty_name: Nyan Documents
size_categories:
- 1M<n<10M
---
# Nyan documents
Documents scraped for [НЯН](https://t.me/nyannews) Telegram channel from March 2022 to December 2023. The dataset includes documents from 100+ different Telegram news channels.
## Usage
```bash
pip3 install datasets
```
```python
from datasets import load_dataset
for row in load_dataset("NyanNyanovich/nyan_documents", split="train", streaming=True):
print(row)
break
```
## Other datasets
* Documents (this dataset): https://huggingface.co/datasets/NyanNyanovich/nyan_documents
* Clusters: https://huggingface.co/datasets/NyanNyanovich/nyan_clusters |