Video

Deci Platform Tutorial: How to Use Infery, a Python Runtime Engine

Infery is Deci’s Python runtime engine that lets you run inference locally or on edge devices with only 3 simple commands. In this quick tutorial, Ofer Baratz, technical product manager at Deci, walks you through installing Infery, loading your trained model, and running inference and benchmark tests.

You can read the documentation here.

You May Also Like

[Webinar] How to Speed Up YOLO Models on Snapdragon: Beyond Naive Quantization

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

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

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