The short version: AutoML is still very relevant in 2026, but its role has shifted. Instead of trying to replace ML engineers, modern AutoML is increasingly used to establish strong baselines quickly, automate feature engineering and hyperparameter optimization, and deploy reliable tabular models. For many business problems, that's enough.
Here's how I'd think about the landscape.
| Tool | Best for | Strengths | Weaknesses |
|---|
| H2O.ai (H2O AutoML) | Enterprise tabular ML | Mature, scalable, strong ensembles | Java ecosystem isn't everyone's favorite |
| AutoGluon | Open-source tabular & multimodal | Excellent defaults, often state-of-the-art on tabular | Less focused on production infrastructure |
| Microsoft (FLAML) | Fast AutoML | Extremely efficient search, lightweight | Smaller ecosystem |
| Google | Managed cloud | Integrated training + deployment | Cloud lock-in |
| Amazon | AWS users | Good managed workflows | Cost and complexity |
| DataRobot | Large enterprises | Governance, explainability, deployment | Expensive |
Is AutoGluon still one of the best?
Yes.
For structured/tabular data, AutoGluon remains one of the strongest open-source choices because it:
- trains multiple model families
- stacks them automatically
- performs feature preprocessing
- handles categorical variables well
- produces surprisingly strong ensembles with little tuning
On many Kaggle-style datasets, it's still difficult to beat without significant manual work.
Typical workflow:
CSV
↓
AutoGluon
↓
LightGBM
CatBoost
XGBoost
Neural nets
Random forests
↓
Weighted ensemble
↓
Leaderboard
This gets you a very competitive baseline in hours instead of days.
Is H2O still relevant?
Absolutely, especially in enterprises.
H2O is attractive when you need:
- distributed training
- governance
- model explainability
- deployment support
- large datasets
- regulated industries
Banks and insurance companies continue to use it because it's a mature ecosystem rather than just an AutoML library.
What's newer?
A few trends stand out more than a single "AutoML killer":
1. LLM-assisted ML workflows
Instead of just searching hyperparameters, AI assistants can now help:
- inspect datasets
- identify leakage
- suggest features
- generate preprocessing pipelines
- explain model behavior
- write training code
The automation is moving beyond model selection into the entire ML workflow.
2. Better gradient boosting defaults
Libraries like CatBoost, LightGBM, and XGBoost have become so good that many practitioners start with one of them before reaching for full AutoML. Their strong out-of-the-box performance narrows the gap.
3. Foundation models for tabular data
Research continues on transformer-based models and pretrained representations for structured data, but gradient boosting remains the dominant choice for many real-world tabular prediction tasks because of its strong accuracy, efficiency, and interpretability.
When do I use AutoML?
Yes
If I have:
- a new dataset
- a business prediction problem
- tabular data
- a deadline
- unknown feature importance
I almost always begin with AutoML.
It gives me:
- a leaderboard
- feature importance
- strong baseline
- reasonable preprocessing
- calibration
- ensemble models
This often saves several days of manual experimentation.
When do I switch to hand-crafted models?
Usually when one or more of these apply:
1. Custom neural networks
Examples:
- diffusion models
- large language models
- graph neural networks
- reinforcement learning
- recommendation systems with specialized architectures
AutoML generally isn't designed for these.
2. Domain-specific feature engineering
For example:
Fraud detection:
- graph features
- customer history
- device fingerprints
- temporal patterns
Those features usually matter more than hyperparameter search.
3. Latency matters
If the model must answer in:
- 2 ms
- 5 ms
- edge device
- mobile
AutoML ensembles may be too large or slow. A carefully optimized single model is often preferable.
4. Interpretability matters
If regulators or stakeholders need a simple explanation, I might choose:
- logistic regression
- monotonic gradient boosting
- generalized additive models (GAMs)
These can be easier to explain than stacked ensembles.
5. Very large datasets
For datasets with hundreds of millions or billions of rows, it's often more efficient to design a targeted pipeline than to run an extensive AutoML search.
My practical workflow in 2026
For a typical tabular ML project:
- Clean obvious data quality issues.
- Run AutoML (often AutoGluon, FLAML, or H2O AutoML) to establish a strong baseline.
- Examine feature importance, errors, and calibration.
- Decide whether the baseline is sufficient for the business objective.
- If not, invest in feature engineering, domain-specific modeling, or a custom architecture where it will have the most impact.
In many production settings, the biggest gains come from better data and features, not from squeezing another 0.2% out of hyperparameters.
Overall: H2O AutoML and AutoGluon remain excellent choices in 2026 rather than being obsolete. The notable shift is that AutoML is now commonly paired with AI-assisted development: AutoML handles model search and optimization, while AI tools help with data understanding, feature engineering, pipeline construction, debugging, and deployment. That combination tends to deliver the highest productivity for most tabular ML problems.