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

cs-ml毫升

Agent Skill

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

总安装

388

周安装

16

GitHub Stars

4

下载量

127
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill cs-ml

简介

cs-ml 处理机器学习全生命周期任务,包括监督/无监督学习、CNN/RNN/Transformer 模型与 MLOps。

  • 适用于从零构建模型、BERT 微调、部署流水线搭建与性能指标评估等场景。
  • 集成训练管道、评估指标与生产部署能力,支持图像识别、文本生成等常见任务。
  • 需用户提供数据集路径、模型结构与超参数,AI 生成可运行代码与配置文件。
  • 不适合纯理论研究或数据探索,聚焦工程化落地与自动化执行。

SKILL.md

cs-ml

Purpose

This skill handles machine learning tasks, including supervised/unsupervised learning, reinforcement learning, CNN/RNN/Transformer models, training pipelines, evaluation metrics, MLOps workflows, and LLM fine-tuning. It integrates with OpenClaw to automate code generation and execution for ML projects.

When to Use

Use this skill when building ML models from scratch, fine-tuning pre-trained models like BERT, deploying models via MLOps, or evaluating performance. Apply it for tasks involving large datasets, neural networks, or production pipelines, such as image recognition with CNNs or text generation with Transformers.

Key Capabilities

  • Train supervised models using algorithms like linear regression or decision trees via scikit-learn integration.
  • Implement unsupervised learning with K-means clustering or PCA for dimensionality reduction.
  • Build and train deep learning models: CNNs for images (e.g., using Keras), RNNs for sequences, or Transformers for NLP tasks.
  • Handle RL environments with libraries like Stable Baselines, including Q-learning loops.
  • Evaluate models with metrics like accuracy, F1-score, or ROC curves, and generate confusion matrices.
  • Manage MLOps: model deployment to containers, monitoring with MLflow, and CI/CD integration.
  • Fine-tune LLMs like GPT variants using Hugging Face Transformers, with techniques like LoRA for efficiency.

Usage Patterns

Invoke this skill via OpenClaw's CLI or API to generate code snippets. For training, specify model type and data source; for evaluation, provide a trained model path. Always set environment variables for authentication, e.g., export $OPENCLAW_API_KEY=your_key. Patterns include:

  • Pipeline mode: Chain training and evaluation in a single command.
  • Interactive mode: Use for iterative fine-tuning, querying the skill for code adjustments.
  • Example 1: Train a CNN for image classification – Call the skill with data path, then run the generated script.
  • Example 2: Fine-tune an LLM – Provide a base model and dataset, get a fine-tuning script, and execute it with specified hyperparameters.

Common Commands/API

Use OpenClaw's CLI for direct execution or API for programmatic access. Authentication requires $OPENCLAW_API_KEY in your environment.

  • CLI Command for training a CNN: openclaw cs-ml train --model cnn --data /path/to/images --epochs 10 --batch-size 32 This generates a Python script using TensorFlow: from tensorflow import keras model = keras.Sequential([keras.layers.Conv2D(32, 3, activation='relu')]) model.fit(train_data, epochs=10)
  • CLI Command for LLM fine-tuning: openclaw cs-ml fine-tune --model bert --dataset /path/to/text.json --learning-rate 5e-5 Output script example: from transformers import BertForSequenceClassification model = BertForSequenceClassification.from_pretrained('bert-base') trainer = Trainer(model=model, train_dataset=dataset) trainer.train()
  • API Endpoint for evaluation: POST to https://api.openclaw.com/cs-ml/evaluate with JSON body: {"model_path": "/path/to/model.h5", "data_path": "/path/to/test.csv", "metrics": ["accuracy", "f1"]} Response includes metrics output.
  • Config Format: Use YAML for hyperparameters, e.g.: model: transformer params: layers: 12 hidden_size: 768

Integration Notes

Integrate this skill with other OpenClaw skills by chaining commands, e.g., use "data-processing" skill first for data cleaning, then pass output to cs-ml for training. For external tools, set up dependencies like installing TensorFlow via pip install tensorflow in your generated scripts. Use $OPENCLAW_API_KEY for API calls in custom code. For MLOps, link with cloud services: export model to S3 with AWS CLI, then deploy via cs-ml command. Ensure compatibility by specifying library versions, e.g., Transformers 4.20+.

Error Handling

Common errors include data mismatches, authentication failures, or library version conflicts. Handle them as follows:

  • Data errors: Check for shape issues in training commands, e.g., if openclaw cs-ml train fails with "Input shape mismatch", verify data with --validate-data flag.
  • Authentication: If API calls fail with 401, ensure $OPENCLAW_API_KEY is set and not expired; retry with openclaw cs-ml --retry-auth.
  • Runtime errors: For GPU issues in deep learning, add --device cuda and handle with try-except in generated code: try: model.fit(data) except RuntimeError as e: print(f"Error: {e}, falling back to CPU")
  • General: Log outputs with --verbose flag and debug generated scripts line-by-line.

Graph Relationships

  • Related to cluster: computer-science
  • Connected tags: ml, deep-learning, neural-networks, transformers, cs
  • Links to other skills: depends on "data-processing" for preprocessing; enhances "deployment" for MLOps pipelines; integrates with "nlp" for Transformer-based tasks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.24%
按下载量换算46

Claude

32.43%
按下载量换算41

Cursor

17.6%
按下载量换算22

Gemini CLI

8.57%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills