Datasets:
Complete dataset: full coverage 2023-11 .. 2025-02, parquet per channel/year + raw text zips, updated card
Browse files- README.md +81 -99
- data/ORT/2023.parquet +3 -0
- data/ORT/2024.parquet +3 -0
- data/ORT/2025.parquet +3 -0
- data/belarusone/2023.parquet +3 -0
- data/belarusone/2024.parquet +3 -0
- data/belarusone/2025.parquet +3 -0
- data/oneplusone/2023.parquet +3 -0
- data/oneplusone/2024.parquet +3 -0
- data/oneplusone/2025.parquet +3 -0
- data/russiaone/2023.parquet +3 -0
- data/russiaone/2024.parquet +3 -0
- data/russiaone/2025.parquet +3 -0
- 2023_ORT.zip → raw/2023_ORT.zip +2 -2
- 2023_belarusone.zip → raw/2023_belarusone.zip +2 -2
- 2023_oneplusone.zip → raw/2023_oneplusone.zip +2 -2
- 2023_russiaone.zip → raw/2023_russiaone.zip +2 -2
- raw/2024_ORT.zip +3 -0
- raw/2024_belarusone.zip +3 -0
- raw/2024_oneplusone.zip +3 -0
- raw/2024_russiaone.zip +3 -0
- raw/2025_ORT.zip +3 -0
- raw/2025_belarusone.zip +3 -0
- raw/2025_oneplusone.zip +3 -0
- raw/2025_russiaone.zip +3 -0
README.md
CHANGED
|
@@ -9,112 +9,94 @@ task_categories:
|
|
| 9 |
- text-classification
|
| 10 |
tags:
|
| 11 |
- sociology
|
|
|
|
|
|
|
| 12 |
size_categories:
|
| 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 |
import pandas as pd
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
import zipfile
|
| 42 |
-
import glob
|
| 43 |
-
import requests
|
| 44 |
-
import shutil
|
| 45 |
-
|
| 46 |
-
def download_datasets(urls, start_year, end_year):
|
| 47 |
-
# for year in range(start_year, end_year + 1):
|
| 48 |
-
for download_url in urls:
|
| 49 |
-
# download_url = url.replace('2023', str(year))
|
| 50 |
-
print(f'downloading {download_url}')
|
| 51 |
-
response = requests.get(download_url)
|
| 52 |
-
if response.status_code == 200:
|
| 53 |
-
file_name = download_url.split('/')[-1]
|
| 54 |
-
with open(file_name, 'wb') as f:
|
| 55 |
-
f.write(response.content)
|
| 56 |
-
print(f"Downloaded {file_name}")
|
| 57 |
-
else:
|
| 58 |
-
print(f"Failed to download {download_url}")
|
| 59 |
-
|
| 60 |
-
def load_data_to_df(projects):
|
| 61 |
-
current_year = datetime.datetime.now().year
|
| 62 |
-
all_data = []
|
| 63 |
-
for project in projects:
|
| 64 |
-
for year in range(2023, current_year + 1):
|
| 65 |
-
archive_name = f"{year}_{project}.zip"
|
| 66 |
-
# Assuming the archive is downloaded in the current working directory
|
| 67 |
-
with zipfile.ZipFile(archive_name, 'r') as z:
|
| 68 |
-
z.extractall("temp_data")
|
| 69 |
-
for filename in glob.glob(f"temp_data/data/transcriptions/{project}/*.txt"):
|
| 70 |
-
with open(filename, 'r', encoding='utf-8') as file:
|
| 71 |
-
text = file.read()
|
| 72 |
-
# Extract date and time from the filename
|
| 73 |
-
basename = os.path.basename(filename)
|
| 74 |
-
datetime_str = basename.split('.')[0] # Remove the file extension
|
| 75 |
-
|
| 76 |
-
# Split into date and time components
|
| 77 |
-
date_part, time_part = datetime_str.split('_')
|
| 78 |
-
# Format time part correctly (replace '-' with ':')
|
| 79 |
-
time_part_formatted = time_part.replace('-', ':')
|
| 80 |
-
|
| 81 |
-
# Combine date and time with a space
|
| 82 |
-
datetime_str_formatted = f"{date_part} {time_part_formatted}"
|
| 83 |
-
|
| 84 |
-
all_data.append({"project": project, "date": datetime_str_formatted, "text": text})
|
| 85 |
-
|
| 86 |
-
# Cleanup extracted files
|
| 87 |
-
shutil.rmtree(f"temp_data/data/transcriptions/{project}")
|
| 88 |
-
# Cleanup the remaining temporary directory
|
| 89 |
-
shutil.rmtree("temp_data")
|
| 90 |
-
|
| 91 |
-
return pd.DataFrame(all_data)
|
| 92 |
-
|
| 93 |
-
current_year = datetime.datetime.now().year
|
| 94 |
-
projects = ['ORT', 'belarusone', 'oneplusone', 'russiaone']
|
| 95 |
-
urls = []
|
| 96 |
-
for year in range(2023, current_year + 1):
|
| 97 |
-
for project in projects:
|
| 98 |
-
urls.append(f"https://storage.googleapis.com/rtlm/{year}_{project}.zip")
|
| 99 |
-
print(urls)
|
| 100 |
-
download_datasets(urls, 2023, current_year)
|
| 101 |
-
|
| 102 |
-
# Save to df
|
| 103 |
-
projects = [url.split('/')[-1].split('_')[1].split('.')[0] for url in urls]
|
| 104 |
-
# Create the DataFrame
|
| 105 |
-
df = load_data_to_df(projects)
|
| 106 |
-
print(df.head(2))
|
| 107 |
-
df.to_csv('rtlm.csv', index=False)
|
| 108 |
```
|
| 109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
## Known issues
|
| 111 |
-
|
|
|
|
| 112 |
* Due to technical issues or channel restrictions, some periods were not transcribed.
|
| 113 |
-
* Some transcriptions may contain hallucinations, in particular
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
|
| 115 |
## Disclaimer
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
|
|
|
|
|
| 9 |
- text-classification
|
| 10 |
tags:
|
| 11 |
- sociology
|
| 12 |
+
- television
|
| 13 |
+
- media
|
| 14 |
size_categories:
|
| 15 |
+
- 100K<n<1M
|
| 16 |
+
configs:
|
| 17 |
+
- config_name: default
|
| 18 |
+
data_files:
|
| 19 |
+
- split: train
|
| 20 |
+
path: data/*/*.parquet
|
| 21 |
+
- config_name: ORT
|
| 22 |
+
data_files:
|
| 23 |
+
- split: train
|
| 24 |
+
path: data/ORT/*.parquet
|
| 25 |
+
- config_name: belarusone
|
| 26 |
+
data_files:
|
| 27 |
+
- split: train
|
| 28 |
+
path: data/belarusone/*.parquet
|
| 29 |
+
- config_name: oneplusone
|
| 30 |
+
data_files:
|
| 31 |
+
- split: train
|
| 32 |
+
path: data/oneplusone/*.parquet
|
| 33 |
+
- config_name: russiaone
|
| 34 |
+
data_files:
|
| 35 |
+
- split: train
|
| 36 |
+
path: data/russiaone/*.parquet
|
| 37 |
---
|
| 38 |
+
|
| 39 |
+
# rtlm — TV Channel Transcriptions
|
| 40 |
+
|
| 41 |
+
Transcriptions of the 24/7 live streams of four TV channels from Russia, Belarus and Ukraine, collected for research purposes. The streams were recorded in 5–10 minute chunks and transcribed with the Whisper large-v2 model.
|
| 42 |
+
|
| 43 |
+
## Channels and coverage
|
| 44 |
+
|
| 45 |
+
| Channel | Config name | Language | Coverage | Chunks |
|
| 46 |
+
|---|---|---|---|---|
|
| 47 |
+
| Channel One (ORT), Russia | `ORT` | ru | 2023-11-05 → 2025-02-04 | 69,273 |
|
| 48 |
+
| Belarus 1, Belarus | `belarusone` | be/ru | 2023-11-12 → 2025-01-03 | 44,639 |
|
| 49 |
+
| 1+1, Ukraine | `oneplusone` | uk | 2023-11-12 → 2025-01-03 | 58,894 |
|
| 50 |
+
| Russia 1, Russia | `russiaone` | ru | 2023-11-26 → 2025-01-03 | 54,101 |
|
| 51 |
+
|
| 52 |
+
226,907 chunks in total (≈2.4 GB of raw text). This repository contains the complete dataset; collection stopped in early 2025.
|
| 53 |
+
|
| 54 |
+
## Data format
|
| 55 |
+
|
| 56 |
+
The primary format is Parquet, one file per channel per year, under `data/{channel}/{year}.parquet`:
|
| 57 |
+
|
| 58 |
+
| Column | Type | Description |
|
| 59 |
+
|---|---|---|
|
| 60 |
+
| `channel` | string | `ORT`, `belarusone`, `oneplusone` or `russiaone` |
|
| 61 |
+
| `datetime` | timestamp | Chunk start time, parsed from the original recording filename (server clock, UTC) |
|
| 62 |
+
| `text` | string | Whisper large-v2 transcription of the chunk |
|
| 63 |
+
|
| 64 |
+
## Usage
|
| 65 |
+
|
| 66 |
+
```python
|
| 67 |
+
from datasets import load_dataset
|
| 68 |
+
|
| 69 |
+
ds = load_dataset("format37/rtlm", split="train") # all channels
|
| 70 |
+
ort = load_dataset("format37/rtlm", "ORT", split="train") # a single channel
|
| 71 |
```
|
| 72 |
+
|
| 73 |
+
With pandas:
|
| 74 |
+
|
| 75 |
+
```python
|
| 76 |
import pandas as pd
|
| 77 |
+
|
| 78 |
+
df = pd.read_parquet("hf://datasets/format37/rtlm/data/ORT/2024.parquet")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
```
|
| 80 |
|
| 81 |
+
## Raw text files
|
| 82 |
+
|
| 83 |
+
The original text files (one file per chunk, named `YYYY-MM-DD_HH-MM-SS.txt`) are available as zip archives under `raw/{year}_{channel}.zip`, with the layout `{channel}/{filename}.txt` inside each archive.
|
| 84 |
+
|
| 85 |
## Known issues
|
| 86 |
+
|
| 87 |
+
* The first part of the Belarus 1 channel was recorded by two instances, so it contains some near-duplicate chunks.
|
| 88 |
* Due to technical issues or channel restrictions, some periods were not transcribed.
|
| 89 |
+
* Some transcriptions may contain hallucinations, in particular during silent periods. However, these hallucinations have stable signatures.
|
| 90 |
+
* A small number of chunks (~700) produced an empty transcription; they are kept as rows with empty `text`.
|
| 91 |
+
|
| 92 |
+
## Related tools
|
| 93 |
+
|
| 94 |
+
Scripts for downloading and processing the dataset: https://github.com/format37/rtlm
|
| 95 |
|
| 96 |
## Disclaimer
|
| 97 |
+
|
| 98 |
+
The dataset is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the dataset or the use or other dealings in the dataset.
|
| 99 |
+
|
| 100 |
+
End users of the dataset are solely responsible for ensuring that their use complies with all applicable laws and copyrights. The dataset is based on transcriptions from open live streams of various TV channels and should be used in accordance with the Creative Commons Attribution-NonCommercial (CC BY-NC) license, respecting the non-commercial constraints and the need for attribution.
|
| 101 |
+
|
| 102 |
+
Please note that the use of this dataset might be subject to additional legal and ethical considerations, and it is the end user's responsibility to determine whether their use of the dataset adheres to these considerations. The authors of this dataset make no representations or guarantees regarding the legality or ethicality of the dataset's use by third parties.
|
data/ORT/2023.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17e28fb231a9c71fde9c155bcc8eaa674e46bf261e4d1c8aac8643fcdb8e4b11
|
| 3 |
+
size 20953220
|
data/ORT/2024.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21c634557eea7218f79aee52a80fdc5d22dc5edcc276aa8fccd1447ef780fc57
|
| 3 |
+
size 128546389
|
data/ORT/2025.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19e33a7f48b1bb5229db804abf227ddfffe0913b31f44c18b234550618a6eec7
|
| 3 |
+
size 5004486
|
data/belarusone/2023.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bfc3b31a409333832c9c5a3e28df114d67e3b8c711900d444a0126ee207d427
|
| 3 |
+
size 9535823
|
data/belarusone/2024.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:787ec0c2294da5d57543787f166c5ac42a4f04a77c95676ef548f3716a10d7dd
|
| 3 |
+
size 66066106
|
data/belarusone/2025.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fa72e4d3881be312b788a7487ba1d6c172344f7acf6d7a4496dd6967fef733e
|
| 3 |
+
size 496172
|
data/oneplusone/2023.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:246dfd56f86556ea0b24f1537bb79f83129ef49e7a739d7307d7a423e4e888e8
|
| 3 |
+
size 17782128
|
data/oneplusone/2024.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9e783be540e1acba2420de0be41b3420c3b10f599b261cd1f2278a0ead65d11
|
| 3 |
+
size 107689736
|
data/oneplusone/2025.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89a4216f65df19a99e0bc6f50db89ad2dc6c82749cab2f974298abfaa99d9496
|
| 3 |
+
size 659658
|
data/russiaone/2023.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9965e20b568687c38ce00dd5f34ca74bc7575ef6d5cbf2e09401ea37c1710564
|
| 3 |
+
size 12851231
|
data/russiaone/2024.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:590f398e289685743f0c85aad8f96789515fc4258fd8b1b0d18c201dd650f270
|
| 3 |
+
size 112446461
|
data/russiaone/2025.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc4f75d3424c340d07dc17bc9ba38c1f98094ac8c3ac8170dfc92d45a8d3e72e
|
| 3 |
+
size 622947
|
2023_ORT.zip → raw/2023_ORT.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14c88f5f824305c66a2dcb339ec755ed8eb15ea34d21ebea24563f1c671a6ba6
|
| 3 |
+
size 36238784
|
2023_belarusone.zip → raw/2023_belarusone.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f49badbf19cfda4dc279d94f465544e84b1d68746f1f88c1e3968025379b349f
|
| 3 |
+
size 20122543
|
2023_oneplusone.zip → raw/2023_oneplusone.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77b7e3eec7d9c736784158d5f570c1e12a862d16f07465eedc8c7b644a74e454
|
| 3 |
+
size 30234157
|
2023_russiaone.zip → raw/2023_russiaone.zip
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7726e459bf229944908969035b064cceab0b4e8d818da323956066e72d4b2ecc
|
| 3 |
+
size 22413709
|
raw/2024_ORT.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e9dca7bb906df6161f8fa0db6a6b144441d42fe27fa9e0bf6fbdf797ff129d7
|
| 3 |
+
size 218880926
|
raw/2024_belarusone.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d3131fd42fead9705e16a69b46219814aed1767721244ef684197cb43a91c80
|
| 3 |
+
size 115297680
|
raw/2024_oneplusone.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af073953d87b039296636be5bba737c70ca5c6126ca4d9aca58b3fc0ce730c26
|
| 3 |
+
size 188508380
|
raw/2024_russiaone.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b5d8b4a0fccbca58522ffdf78e450f4de46bbf921f8e19f2aabc291d92f5d06
|
| 3 |
+
size 200384458
|
raw/2025_ORT.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05bfb58822806b083b72e8155667fe7e2027236b6c5db216c7b5d7ed67a6afbd
|
| 3 |
+
size 8286883
|
raw/2025_belarusone.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da3d696933594525106849d1cbe90b9f7a19fa12ee9944fa4ddce4f537ba2e08
|
| 3 |
+
size 818645
|
raw/2025_oneplusone.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5a7ff8a77db7b5e8d7e001bc37d3fdf29082af53a8adacfa9592adcb2cd3619
|
| 3 |
+
size 1053532
|
raw/2025_russiaone.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a049b9c3bfa56722533a16643c5aad9c2cedee9ecf5024129d521a9693b4d9c
|
| 3 |
+
size 1017065
|