Tabular¶
For standard datasets that are represented as tables (stored as CSV file, parquet from database, etc.), AutoGluon can produce models to predict the values in one column based on the values in the other columns. With just a single call to fit(), you can achieve high accuracy in standard supervised learning tasks (both classification and regression), without dealing with cumbersome issues like data cleaning, feature engineering, hyperparameter optimization, model selection, etc.
:gutter: 3
:link: tabular-quick-start.html
5 min tutorial on fitting models with tabular datasets.
:link: tabular-essentials.html
Essential information about the most important settings for tabular prediction.
:link: tabular-indepth.html
In-depth tutorial on controlling various aspects of model fitting.
:link: tabular-multimodal.html
Modeling data tables with image, text, numeric, and categorical features.
:link: tabular-feature-engineering.html
AutoGluon’s default feature engineering and how to extend it.
:link: advanced/tabular-multilabel.html
How to predict multiple columns in a data table.
:link: advanced/tabular-kaggle.html
Using AutoGluon for Kaggle competitions with tabular data.
:link: advanced/tabular-gpu.html
How to train models with GPU support.
:link: advanced/tabular-custom-metric.html
How to add a custom metric to AutoGluon.
:link: advanced/tabular-custom-model.html
How to add a custom model to AutoGluon.
:link: advanced/tabular-custom-model-advanced.html
How to add a custom model to AutoGluon (Advanced).
:link: advanced/tabular-deployment.html
Tutorial on optimizing the predictor artifact for production deployment.