Skip to content

Commit e241a87

Browse files
authored
Update PytorchOnnxExport.ipynb (#285)
Corrected a small error in the notebook Signed-off-by: AlexCheema <41707476+AlexCheema@users.noreply.github.com>
1 parent d5b8362 commit e241a87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tutorials/PytorchOnnxExport.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"\n",
3131
"The ONNX exporter is a trace-based exporter, which means that it operates by executing your model once, and exporting the operators which were actually run during this run. This means that if your model is dynamic, e.g., changes behavior depending on input data, the export won’t be accurate.\n",
3232
"\n",
33-
"Similarly, a trace is might be valid only for a specific input size (which is one reason why we require explicit inputs on tracing). Most of the operators export size-agnostic versions and should work on different batch sizes or input sizes. We recommend examining the model trace and making sure the traced operators look reasonable."
33+
"Similarly, a trace might be valid only for a specific input size (which is one reason why we require explicit inputs on tracing). Most of the operators export size-agnostic versions and should work on different batch sizes or input sizes. We recommend examining the model trace and making sure the traced operators look reasonable."
3434
]
3535
},
3636
{

0 commit comments

Comments
 (0)