黄砖可视化
Yellowbrick
by bytesagain1
Visual analysis and diagnostic tools to help machine learning model selection. ml-visualizer, python, anaconda, estimator, machine-learning, matplotlib.
安装
claude skill add --url github.com/openclaw/skills/tree/main/skills/bytesagain1/ml-visualizer文档
ML Visualizer
A data toolkit for ingesting, transforming, querying, and visualizing machine learning datasets. Manage your entire data pipeline — from raw ingestion through profiling and validation — all from the command line.
Commands
| Command | Description |
|---|---|
ml-visualizer ingest <input> | Ingest raw data or record a data source entry |
ml-visualizer transform <input> | Log a data transformation step or operation |
ml-visualizer query <input> | Record a query against your dataset |
ml-visualizer filter <input> | Log a filter operation applied to data |
ml-visualizer aggregate <input> | Record an aggregation or rollup operation |
ml-visualizer visualize <input> | Log a visualization request or chart specification |
ml-visualizer export <input> | Record an export operation or export all data |
ml-visualizer sample <input> | Log a data sampling operation |
ml-visualizer schema <input> | Record or describe a data schema |
ml-visualizer validate <input> | Log a data validation check |
ml-visualizer pipeline <input> | Record a full pipeline definition or step |
ml-visualizer profile <input> | Log a data profiling run |
ml-visualizer stats | Show summary statistics across all entry types |
ml-visualizer export <fmt> | Export all data (formats: json, csv, txt) |
ml-visualizer search <term> | Search across all entries by keyword |
ml-visualizer recent | Show the 20 most recent activity log entries |
ml-visualizer status | Health check — version, disk usage, last activity |
ml-visualizer help | Show the built-in help message |
ml-visualizer version | Print the current version (v2.0.0) |
Each data command (ingest, transform, query, etc.) works in two modes:
- Without arguments — displays the 20 most recent entries of that type
- With arguments — saves the input as a new timestamped entry
Data Storage
All data is stored as plain-text log files in ~/.local/share/ml-visualizer/:
- Each command type gets its own log file (e.g.,
ingest.log,transform.log,visualize.log) - Entries are stored in
timestamp|valueformat for easy parsing - A unified
history.logtracks all activity across command types - Export to JSON, CSV, or TXT at any time with the
exportcommand
Set the ML_VISUALIZER_DIR environment variable to override the default data directory.
Requirements
- Bash 4.0+ (uses
set -euo pipefail) - Standard Unix utilities:
date,wc,du,tail,grep,sed,cat - No external dependencies or API keys required
When to Use
- Building a data pipeline journal — use
ingest,transform, andpipelineto document each step of your ML data preparation workflow - Tracking data quality — use
validateandprofileto log validation checks and profiling runs, ensuring data integrity before model training - Logging visualization requests — use
visualizeto record what charts and plots you've generated for model diagnostics (confusion matrices, ROC curves, feature importance) - Managing dataset schemas — use
schemato document the structure of your datasets, track schema changes over time, and share definitions with your team - Auditing data operations — use
search,recent, andstatsto review your complete data processing history and find specific operations
Examples
# Ingest a new data source
ml-visualizer ingest "Loaded training set from s3://ml-data/train.csv — 50,000 rows, 24 features"
# Record a transformation step
ml-visualizer transform "Applied StandardScaler to numeric columns, one-hot encoded categoricals"
# Log a visualization
ml-visualizer visualize "Generated confusion matrix for RandomForest classifier — 94% accuracy"
# Define a schema entry
ml-visualizer schema "users table: id(int), age(int), income(float), segment(str), churn(bool)"
# Search past operations
ml-visualizer search "StandardScaler"
Output
All commands print results to stdout. Redirect to a file if needed:
ml-visualizer stats > pipeline-report.txt
ml-visualizer export json
Powered by BytesAgain | bytesagain.com | hello@bytesagain.com
相关 Skills
Claude接口
by anthropics
面向接入 Claude API、Anthropic SDK 或 Agent SDK 的开发场景,自动识别项目语言并给出对应示例与默认配置,快速搭建 LLM 应用。
✎ 想把Claude能力接进应用或智能体,用claude-api上手快、兼容Anthropic与Agent SDK,集成路径清晰又省心
RAG架构师
by alirezarezvani
聚焦生产级RAG系统设计与优化,覆盖文档切块、检索链路、索引构建、召回评估等关键环节,适合搭建可扩展、高准确率的知识库问答与检索增强应用。
✎ 面向RAG落地,把知识库、向量检索和生成链路系统串联起来,做架构设计时更清晰,也更少踩坑。
多智能体架构
by alirezarezvani
聚焦多智能体系统架构设计,梳理 Supervisor、Swarm、分层和 Pipeline 等模式,覆盖角色定义、通信协作与性能评估,适合规划稳健可扩展的 AI agent 编排方案。
✎ 帮你系统解决多智能体应用的架构设计与协同编排难题,适合构建复杂 AI 工作流,成熟度高、社区认可也很亮眼。
相关 MCP 服务
知识图谱记忆
编辑精选by Anthropic
Memory 是一个基于本地知识图谱的持久化记忆系统,让 AI 记住长期上下文。
✎ 帮 AI 和智能体补上“记不住”的短板,用本地知识图谱沉淀长期上下文,连续对话更聪明,数据也更可控。
顺序思维
编辑精选by Anthropic
Sequential Thinking 是让 AI 通过动态思维链解决复杂问题的参考服务器。
✎ 这个服务器展示了如何让 Claude 像人类一样逐步推理,适合开发者学习 MCP 的思维链实现。但注意它只是个参考示例,别指望直接用在生产环境里。
by deusdata
持久化的代码库知识图谱,可跨会话保留上下文,在 session 重启或上下文压缩后仍能继续使用。
✎ 专治 AI 编程助手“会话失忆”,把代码库沉淀为持久知识图谱,重启或压缩上下文后也能无缝续上开发状态。