Fine Tuning

Share

Fine tuning is the process of making small adjustments to achieve the desired output or performance. In deep learning, it involves the use of weights of a trained neural network to program another deep learning algorithm from the same domain. The weights connect each neuron in one layer to every neuron in the next layer in the neural network. Fine tuning is used to speed up the training and/or overcome a small dataset as it already contains vital information from a pre-existing deep learning algorithm.

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