From 9f8e0857ee39ea8297153d2750c4ce2435c17807 Mon Sep 17 00:00:00 2001 From: Michael Cusack Date: Fri, 4 Aug 2023 17:22:27 +0700 Subject: [PATCH] Typo --- save_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/save_model.py b/save_model.py index 4a19880..4aebef0 100644 --- a/save_model.py +++ b/save_model.py @@ -2,7 +2,7 @@ #!/usr/bin/env python """Saves the model as a TorchScript. -The resulting file can be loaded in C++ code and then used for training or infrence with: +The resulting file can be loaded in C++ code and then used for training or inference with: #include torch::jit::Module module = torch::jit::load("model.pt") """