Video

Deci Platform Tutorial: How to Optimize a Model

Join Amir Servi, product manager at Deci, as he walks you through the process of optimizing a model using Deci’s Deep Learning Acceleration Platform. You can read the documentation here.

If you’re not a user yet, book a demo now to:

  • Accelerate Inference on Edge or Cloud
    Get 3x-15x speedup optimization for inference throughput/latency while maintaining accuracy, enabling new use cases on your hardware of choice.
  • Reach Production Faster
    Shorten your development cycle from months to weeks with automated tools. No more endless iterations and dozens of different libraries.
  • Maximize Your Hardware Potential
    Scale-up with existing hardware. No need for infrastructure changes and extra costs. Gain up to 80% reduction in compute costs.

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