Dataset Viewer
Auto-converted to Parquet Duplicate
id
string
text
string
symbols
int32
source
string
vector
list
lenta-4
Полиция отпустила всех участников акции "Стратегия-31" на Триумфальной площади 31 декабря. Об этом сообщает РИА Новости со ссылкой на пресс-службу МВД. Вместе с тем, "ОВД-Инфо" сообщает, что один задержанный был оставлен в ОВД "Хорошевское" на 48 часов после отказа представляться. Всего на несанкционированной акции опп...
895
https://lenta.ru/news/2013/01/01/freed/
[ -0.0194091796875, 0.036285400390625, -0.0220489501953125, 0.0244598388671875, -0.0005207061767578125, 0.007465362548828125, 0.039276123046875, 0.017578125, -0.00634765625, -0.032623291015625, -0.032867431640625, -0.0269927978515625, 0.032623291015625, -0.0330810546875, 0.0022106170654296...
lenta-63
В Литве будут выплачены компенсации жителям страны, принудительно призванным в советскую армию после 1990 года. На эти цели, как сообщает Delfi.lt, в бюджете министерства обороны республики на 2013 год заложено 150 тысяч литов (более 50 тысяч долларов). Законопроект, предусматривающий выплату компенсаций, напомним, был...
2,092
https://lenta.ru/news/2013/01/02/money/
[ 0.0261993408203125, 0.021575927734375, -0.004962921142578125, 0.031402587890625, -0.0008764266967773438, 0.0279388427734375, -0.008941650390625, 0.010101318359375, -0.039459228515625, -0.0199737548828125, -0.024810791015625, 0.00934600830078125, 0.0360107421875, 0.00969696044921875, -0.0...
lenta-6
"При взрыве на территории полигона в Волгоградской обл(...TRUNCATED)
1,640
https://lenta.ru/news/2013/01/01/volgograd/
[0.02783203125,0.0266571044921875,-0.007633209228515625,0.036407470703125,-0.005931854248046875,0.02(...TRUNCATED)
lenta-19
"На Курильских островах 1 января произошло землетрясен(...TRUNCATED)
482
https://lenta.ru/news/2013/01/01/kuril/
[-0.02203369140625,-0.0092010498046875,-0.0055084228515625,0.021575927734375,0.0015897750854492188,0(...TRUNCATED)
lenta-66
"Граждане Таиланда, арестованные по подозрению в ограб(...TRUNCATED)
1,010
https://lenta.ru/news/2013/01/02/thai/
[-0.02166748046875,0.054290771484375,0.00588226318359375,0.015380859375,-0.006755828857421875,0.0053(...TRUNCATED)
lenta-0
"В ЮАР произошел пожар, в результате которого погибли т(...TRUNCATED)
778
https://lenta.ru/news/2013/01/01/fire2/
[0.0030918121337890625,0.045013427734375,-0.015625,0.021575927734375,-0.006591796875,0.0171508789062(...TRUNCATED)
lenta-137
"Начиная с 1 января 2013 года режим \"Не беспокоить\" в устр(...TRUNCATED)
1,505
https://lenta.ru/news/2013/01/03/disturb/
[0.01483917236328125,-0.01053619384765625,-0.006683349609375,0.0125732421875,0.01235198974609375,0.0(...TRUNCATED)
lenta-93
"Федеральная служба исполнения наказаний (ФСИН) создас(...TRUNCATED)
1,290
https://lenta.ru/news/2013/01/03/tradehouse/
[0.00365447998046875,0.0167999267578125,-0.00897979736328125,0.036590576171875,0.00765228271484375,0(...TRUNCATED)
lenta-26
"Корреспондент газеты The New York Times Крис Бакли вынужден б(...TRUNCATED)
1,579
https://lenta.ru/news/2013/01/01/goaway/
[-0.007732391357421875,0.029388427734375,-0.0175933837890625,-0.01227569580078125,0.03021240234375,0(...TRUNCATED)
lenta-51
"Президент России Владимир Путин подписал закон, повыш(...TRUNCATED)
1,318
https://lenta.ru/news/2013/01/02/seventy/
[0.00710296630859375,0.0187835693359375,-0.026214599609375,0.0269012451171875,0.00968170166015625,-0(...TRUNCATED)
End of preview. Expand in Data Studio

RU Retrieval News

A Russian-language news retrieval dataset: ~1.9M news documents and ~1.9M synthetically generated search queries, each paired with a precomputed dense embedding.

Built and maintained by Alexei Goncharov (ImpulseLeap).

Dataset summary

Two parquet files:

File Rows Description
corpus_final.parquet 1,925,391 News documents with text and embeddings
queries_final.parquet 1,900,815 Synthetic search queries with embeddings

Each document has exactly one corresponding query, matched by id. A small number of documents (~25k) have no query (failed generation) and are excluded from the queries file but kept in the corpus file, so the two files are not perfectly 1:1 in row count.

corpus_final.parquet columns

Column Type Description
id string Unique document id, prefixed by source (lenta-*, ria-*, qa-*)
text string Full raw article text (original casing/punctuation preserved)
symbols int32 Character count of text
source string Original article URL (Lenta only) or source dataset tag (ria-news, qa_news_ru)
vector fixed_size_list[4096] Dense embedding of text

queries_final.parquet columns

Column Type Description
id string Matches the id of the source document in corpus_final.parquet
query string Synthetic natural-language search query for that document
vector fixed_size_list[4096] Dense embedding of query

Embeddings

All vectors were generated with Qwen/Qwen3-Embedding-8B via the DeepInfra API, encoding format float, then cast from float32 to float16 for storage. Empirically this loses negligible precision for retrieval purposes (cosine similarity between the float32 and float16 versions of the same vector is ~1.0 in spot checks).

Vectors are 4096-dimensional. No hard negatives are precomputed or shipped — the raw vectors are provided so that negative mining can be done with whatever embedding model, similarity threshold, or scale (5 negatives or 5,000) fits your training setup, via FAISS or similar over the vector column.

Query generation

Queries were generated with Gemini 2.5 Flash-Lite (Vertex AI Batch API), one query per document, prompted to produce a natural search-engine-style query a person might type to find that specific article (not a headline or summary).

Data sources

Documents were aggregated from three existing Russian-language news corpora:

Source Prefix Origin
Lenta lenta-* TopicNet/Lenta
ria-news ria-* ai-forever/ria-news-retrieval (via kaengreg/ria-news mirror), part of the ruMTEB benchmark suite
qa_news_ru qa-* AIR-Bench/qa_news_ru (mixed Russian-language news, not exclusively Russia-sourced)

License and content notice

This dataset (its structure, the synthetic queries, and the embeddings) is released under CC-BY-4.0. Please credit Alexei Goncharov / ImpulseLeap if you use it.

The underlying news article texts are aggregated from the public sources listed above for research purposes; they were not authored by the dataset creator, and their original copyright status varies by source and is not independently verified here. If you are a rights holder and want content removed, please open an issue on this repository or contact the author, and it will be handled promptly.

Usage

import pyarrow.parquet as pq

corpus = pq.read_table("corpus_final.parquet")
queries = pq.read_table("queries_final.parquet")

For large-scale use, prefer streaming by row group rather than loading the full table into memory — the corpus file alone contains ~30GB of uncompressed float16 vector data.

pf = pq.ParquetFile("corpus_final.parquet")
for batch in pf.iter_batches(batch_size=10_000):
    ...
Downloads last month
75

Collection including ImpulseLeap/ru-retrieval-news