AutoML

Share

AutoML (Automated Machine Learning) makes machine learning available and accessible by automating machine learning. It automates the standard (manual) machine learning process with off-the-shelf methods.

AutoML shortens the process of pre-processing data, engineering features, choosing a model family, selecting algorithms, optimizing hyperparameters, improving model performance, and more. It increases efficiency, speeds up processes, and utilizes resources more efficiently.

Filter terms by

Glossary Alphabetical filter

Related resources

sg-w&b-integration
Training
featured image for how to measure inference time
Deployment
resnet50-how-to-achieve-SOTA-accuracy-on-imagenet
Computer Vision
Share
Add Your Heading Text Here
				
					from transformers import AutoFeatureExtractor, AutoModelForImageClassification

extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-50")

model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-50")