From e296c63cd486c7da646c9e00eefd6a94fdf443a7 Mon Sep 17 00:00:00 2001 From: Tomek Date: Thu, 8 May 2025 08:47:45 -0700 Subject: [PATCH] Fix wording in `torchscript.md` (#38004) Fix wording in torchscript.md --- docs/source/en/torchscript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/torchscript.md b/docs/source/en/torchscript.md index 75d66e4548..fa13fc6166 100644 --- a/docs/source/en/torchscript.md +++ b/docs/source/en/torchscript.md @@ -16,7 +16,7 @@ rendered properly in your Markdown viewer. # TorchScript -[TorchScript](https://pytorch.org/docs/stable/jit.html) serializes PyTorch models into programs that can be executed in non-Python processes. This is especially advantageous in production environments where Python may the most performant choice. +[TorchScript](https://pytorch.org/docs/stable/jit.html) serializes PyTorch models into programs that can be executed in non-Python processes. This is especially advantageous in production environments where Python may not be the most performant choice. Transformers can export a model to TorchScript by: