← 返回
未分类 Key 中文

VecML AutoML

VecML AutoML — Drop a CSV, train an ML model, get predictions. One command. Use when the user asks to: train a model, upload data, run predictions, classify,...
VecML AutoML — 拖入CSV,训练模型,获取预测。仅一条命令。用于:训练模型、上传数据、运行预测、分类、...
tinle2 tinle2 来源
未分类 clawhub v1.1.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 399
下载
💾 0
安装
1
版本
#latest

概述

VecML AutoML — One-Command ML Pipeline

Train a model from any CSV in one command. No setup, no notebooks, no boilerplate.

Setup (one time)

export VECML_API_KEY="vml_your_key_here"

Train a Model

Just point it at a CSV and tell it which column to predict:

python3 ~/.openclaw/workspace/skills/vecml-automl/vecml-pipeline.py train data.csv --target Survived

That's it. It will:

  1. Auto-detect categorical vs numeric columns
  2. Split features and labels
  3. Create the project on VecML
  4. Upload the data (base64 encoded)
  5. Wait for labels to attach (avoids the async race bug)
  6. Train the model
  7. Show validation metrics (accuracy, AUC, F1, precision, recall)
  8. Show feature importance with visual bars

Options

python3 vecml-pipeline.py train data.csv \
  --target target_column \
  --task classification          # or regression
  --mode balanced                # high_speed | balanced | high_accuracy
  --project my_project           # default: openclaw_automl
  --collection my_dataset        # default: auto-generated from filename
  --model my_model_v1            # default: auto-generated

Run Predictions

python3 vecml-pipeline.py predict new_data.csv --model my_model --collection my_dataset

Saves results to new_data_predictions.csv automatically.

List Models

python3 vecml-pipeline.py models --collection my_dataset

Feature Importance

python3 vecml-pipeline.py importance --model my_model --collection my_dataset

Example Output

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  🧠 VecML AutoML Training Pipeline
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  📄 File:       titanic.csv
  🎯 Target:     Survived
  📊 Task:       classification
  ⚡ Mode:       balanced

  [1/6] Creating project...         ✅
  [2/6] Uploading features...       ✅ done! (1.2s)
  [3/6] Attaching labels...         ✅ done! (0.8s)
  [4/6] Training model...           ✅ done! (3.5s)
  [5/6] Validation metrics:
   │ accuracy               0.8101  ████████████████
   │ auc                    0.8798  █████████████████
   │ macro_f1               0.7947  ███████████████
  [6/6] Feature importance:
   │ 🥇 Fare                0.7294  ██████████████
   │ 🥈 Age                 0.6019  ████████████
   │ 🥉 Sex                 0.2732  █████

  ✅ DONE! Accuracy: 81.01%  AUC: 87.98%
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

For OpenClaw Agent Usage

When a user sends a CSV file or asks to train a model, run:

export VECML_API_KEY="vml_your_key_here"
python3 ~/.openclaw/workspace/skills/vecml-automl/vecml-pipeline.py train /path/to/their/file.csv --target their_target_column

If the user doesn't specify a target column, read the CSV headers first and ask which column they want to predict:

head -1 /path/to/file.csv

Then run the pipeline with their chosen target.

版本历史

共 1 个版本

  • v1.1.0 当前
    2026-03-31 06:55 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

AdMapix

fly0pants
AdMapix 原始数据层,提供广告创意、应用、排名、下载/收入及市场元数据。返回 AdMapix API 的结构化 JSON;调用方...
★ 297 📥 141,283
data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 211 📥 68,999
data-analysis

Tavily 搜索

jacky1n7
通过 Tavily API 进行网页搜索(Brave 替代方案)。当用户要求搜索网页、查找来源或链接,且 Brave 网页搜索不可用时使用。
★ 273 📥 100,527