CoolFace
Datasetpublic

Arushhh/Llama-HybridDiffusion-processed-data-run1

Llama-HybridDiffusion processed training mixture — run 1 Built with Llama. This repository preserves the exact Hugging Face Dataset.save_to_disk Arrow snapshot used by run 1 of a Qwen3.5-2B HybridDiffusion reproduction. The directory names, dataset_info.json, state.json, and Arrow shard boundaries are retained so the data can be downloaded and supplied to the existing training configuration without a lossy format conversion. Exact snapshot inventory Dataset… See the full description on the dataset page: https://huggingface.co/datasets/Arushhh/Llama-HybridDiffusion-processed-data-run1.

sourceHugging Faceotherupdated 1mo agoView on Hugging Face
0likes1kdownloads
Dataset Card

Llama-HybridDiffusion processed training mixture — run 1

Built with Llama.

This repository preserves the exact Hugging Face Dataset.save_to_disk Arrow snapshot used by run 1 of a Qwen3.5-2B HybridDiffusion reproduction. The directory names, dataset_info.json, state.json, and Arrow shard boundaries are retained so the data can be downloaded and supplied to the existing training configuration without a lossy format conversion.

Exact snapshot inventory

Dataset directoryRowsArrow shardsAll filesExact bytesFingerprint
Long-SFT-3K4,582,959399401199,154,834,99546a9a4f0978cf6bb
Nemotron-Math-Domain3,140,11113814068,842,301,436176a344dfab63784
Nemotron-IF-Domain-Cascade776,4678103,727,605,4220e7641519fba6caa
Total8,499,537545551271,724,741,853

MANIFEST.tsv records the relative path and exact byte size of every file in this snapshot. METADATA_SHA256.tsv records SHA-256 checksums for the six small Dataset metadata/state JSON files. Large payloads use Hugging Face Xet's content-addressed transfer and are also checked after publication by exact remote file list and size.

Training mixture

The released run configuration samples the three directories independently with weights 0.4 Long-SFT, 0.4 Math, and 0.2 instruction following, packing each source to sequence length 4,096. Mixture weights are sampling probabilities, not row ratios.

The normalized schema is:

  • messages_json: serialized role/content conversation messages
  • category: normalized domain label
  • source: normalized source/split label
  • total_tokens: estimated serialized token count
  • assistant_tokens: estimated supervised assistant-token count

Exact source composition

Long-SFT-3K

Normalized sourceRows
llamanemotronchat1,848
llamanemotroncode562,690
llamanemotronmath1,719,972
llamanemotronscience110,248
nemotronchatv1195,466
nemotronchatv2345,167
nemotroncompprogv2665,765
nemotronmathproofs_v1819,273
nemotronsciencev168,853
posttrainingv2_chat92,823
posttrainingv2_code847
posttrainingv2_math6
posttrainingv2_stem1

Nemotron-Math-Domain

Normalized sourceRows
llamanemotronmath2,219,230
nemotronmathproofs_v1920,881

Nemotron-IF-Domain-Cascade

Normalized sourceRows
cascade1stage2if146,365
cascade2ifraw_open549,513
chatv1instruction_following75,620
chatv1structured_outputs4,969

Important reproduction difference

This snapshot's source column proves that the Cascade-2 portion is the complete public instruction_following input (cascade2_if_raw_open), not NVIDIA's separate constraint-prefiltered approximately 362K-row selector described by the exact paper recipe. Therefore this is the complete data actually used by run 1, but it must not be described as an exact copy of the paper's unreleased/prefiltered IF pool. This can materially affect reproduction metrics.

Download and restore

python
from huggingface_hub import snapshot_download
from datasets import load_from_disk

root = snapshot_download(
    repo_id="Arushhh/Llama-HybridDiffusion-processed-data-run1",
    repo_type="dataset",
)
long_sft = load_from_disk(f"{root}/Long-SFT-3K")
math = load_from_disk(f"{root}/Nemotron-Math-Domain")
instruction_following = load_from_disk(f"{root}/Nemotron-IF-Domain-Cascade")

For the existing run configuration, set DATA_ROOT to the downloaded repository root. Do not rename the three dataset directories.

Construction

The builders normalize heterogeneous message structures, merge separate reasoning into balanced <think>...</think> blocks, reject malformed conversations, estimate token counts with the Qwen tokenizer, and save the five-column Arrow schema. Long-SFT applies the >=3K estimated-token selection. Math selects the enabled Llama-Nemotron math rows and Nemotron Math-Proofs. The IF builder normalizes, structurally filters, and exactly deduplicates serialized conversations.

Exact build code is preserved at: https://github.com/Arush777/HybridDiffusion-run1-backup-20260821/tree/backup/instance-20260821 (commit 8d68b860c314de99f6e66813283f4e988f3dfa3a).

Licensing and attribution

This is a transformed multi-source dataset and has no single superseding licence. The normalized Arrow schema does not retain each original row's license field. The source label is retained, and users must comply with every applicable source and per-sample term. See ATTRIBUTION.md, NOTICE, LICENSES/, and SOURCE_CARDS/. Redistribution here does not relicense any source material.

Limitations and responsible use

  • The data may contain incorrect reasoning, unsafe text, personal information, biased content, copyrighted material, or source contamination; no new row-level legal, privacy, safety, or benchmark-contamination audit was performed for this release.
  • Token counts are estimates used by the builders, not a promise about every tokenizer version.
  • The IF pool differs from the paper's unavailable constraint-prefiltered selection.
  • Models trained on these data can memorize or reproduce source material.
  • Review upstream model/data acceptable-use policies before training or deployment.

This release is for reproducibility and research transparency. It is provided as-is.