CoolFace
Datasetpublic

shadowpa0327/qwen3_8b_eagle3-parquet

qwen3_8b_eagle3 (Parquet) Sharded Parquet conversion of Tengyunw/qwen3_8b_eagle3. Original distribution is a single ~13 GB JSON file; this repo splits it into 61 Parquet shards of ~10,000 rows each for streaming-friendly access via the datasets library. Schema id: string conversations: list<struct<from: string, value: string>> (ShareGPT format) Stats Rows: 607,865 Shards: 61 (data/train-NNNNN-of-00061.parquet) Compression: zstd Usage… See the full description on the dataset page: https://huggingface.co/datasets/shadowpa0327/qwen3_8b_eagle3-parquet.

sourceHugging Faceotherupdated 5mo agoView on Hugging Face
0likes57downloads
Dataset Card

qwen38beagle3 (Parquet)

Sharded Parquet conversion of Tengyunw/qwen3_8b_eagle3. Original distribution is a single ~13 GB JSON file; this repo splits it into 61 Parquet shards of ~10,000 rows each for streaming-friendly access via the datasets library.

Schema

  • —id: string
  • —conversations: list<struct<from: string, value: string>> (ShareGPT format)

Stats

  • —Rows: 607,865
  • —Shards: 61 (data/train-NNNNN-of-00061.parquet)
  • —Compression: zstd

Usage

python
from datasets import load_dataset

ds = load_dataset("{REPO_ID}", split="train", streaming=True)
for ex in ds.take(1):
    print(ex["id"], len(ex["conversations"]))

Source

Upstream: https://huggingface.co/datasets/Tengyunw/qwen38beagle3