Video

[Webinar] SuperGradients: The New Open-Source Python Library for CV Models

SuperGradients is a free open-source library for training computer vision models based on PyTorch. It enables practitioners to easily train or fine-tune state-of-the-art CV models for all the commonly used tasks using just one training repository.

In this webinar, our technical product manager, Ofer Baratz, and deep learning engineer, Shay Aharon, walk you through SuperGradients and how to get started.

With SuperGradients you can:

  • Train models for different tasks including classification, detection, and segmentation for videos and images
  • Easily load and fine-tune pre-trained models such as YOLOv5, MobileNet, ResNet, and EfficientNet
  • Shorten training lifecycle with tested and proven recipes and code examples
  • Customize your own or plug & play hyperparameters for training, dataset, and architecture

Watch the webinar now.

You May Also Like

[Webinar] How to Evaluate LLMs: Benchmarks, Vibe Checks, Judges, and Beyond

[Webinar] How to Boost Accuracy & Speed in Satellite & Aerial Image Object Detection

[Webinar] How to Efficiently Scale Video Analytics at the Edge

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