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 Optimize Latency for Edge AI Deployments

Gen AI Models: Open Source vs Closed Source—Pros, Cons & Everything in Between

Webinar: The Making of YOLO-NAS, a Foundation Model, with NAS

Add Your Heading Text Here
				
					from transformers import AutoFeatureExtractor, AutoModelForImageClassification

extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-50")

model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-50")