skillfed

autogluon

Fast and Accurate ML in 3 Lines of Code

autogluon v1.6.1 306.0K downloads/30d#7,789 on PyPI10,596
Permissive license Apache-2.0 Active released

What it is and what it does

AutoGluon is an automated machine learning (AutoML) framework developed by AWS that eliminates the need to manually select, tune, and ensemble models. It handles the full ML pipeline—from data preprocessing and feature engineering to model selection and hyperparameter optimization—across multiple data types: structured tabular data, time series, images, text, and combinations thereof. You provide a dataset and a few configuration parameters, and AutoGluon trains and evaluates a suite of models, returning predictions or a deployable predictor object.

The package is designed for developers and data scientists who want strong predictive performance without deep expertise in model architecture or tuning. It abstracts away complexity while remaining flexible enough for advanced users to customize presets and ensemble strategies. The framework depends on five internal submodules (core, features, tabular, multimodal, timeseries) that handle task-specific logic, and it supports current Python versions on major operating systems.

Use it for:

  • Train a tabular classification or regression model on structured data in seconds without manual feature engineering or hyperparameter tuning.
  • Forecast future values in time series data using pre-configured ensemble strategies.
  • Build multimodal predictors that combine text, images, and tabular features in a single model.
  • Rapidly prototype ML solutions for business problems (finance, healthcare, customer service) where time-to-model matters.
  • Benchmark multiple model architectures and ensembles automatically to find the best performer for your dataset.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

AutoGluon automates machine learning model training and deployment across tabular, time series, image, text, and multimodal data with minimal code.

Yes. AutoGluon is production-stable, actively maintained, permissively licensed, and has no known vulnerabilities. Install it if you need to train accurate ML models quickly across tabular, time series, or multimodal data without manual tuning. It is most valuable for rapid prototyping, benchmarking, and applications where AutoML's abstraction saves significant development time; less useful if you need full control over model internals or are working with highly specialized architectures.

Install

autogluon on PyPI

pip

pip install autogluon

uv

uv add autogluon

poetry

poetry add autogluon

Installing autogluon

Before you install

Installation is straightforward with low friction; the package is actively maintained with a recent release (8 days old) and strong repository activity (10596 stars). Supports Python 3.10–3.13 across Linux, macOS, and Windows.

License in practice

Licensed under Apache-2.0 (permissive), allowing free use, modification, and distribution in both open-source and commercial projects with minimal restrictions.

Quickstart

pip install autogluon

from autogluon.tabular import TabularPredictor
predictor = TabularPredictor(label="class").fit("train.csv", presets="best")
predictions = predictor.predict("test.csv")

Requires Python 3.10 or later; GPU support requires additional setup per installation guide.

Verify before relying

  • Memory and compute requirements for large datasets or deep learning tasks.
  • Actual training time and accuracy compared to manual model tuning.
  • Whether all five runtime submodules (core, features, tabular, multimodal, timeseries) are required or can be installed selectively.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (<3.14,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 5 — autogluon.core, autogluon.features, autogluon.tabular, autogluon.multimodal, autogluon.timeseries
Maintenance actively maintained — 8 days since the last release
Last repo commit
First released
Downloads 305,993/month — #7,789 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: autogluon-1.6.1-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: Customer ServiceIntended Audience :: DevelopersIntended Audience :: EducationIntended Audience :: Financial and Insurance IndustryIntended Audience :: Healthcare IndustryIntended Audience :: Science/ResearchIntended Audience :: Telecommunications IndustryOperating System :: MacOSOperating System :: Microsoft :: WindowsOperating System :: POSIXOperating System :: UnixProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Topic :: Scientific/Engineering :: Artificial IntelligenceTopic :: Scientific/Engineering :: Image RecognitionTopic :: Scientific/Engineering :: Information AnalysisTopic :: Software Development

Tags

automated machine learningautoml tabular datatime series forecastingmultimodal deep learningml model training automationimage text classificationno-code machine learning
automldeep-learningtabular-data

More Software Development packages

Further reading