AutoGluon Vision is part of the AutoGluon AutoML framework for computer vision tasks. It automates image classification, object detection, and other vision modalities. The latest release is v1.5.0 (Dec 2025). The package is under active development and follows the AutoGluon release cadence (~quarterly). Note: AutoGluon Vision is typically installed via the metapackage 'autogluon' or the standalone 'autogluon.vision' module; 'autogluon-vision' on PyPI is a legacy split package.
pip install autogluonVerified import paths — ran on the pinned version, not inferred.
Train an image classification model on a sample dataset with minimal code. The fit method automatically downloads and preprocesses data.
Use Python >=3.9 (3.10–3.12 recommended). Check your environment with 'python --version'.
Migrate to 'from autogluon.multimodal import MultiModalPredictor' and use the unified API for vision tasks.
Install 'pip install autogluon' to get the full suite (tabular, vision, text). This is the recommended approach since v1.0.
Ensure your environment has a compatible GPU (NVIDIA with CUDA). Use 'import torch; print(torch.cuda.is_available())' to verify.
Always specify a local root path for data: predictor.fit('/path/to/local/data') or use a custom Dataset object.