by CPI Staff | Sep 25, 2025 | AI, Blog, PyTorch, Tensor, TensorFlow
In this blog post Deploying Deep Learning Models as Fast Secure REST APIs in Production we will walk through how to turn a trained model into a robust web service ready for real users and real traffic. Deploying a model is about more than shipping code. It’s about...
by CPI Staff | Sep 21, 2025 | .NET, Blog, PyTorch
In this blog post Practical ways to run PyTorch in .NET with TorchSharp and more we will walk through reliable ways to use PyTorch from .NET, when to choose each approach, and how the pieces work under the hood. At a high level, you have three good options: write and...
by CPI Staff | Sep 18, 2025 | AI, Blog, PyTorch
In this blog post Get Started With Tensors with PyTorch we will walk through how to work with tensors with simple, copy‑paste examples you can use today. Tensors are the workhorse behind modern AI and numerical computing. Think of them as powerful, N‑dimensional...
by CPI Staff | Sep 15, 2025 | AI, Blog, LLM, PyTorch
In this blog post Best Practices for Loading and Saving PyTorch Weights in Production we will map out the practical ways to persist and restore your models without surprises. Whether you build models or manage teams shipping them, understanding how PyTorch saves...
by CPI Staff | Jul 26, 2025 | AI, Blog, PyTorch
The softmax function is a cornerstone of machine learning, especially in tasks involving classification. It transforms raw prediction scores (logits) into probabilities, making them easy to interpret and use for decision-making. This blog post will dive deep into what...
by CPI Staff | Jul 25, 2025 | AI, Blog, PyTorch
In this blog post titled “Understanding Transformers: The Architecture Driving AI Innovation,” we’ll delve into what Transformer architecture is, how it works, the essential tools we use to build transformer-based models, some technical insights, and...