Is there any example about how to deploy PyTorch Model in Production (C++)?

Is there any example about how to deploy a pytorch model in production environment (C++), for PyTorch 1.0 version?

The C++ export tutorial shows you how to export your model and load and call it model from C++.
How you write the surrounding application would likely depend on your use case.

Best regards

Thomas

Thanks very much, Tom!