Introduction to Model Deployment
Learn the deployment steps of a model by discovering various deployment frameworks like TensorRT, TensorLite, PyTorch Mobile, ONNX, and OpenVINO.
Deployment of an AI model
It’s time to learn the deployment stage and the real environment. We will use our trained model to ask for its predictions using its ready-to-use weights. This is also called inference time.
Usually, a deployment environment has different hardware features than training. We can have a GPU in our local machine to train our models, but we might want to run this trained model in an embedded system, in a mobile phone with less ...