Skip to content

Commit

Permalink
[DOCS] Remove "experimental" note for torch.export (#28492)
Browse files Browse the repository at this point in the history
### Details:
 - *item1*
 - *...*

### Tickets:
 - *ticket-id*

Signed-off-by: Maxim Vafin <[email protected]>
  • Loading branch information
mvafin authored Jan 17, 2025
1 parent c64aa94 commit 33eda4b
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ It is recommended to address model outputs by the index rather then the name.
Support for torch.export
########################

`torch.export <https://pytorch.org/docs/2.2/export.html>`__ is the current way to get a graph
`torch.export <https://pytorch.org/docs/stable/export.html>`__ is the current way to get a graph
representation of a model (since PyTorch 2.1). It produces ``ExportedProgram`` which includes
the graph representation in the FX format. To see why it has an advantage over the TorchScript
representation, refer to `PyTorch documentation <https://pytorch.org/docs/stable/fx.html>`__.
Expand All @@ -198,11 +198,6 @@ Here is an example of how to convert a model obtained with ``torch.export``:
exported_model = export(model, (torch.randn(1, 3, 224, 224),))
ov_model = convert_model(exported_model)
.. note::

This is an experimental feature. Use it only if you know that you need to. PyTorch version 2.2
is recommended. Dynamic shapes are not supported yet.

Converting a PyTorch Model from Disk
####################################

Expand Down

0 comments on commit 33eda4b

Please sign in to comment.