Skip to content

Commit e3074bc

Browse files
autoihhouseroad
authored andcommitted
modify file path (#2378)
1 parent 9058d3a commit e3074bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/VersionConverter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ which accepts an input `ModelProto`, the initial opset version of the model,
3333
and the target opset verison, and which returns a new `ModelProto` which
3434
is the result of apply all relevant adapters between initial_version and
3535
target_version. For a list of available passes, see
36-
[convert.h](onnx/version_converter/convert.h).
36+
[convert.h](/onnx/version_converter/convert.h).
3737

3838
## Implementing Adapters
3939

4040
You can implement a new adapter by subclassing `Adapter`, and registering
4141
your new adapter with `VersionConverter::registerAdapter()`. Adapters operate
42-
on an in-memory graph representation defined in [ir.h](onnx/common/ir.h).
43-
There are a number of examples in the [adapters](onnx/version_converter/adapters)
42+
on an in-memory graph representation defined in [ir.h](/onnx/common/ir.h).
43+
There are a number of examples in the [adapters](/onnx/version_converter/adapters)
4444
directory. Please ensure that all adapters convert from opset version i to i + 1
4545
or i - 1, i.e. from Version 6 to Version 5 or vice versa, even if the 2 versions
4646
being converted between are Version 1 and Version 6.

0 commit comments

Comments
 (0)