用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vramrick/openclaw-skills --skill advancedmlclassificationskill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | AdvancedMLClassificationSkill |
| description | 自动化生成工业级机器学习分类算法代码、调用算法做预测、输出准确率对比和可视化结果,支持新手友好的结果解读。 |
data_path: str(必填)CSV 数据集路径target_col: str(必填)预测目标列名algorithms: list[str](可选)默认 [ "逻辑回归", "决策树", "随机森林", "XGBoost", "LightGBM" ]test_size: float(可选)默认 0.2random_state: int(可选)默认 42accuracy_results: dict[str, float|None]interpretation: strgenerated_codes: dict[str, str]visualization_data: dictcode-davinci-002,失败回退本地模板)StratifiedKFold/KFold/RepeatedStratifiedKFold)GridSearchCV/RandomizedSearchCV)gpt-3.5-turbo)cd /Users/bamboo/skills/advanced-ml-classification-skill/scripts
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python generate_complex_demo.py
python advanced_ml_skill.py --data-path ./demo_complex.csv --target-col target_label --enable-cv --enable-search
streamlit run app.py