TorchScript export is about saving a PyTorch model so it can run fast and independently from Python. The key metric to check after export is model output consistency. This means the exported model should give the same predictions as the original PyTorch model. We check this by comparing outputs on the same input data.
Additionally, inference speed is important because TorchScript aims to make models faster and easier to deploy.