From 13f342af9e937f53c32c96be201a5dbe1936e0c0 Mon Sep 17 00:00:00 2001 From: Michael Cusack Date: Fri, 4 Aug 2023 23:12:06 +0700 Subject: [PATCH] docs typo --- save_torchscript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/save_torchscript.py b/save_torchscript.py index 5b7f1ed..af3a299 100755 --- a/save_torchscript.py +++ b/save_torchscript.py @@ -47,7 +47,7 @@ def main() -> None: model_args = {k: globals()[k] for k in signature(ModelArgs).parameters} model = Transformer(ModelArgs(**model_args)) - # If requested zero params before saving the model. This is usful in + # If requested zero params before saving the model. This is useful in # conjunction with gzip_output. if zero_params: for p in model.parameters():