run-autogluon

Automate AutoGluon TabularPredictor workflows from construction to deployment.

5|1|Updated Dec 30, 2024
One-click install
npx skills add https://github.com/crossxwill/IML4Finance --skill run-autogluon
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: run-autogluon
Source: https://github.com/crossxwill/IML4Finance/tree/main/.github/skills/run-autogluon
Command: npx skills add https://github.com/crossxwill/IML4Finance --skill run-autogluon

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Consolidated AutoGluon skill covering end-to-end TabularPredictor workflow (constructor, fit, predict_proba, fit_summary, save/load, set_model_best), binary threshold calibration and setting, sklearn wrapper integration, and monotonic constraints. Use for any AutoGluon Tabular questions, training/ensembling configuration, inference/probabilities, threshold tuning, deployment persistence, or sklearn interoperability.

Core Features & Use Cases

  • End-to-end AutoGluon TabularPredictor workflow orchestration: model construction, training, evaluation, calibration, and persistence.
  • Binary threshold calibration and set best model workflows plus sklearn wrapper integration for deployment and interoperability.
  • Real-world use: train a predictor on a tabular dataset, evaluate with fit_summary/leaderboard, calibrate decision thresholds, and save the model for production.

Quick Start

Train and evaluate an AutoGluon TabularPredictor end-to-end on your dataset, then calibrate thresholds, wrap for sklearn usage if needed, and persist the best model.

Frequently Asked Questions about run-autogluon

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I train an AutoGluon TabularPredictor end-to-end for a classification task?▼

Train an AutoGluon TabularPredictor by initializing the constructor, calling fit on your tabular dataset, and evaluating results with fit_summary. This workflow covers binary/multiclass classification and regression tasks end-to-end.

Can I calibrate decision thresholds and set the best model after training with AutoGluon?▼

Yes, AutoGluon supports binary threshold calibration and setting workflows. You can calibrate decision thresholds, use set_model_best to designate a preferred model, and evaluate performance using fit_summary or leaderboard outputs.

Does AutoGluon TabularPredictor integrate with sklearn for deployment workflows?▼

AutoGluon provides sklearn wrapper integration for deployment and interoperability. This allows you to wrap trained TabularPredictor models for use within sklearn pipelines and standard production inference contexts.

How do I save and load a trained AutoGluon model for production inference?▼

AutoGluon TabularPredictor supports save and load persistence workflows. After training and calibrating your model, you can save it to disk and reload it later to generate predictions or predict_proba in production environments.

Can I enforce monotonic constraints on features when training an AutoGluon model?▼

AutoGluon TabularPredictor supports monotonic constraints during model training. This allows you to enforce directional relationships between specific input features and the target variable across binary/multiclass classification and regression tasks.

What data organization does AutoGluon assume for training and lecture workflows?▼

AutoGluon workflows assume data is organized in a Data/ directory and lectures or workflows reside in Lectures/. This structure aligns with course materials and lab setups for tabular model training and evaluation.