Data-Aware Model Development

Share

Data-aware model development is an approach to deep learning development that takes into account the training data, along with the baseline model and target inference hardware. Using AutoNAC, the final architecture design is fine-tuned on the data provided, to achieve the same accuracy performance as the baseline.

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")