遇见数据集

yogeshsaini1110/testagainmd

收藏
Hugging Face2026-04-15 更新2026-04-26 收录
官方服务:

资源简介:

--- license: apache-2.0 task_categories: - text-generation language: - en - hi tags: - tool-calling - function-calling - agent - hermes - reasoning - sharegpt - sft size_categories: - 10K<n<100K configs: - config_name: kimi data_files: - split: train path: data/kimi/train.parquet - config_name: glm-5.1 data_files: - split: train path: data/glm-5.1/train.parquet --- # Hermes Agent Reasoning Traces Multi-turn tool-calling trajectories for training AI agents using the [Hermes Agent](https://github.com/nousresearch/hermes-agent) harness. Each sample is a real agent conversation with step-by-step reasoning (`<think>` blocks) and actual tool execution results. This dataset has two configs, one per source model: | Config | Model | Samples | |--------|-------|---------| | **kimi** | Moonshot AI Kimi-K2.5 | 7,646 | | **glm-5.1** | ZhipuAI GLM-5.1-FP8 | 7,055 | ## Loading ```python from datasets import load_dataset # Kimi-K2.5 traces ds = load_dataset("lambda/hermes-agent-reasoning-traces", "kimi", split="train") # GLM-5.1 traces ds = load_dataset("lambda/hermes-agent-reasoning-traces", "glm-5.1", split="train") ``` ## Schema Both configs share the same schema: | Field | Type | Description | |-------|------|-------------| | `id` | string | UUID identifier | | `conversations` | list | Multi-turn dialogue (system, human, gpt, tool messages) | | `tools` | string | JSON tool definitions available to the agent | | `category` | string | High-level task category | | `subcategory` | string | Fine-grained task type | | `task` | string | Task description (from user prompt) | Conversation messages use ShareGPT format: ```json {"from": "system|human|gpt|tool", "value": "..."} ``` - `<think>` blocks contain chain-of-thought reasoning - `<tool_call>` blocks contain function invocations - `<tool_response>` blocks contain real execution results ## Statistics | Metric | kimi | glm-5.1 | |--------|------|---------| | Samples | 7,646 | 7,055 | | Total turns | 185,798 | 134,918 | | Total tool calls | 106,222 | 68,328 | | Avg turns per sample | 24.3 | 19.1 | | Avg tool calls per sample | 13.9 | 9.7 | | Avg `<think>` depth (words) | 414 | 70 | ## Categories Both configs use a shared 9-category taxonomy: | Category | kimi | glm-5.1 | |----------|-----:|--------:| | Terminal & Coding | 2,010 | 2,237 | | Agent Tools | 1,474 | 2,775 | | Repository Tasks | 1,109 | 1,022 | | Browser Automation | 1,048 | 639 | | Multi-Tool | 807 | 52 | | File Operations | 757 | 134 | | Scheduling | 204 | 104 | | Planning & Organization | 201 | 92 | | Conversational | 36 | 0 | ## Generation Details ### Kimi-K2.5 - **Model:** `moonshotai/Kimi-K2.5` (MoE) - **Inference:** vLLM with `--tool-call-parser kimi_k2 --reasoning-parser kimi_k2 --enable-auto-tool-choice` ### GLM-5.1 - **Model:** `zai-org/GLM-5.1-FP8` - **Inference:** vLLM with `--tool-call-parser glm47 --reasoning-parser glm45 --enable-auto-tool-choice` - **Serving:** 3x 8xH100 nodes via load-balanced gateway - **Context:** 202,752 tokens max, MTP speculative decoding Both datasets were generated using the [hermes-agent-generator](https://github.com/nousresearch/hermes-agent) pipeline with **real tool execution** (terminal commands, file operations, browser actions) — not synthetic outputs. ## Data Sources Both datasets include trajectories across the same task categories: - **Terminal & Coding** — script writing, debugging, environment setup, data processing, testing, documentation - **Browser Automation** — Playwright-based navigation, scraping, form filling, screenshot analysis - **Agent Tools** — Hermes-specific capabilities: memory persistence, task delegation, skill management, todo planning, code execution, session recall - **Repository Tasks** — real codebase work across GitHub repos: bug fixes, feature implementation, test writing, code review, refactoring ## License Apache 2.0

