Skip to content

Commit

Permalink
- (docs) fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski committed Oct 25, 2023
1 parent 1ff1223 commit 9d09a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/exportingmodels.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ and you should see new files like `MyModelNameGoesHere_simplified_fp16.onnx` in

## PyTorch

This is the simplest of the export methods because, as mentioned in [ONNXExporter](#onnxexporter) section, pySIPFENN
This is the simplest of the export methods because, as mentioned in [ONNXExporter](#ONNXExporter) section, pySIPFENN
models are already stored as PyTorch models; therefore, no conversion is needed. You can use it by simply calling

from pysipfenn import PyTorchExporter
Expand All @@ -106,7 +106,7 @@ other platforms as well, such as Linux or Windows, through [coremltools](https:/
from Apple used by this exporter.

Note that under the hood, CoreML uses the float16 precision, so the model predictions will numerically match those
exported with [ONNXExporter](#onnxexporter) in float16 precision rather than the default pySIPFENN models. This can
exported with [ONNXExporter](#ONNXExporter) in float16 precision rather than the default pySIPFENN models. This can
be useful if you want to use the models on devices with limited memory, such as mobile phones or embedded devices, and
generally should not significantly affect the accuracy of the predictions.

Expand Down

0 comments on commit 9d09a00

Please sign in to comment.