Dataset Viewer
Auto-converted to Parquet Duplicate
docid
stringlengths
1
7
text
stringlengths
8
18.4M
url
stringlengths
13
1.88k
0
1977 VFL grand final The 1977 VFL grand final was a series of two Australian rules football matches between the North Melbourne Football Club and the Collingwood Football Club. Together they are considered the 80th and 81st grand finals of the Victorian Football League and were staged to determine the premiers for the...
https://en.wikipedia.org/wiki/1977_VFL_grand_final
1
[2410.14170] Personalized Image Generation with Large Multimodal Models View PDF HTML (experimental) > Abstract:Personalized content filtering, such as recommender systems, has become a critical infrastructure to alleviate information overload. However, these systems merely filter existing content and are constrained...
https://arxiv.org/abs/2410.14170
2
"Personalized Generation In Large Model Era: A Survey\n Yiyan Xu1 , Jinghao Zh(...TRUNCATED)
https://aclanthology.org/2025.acl-long.1201.pdf
3
"The Fourth Dynasty of Ancient Egypt\n\nThe Fourth Dynasty is best known for its monumental pyramid (...TRUNCATED)
https://pharaoh.se/ancient-egypt/dynasty/4/
4
"Egyptology 🇪🇬 | Pharaoh Sneferu, who ruled Egypt during the Old Kingdom period from approxima(...TRUNCATED)
https://www.facebook.com/groups/2691415461140055/posts/3553660751582184/
5
"Fourth Dynasty of Egypt\n\nThe Fourth Dynasty of ancient Egypt (notated Dynasty IV) is characterize(...TRUNCATED)
https://en.wikipedia.org/wiki/Fourth_Dynasty_of_Egypt
6
"(PDF) The Wittelsbach Court in Munich: history and authority in the visual arts (1460-1508)\n\nThe (...TRUNCATED)
https://www.academia.edu/2433605/The_Wittelsbach_Court_in_Munich_history_and_authority_in_the_visual_arts_1460_1508_
7
"Medieval Germany: An Encyclopedia (Routledge Encyclopedias of the Middle Ages)\n\nMedieval Germany (...TRUNCATED)
https://epdf.pub/medieval-germany-an-encyclopedia-routledge-encyclopedias-of-the-middle-ages.html
8
"UNIVERSITY OF GLASGOW\nFACULTY OF ARTS\nDEPARTMENT OF HISTORY OF ART\nPHD\nAndreas M. Dahlem\nThe W(...TRUNCATED)
https://theses.gla.ac.uk/892/1/2009dahlemphd_edited.pdf
9
"Types of institutions, bodies and agencies\n\nSet-up and location\n\n\nThe European Union’s insti(...TRUNCATED)
https://european-union.europa.eu/institutions-law-budget/institutions-and-bodies/types-institutions-and-bodies_en
End of preview. Expand in Data Studio
Blog Model Blog Blog Dataset Model Demo Eval Logs
Adopted by NVIDIA's Nemotron family of models!

🤗 HuggingFace Slack | WeChat

OpenResearcher Corpus

This dataset contains a carefully curated ~11B-tokens corpus, which serves as an offline search engine for our data generation process, eliminating the need for external Search APIs. Details on the corpus curation process are available in our blog.

Format

Each row in the dataset contains the following fields:

  • docid (string): A unique identifier for each document in the corpus.
  • text (string): The complete text content of the document. Contains the full body of web pages.
  • url (string): The source URL where the document was retrieved from.

How to use this dataset?

You can use this dataset together with its embeddings to build an offline search engine. Below is a pseduo code for demonstration only (for production use, consider Faiss-GPU).

# download index before
huggingface-cli download OpenResearcher/OpenResearcher-Corpus --repo-type=dataset --include="qwen3-embedding-8b/*" --local-dir ./indexes
import glob
import pickle
import faiss
import numpy as np
from datasets import load_dataset
from sentence_transformers import SentenceTransformer

# 1. Load corpus
corpus = load_dataset("OpenResearcher/OpenResearcher-Corpus", split="train")
docid_to_doc = {str(doc["docid"]): doc for doc in corpus}

# 2. Load all embedding shards from OpenResearcher-Indexes
index_files = sorted(glob.glob("path/to/indexes/*.pkl"))
all_embeddings = []
all_lookup = []

for file_path in index_files:
    with open(file_path, "rb") as f:
        embeddings, lookup = pickle.load(f)
        all_embeddings.append(embeddings)
        all_lookup.extend(lookup)

all_embeddings = np.vstack(all_embeddings).astype(np.float32)
faiss.normalize_L2(all_embeddings)  # Normalize for cosine similarity

# 3. Build FAISS index
index = faiss.IndexFlatIP(all_embeddings.shape[1])
index.add(all_embeddings)

# 4. Load model and encode query
model = SentenceTransformer("Qwen/Qwen3-Embedding-8B")
query = "What is machine learning?"
query_embedding = model.encode([query], prompt_name="query")

# 5. Search in FAISS
scores, indices = index.search(query_embedding, k=5)

# 6. Print results
for idx, score in zip(indices[0], scores[0]):
    docid = str(all_lookup[idx])
    doc = docid_to_doc.get(docid)
    if doc:
        print(f"Score: {score:.4f}")
        print(f"URL: {doc['url']}")
        print(f"Text: {doc['text'][:200]}...\n")

Citation

@article{li2026openresearcher,
  title={{OpenResearcher: A Fully Open Pipeline for Long-Horizon Deep Research Trajectory Synthesis}},
  author={Li, Zhuofeng and Jiang, Dongfu and Ma, Xueguang and Zhang, Haoxiang and Nie, Ping and Zhang, Yuyu and Zou, Kai and Xie, Jianwen and Zhang, Yu and Chen, Wenhu},
  journal={arXiv preprint arXiv:2603.20278},
  year={2026}
}
Downloads last month
929

Paper for OpenResearcher/OpenResearcher-Corpus