返回顶部
v

vecml-automl

>

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.1.0
安全检测
已通过
106
下载量
0
收藏
概述
安装方式
版本历史

vecml-automl

# VecML AutoML — One-Command ML Pipeline Train a model from any CSV in one command. No setup, no notebooks, no boilerplate. ## Setup (one time) ```bash export VECML_API_KEY="vml_your_key_here" ``` ## Train a Model Just point it at a CSV and tell it which column to predict: ```bash 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 ```bash 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 ```bash python3 vecml-pipeline.py predict new_data.csv --model my_model --collection my_dataset ``` Saves results to `new_data_predictions.csv` automatically. ## List Models ```bash python3 vecml-pipeline.py models --collection my_dataset ``` ## Feature Importance ```bash 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: ```bash 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: ```bash head -1 /path/to/file.csv ``` Then run the pipeline with their chosen target.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 vecml-automl-1776018451 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 vecml-automl-1776018451 技能

通过命令行安装

skillhub install vecml-automl-1776018451

下载 Zip 包

⬇ 下载 vecml-automl v1.1.0

文件大小: 6.62 KB | 发布时间: 2026-4-13 12:26

v1.1.0 最新 2026-4-13 12:26
v1.1: One-command pipeline script, auto-detects columns, drops IDs/free-text, proper CSV handling, visual output with metrics and feature bars

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部