许可证:Apache-2.0 任务类别: - 文本生成 语言: - 英语 - 印地语 标签: - 工具调用 - 函数调用 - AI智能体(AI Agent) - Hermes - 推理 - ShareGPT - 监督微调(SFT) 样本规模类别: - 10,000 < 样本数 < 100,000 配置项: - 配置名称:kimi 数据文件: - 拆分方式:训练集 - 路径:data/kimi/train.parquet - 配置名称:glm-5.1 数据文件: - 拆分方式:训练集 - 路径:data/glm-5.1/train.parquet # Hermes 智能体(Hermes Agent)推理轨迹 本数据集用于基于Hermes智能体(Hermes Agent)框架训练AI智能体的多轮工具调用轨迹。每条样本均为真实的智能体对话,包含逐步推理过程(`<think>`块)与实际工具执行结果。 本数据集包含两个配置项,分别对应两个源模型: | 配置名称 | 对应模型 | 样本数量 | |--------|-------|---------| | **kimi** | 月之暗面AI Kimi-K2.5 | 7,646 | | **glm-5.1** | 智谱AI GLM-5.1-FP8 | 7,055 | ## 加载方式 python from datasets import load_dataset # 加载 Kimi-K2.5 轨迹数据集 ds = load_dataset("lambda/hermes-agent-reasoning-traces", "kimi", split="train") # 加载 GLM-5.1 轨迹数据集 ds = load_dataset("lambda/hermes-agent-reasoning-traces", "glm-5.1", split="train") ## 数据 Schema 两个配置项共享相同的数据结构: | 字段名 | 数据类型 | 描述 | |-------|------|-------------| | `id` | 字符串 | 通用唯一识别码(UUID) | | `conversations` | 列表 | 多轮对话(包含系统提示、用户、智能体、工具消息) | | `tools` | 字符串 | 智能体可用的JSON格式工具定义 | | `category` | 字符串 | 高阶任务类别 | | `subcategory` | 字符串 | 细粒度任务类型 | | `task` | 字符串 | 任务描述(来自用户提示词) | 对话消息采用ShareGPT格式: json {"from": "system|human|gpt|tool", "value": "..."} - `<think>` 块包含思维链推理内容 - `<tool_call>` 块包含函数调用指令 - `<tool_response>` 块包含实际工具执行结果 ## 统计信息 | 指标 | kimi | glm-5.1 | |--------|------|---------| | 样本总数 | 7,646 | 7,055 | | 总对话轮次 | 185,798 | 134,918 | | 总工具调用次数 | 106,222 | 68,328 | | 单样本平均对话轮次 | 24.3 | 19.1 | | 单样本平均工具调用次数 | 13.9 | 9.7 | | 平均`<think>`块长度(单词数) | 414 | 70 | ## 任务类别 两个配置项均采用统一的9类别分类体系: | 任务类别 | kimi | glm-5.1 | |----------|-----:|--------:| | 终端与编码 | 2,010 | 2,237 | | 智能体工具 | 1,474 | 2,775 | | 代码仓库任务 | 1,109 | 1,022 | | 浏览器自动化 | 1,048 | 639 | | 多工具协同 | 807 | 52 | | 文件操作 | 757 | 134 | | 调度规划 | 204 | 104 | | 计划与组织 | 201 | 92 | | 对话交互 | 36 | 0 | ## 生成细节 ### Kimi-K2.5 - **模型:** `moonshotai/Kimi-K2.5`(混合专家模型,MoE) - **推理框架:** 采用vLLM,运行参数为`--tool-call-parser kimi_k2 --reasoning-parser kimi_k2 --enable-auto-tool-choice` ### GLM-5.1 - **模型:** `zai-org/GLM-5.1-FP8` - **推理框架:** 采用vLLM,运行参数为`--tool-call-parser glm47 --reasoning-parser glm45 --enable-auto-tool-choice` - **服务部署:** 通过负载均衡网关部署于3组8xH100计算节点 - **上下文窗口:** 最大202,752 Token,采用多段推测性解码(MTP Speculative Decoding) 两个数据集均通过[hermes-agent-generator](https://github.com/nousresearch/hermes-agent)流水线生成,且包含**真实工具执行**(终端命令、文件操作、浏览器操作)轨迹,而非合成输出。 ## 数据来源 两个数据集均覆盖以下同类任务类别: - **终端与编码** — 脚本编写、调试、环境配置、数据处理、测试、文档撰写 - **浏览器自动化** — 基于Playwright的导航、数据爬取、表单填写、截图分析 - **智能体工具** — Hermes专属能力:记忆持久化、任务委派、技能管理、待办规划、代码执行、会话回溯 - **代码仓库任务** — 跨GitHub仓库的真实代码库工作:bug修复、功能实现、测试编写、代码评审、代码重构 ## 许可证 Apache 2.0

提供机构:
yogeshsaini1110
二维码
社区交流群
二维码
科研交流群
商业服务