Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

fine-tuning微调

Agent Skill

fine-tuning 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

465

周安装

19

GitHub Stars

4

下载量

150
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fine-tuning(微调)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/fine-tuning
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill fine-tuning
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill fine-tuning

简介

fine-tuning 用于微调预训练机器学习模型,适配特定任务如文本分类或图像识别,适合在 Codex、Claude、Cursor、Gemini CLI 中优化生产环境模型时使用。

  • 它基于 OpenClaw 的 AIMLOps 框架管理训练循环和资源分配。
  • 安装命令为 npx skills add https://github.com/alphaonedev/openclaw-graph --skill fine-tuning,需从 GitHub 获取原始 README 进一步确认用法。
  • 使用前建议核对数据集权限、GPU 资源配额及模型版本兼容性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

fine-tuning

Purpose

This skill enables fine-tuning of pre-trained ML models using transfer learning, adapting them to specific tasks like text classification or image recognition. It leverages OpenClaw's AIMLOps framework to optimize training loops and resource usage.

When to Use

Use this skill when you have a pre-trained model (e.g., BERT for NLP) and a custom dataset that requires adaptation, such as sentiment analysis on domain-specific text. Apply it for tasks where training from scratch is inefficient, like in production environments with limited data.

Key Capabilities

  • Fine-tune models with techniques like gradient checkpointing for memory efficiency.
  • Support for popular frameworks: Hugging Face Transformers, TensorFlow, and PyTorch.
  • Hyperparameter tuning via integrated tools, e.g., learning rate schedulers.
  • Distributed training across GPUs or cloud instances.
  • Model evaluation metrics like accuracy, F1-score, and loss tracking.

Usage Patterns

Start by preparing your dataset and model. Load data into a compatible format (e.g., JSONL for text), then invoke the fine-tuning command. Monitor progress via logs or callbacks. For pipelines, integrate as a step in AIMLOps workflows, ensuring data preprocessing precedes fine-tuning.

Common Commands/API

Use the OpenClaw CLI for quick execution or the REST API for programmatic access. Authentication requires setting $OPENCLAW_API_KEY as an environment variable.

  • CLI Command Example: Fine-tune a BERT model on a dataset. openclaw fine-tune --model bert-base-uncased --data-path./data.jsonl --epochs 3 --batch-size 16 --learning-rate 5e-5 This command loads the model, trains for 3 epochs, and saves outputs to the current directory.
  • API Endpoint: POST to /api/v1/fine-tune with a JSON body. Example request body: {"model_id": "bert-base-uncased", "dataset_url": "s3://my-bucket/data.jsonl", "epochs": 3, "hyperparameters": {"learning_rate": 5e-5, "batch_size": 16}} Send via curl: curl -X POST -H "Authorization: Bearer $OPENCLAW_API_KEY" -d '{"model_id": "bert-base-uncased",...}' https://api.openclaw.ai/api/v1/fine-tune
  • Config Format: Use YAML for configuration files. Example snippet: model: bert-base-uncased data: path:./data.jsonl format: jsonl training: epochs: 3 optimizer: adamw Pass to CLI: openclaw fine-tune --config config.yaml

Integration Notes

Integrate with other OpenClaw skills by chaining outputs; for example, use the "data-preprocessing" skill to prepare datasets before fine-tuning. For cloud setups, specify providers like AWS in configs (e.g., add "provider": "aws" in JSON). Handle dependencies by installing required packages via pip install transformers==4.28.0 torch==1.13.1. Ensure compatibility with AIMLOps clusters by setting env vars like $OPENCLAW_CLUSTER_ID.

Error Handling

Check for common errors like invalid model IDs or data format mismatches. Use try-catch in scripts:

try:
    response = requests.post('https://api.openclaw.ai/api/v1/fine-tune', headers={'Authorization': f'Bearer {os.environ["OPENCLAW_API_KEY"]}'}, json=payload)
    response.raise_for_status()
except requests.exceptions.HTTPError as e:
    print(f"Error: {e.response.status_code} - {e.response.text}")

Log detailed errors with --verbose flag in CLI (e.g., openclaw fine-tune --verbose). For GPU issues, verify availability with nvidia-smi before running.

Concrete Usage Examples

  1. Fine-Tuning for Sentiment Analysis: Adapt BERT for movie reviews.

- Prepare data: Save reviews in JSONL format. - Run: openclaw fine-tune --model bert-base-uncased --data-path reviews.jsonl --epochs 5 --output-dir./models - This trains the model and saves checkpoints; evaluate with openclaw evaluate --model-path./models/checkpoint-5

  1. Fine-Tuning Image Classifier: Use a pre-trained ResNet for custom images.

- Dataset: Organize images in folders (e.g., train/class1/*.jpg). - Command: openclaw fine-tune --model resnet50 --data-path./image_dataset --epochs 10 --batch-size 32 - Integrate: Follow with deployment via OpenClaw's "model-serving" skill for inference.

Graph Relationships

  • Relates to: "data-preprocessing" (input dependency for dataset handling)
  • Relates to: "model-evaluation" (output for performance metrics)
  • Relates to: "aimlops-deployment" (for post-fine-tuning model serving)
  • Clusters with: "aimlops" (shared ecosystem for ML operations)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.99%
按下载量换算51

Claude

30.66%
按下载量换算46

Cursor

17.12%
按下载量换算26

Gemini CLI

9.04%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills