Skip to content

Commit

Permalink
spelling mistakes fix (#318)
Browse files Browse the repository at this point in the history
Co-authored-by: Bastian Ravn <Bastian>
Co-authored-by: Nicki Skafte Detlefsen <[email protected]>
  • Loading branch information
Vastian4 and SkafteNicki authored Jan 14, 2025
1 parent 868badc commit 12134ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions s7_deployment/ml_deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ an developer friendly framework, however it has historically been slow to run in
not be able to optimize the computational graph as well.
3. Check that the model was correctly exported by loading it using the `onnx` package and afterwards check the graph
of model using the following code:
of the model using the following code:
```python
import onnx
Expand All @@ -225,7 +225,7 @@ an developer friendly framework, however it has historically been slow to run in
print(onnx.helper.printable_graph(model.graph))
```
4. To get a better understanding of what is actually exported, lets try to visualize the computational graph of the
4. To get a better understanding of what is actually exported, let's try to visualize the computational graph of the
model. This can be done using the open-source tool [netron](https://github.com/lutzroeder/netron). You can either
try it out directly in [webbrowser](https://netron.app/) or you can install it locally using `pip install netron`
and then run it using `netron resnet18.onnx`. Can you figure out what method of the model is exported to ONNX?
Expand Down

0 comments on commit 12134ca

Please sign in to comment.