GLM-5.2-FP8-nemotron-codealpaca-thinking
收藏资源简介:
# GLM-5.2-FP8 Nemotron-CodeAlpaca Thinking Dataset **820,790 single-turn conversations** generated by `zai-org/GLM-5.2-FP8` with thinking enabled. | Prompt source | Rows (public) | |---|---| | Nemotron-Post-Training-Dataset-v2 | 800,944 | | CodeAlpaca-20k (corrected prompts, `instruction + "\n\n" + input`) | 19,846 | | **Total** | **820,790** | Generation: `temperature=1.0`, `top_p=0.95`, `max_tokens=24576`, thinking enabled. The CodeAlpaca prompts here include the `input` field. ## Relationship to `GLM-5.2-FP8-nemotron-codealpaca` Same prompt sources, **different recipe**: that dataset is non-thinking with `max_tokens=4096`; this one is thinking-enabled with `max_tokens=24576`. The two are not interchangeable and neither replaces the other. In particular, this dataset does **not** alter the 10,258 affected CodeAlpaca rows in that release; the issue is documented separately in the existing dataset's correction notice. ## Format One JSON object per line: ```json { "id": "7db8306a-19c9-4dd6-9d37-9793ba5712a3", "conversations": [ {"role": "user", "content": "<prompt>"}, {"role": "assistant", "content": "<think>...</think><answer>"} ], "status": "success", "source_dataset": "nvidia/Nemotron-Post-Training-Dataset-v2", "source_license": "CC BY 4.0" } ``` | Field | Description | |---|---| | `id` | Unique row identifier | | `conversations` | One user turn and one assistant turn | | `status` | Generation status (`success` for released rows) | | `source_dataset` | `nvidia/Nemotron-Post-Training-Dataset-v2` or `sahil2801/CodeAlpaca-20k` | | `source_license` | Prompt-source license (`CC BY 4.0` for all released rows) | ## Load ```python from datasets import load_dataset ds = load_dataset("JessieWei/GLM-5.2-FP8-nemotron-codealpaca-thinking") ``` ## Licensing Prompts inherit their source licenses (Nemotron-Post-Training-Dataset-v2: CC-BY-4.0; CodeAlpaca-20k: CC-BY-4.0). Assistant responses are machine-generated by GLM-5.2-FP8 (MIT). The compilation is released under CC-BY-4.0. ## Citation ```bibtex @misc{wei2026glm52thinking, title = {GLM-5.2-FP8 Nemotron-CodeAlpaca Thinking Dataset}, author = {Wei, Xiaojun and {UCloud AILab}}, year = {2026}, howpublished = {\url{https://huggingface.co/datasets/JessieWei/GLM-5.2-FP8-nemotron-codealpaca-thinking}} } ```



