Master tools and techniques for building, training,
and running efficient deep-learning models
Advanced courses for data scientists and machine learning engineers looking to broaden their knowledge, expand their skillset, and deepen their understanding of essential techniques.
Learn how to effectively analyze and understand your computer vision datasets for better model design and training with open source tools.
The Deep Learning Daily Discord community is a dedicated space for meeting deep learning experts. Here you can ask and answer questions, have open-ended conversations and stay up to date on everything deep learning.
from transformers import AutoFeatureExtractor, AutoModelForImageClassification
extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-50")
model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-50")