Skip to content

Commit a7cb006

Browse files
authored
Remove document about deprecated onnx-docker (#272)
Signed-off-by: Chun-Wei Chen <jacky82226@gmail.com> Signed-off-by: Chun-Wei Chen <jacky82226@gmail.com>
1 parent f08c551 commit a7cb006

6 files changed

Lines changed: 7 additions & 25 deletions

File tree

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44

55
[Open Neural Network Exchange (ONNX)](https://onnx.ai/) is an open standard format for representing machine learning models. ONNX is supported by [a community of partners](https://onnx.ai/supported-tools) who have implemented it in many frameworks and tools.
66

7-
These images are available for convenience to get started with ONNX and tutorials on this page
8-
* [Docker image for ONNX and Caffe2/PyTorch](pytorch_caffe2_docker.md)
9-
* [Docker image for ONNX, ONNX Runtime, and various converters](https://github.com/onnx/onnx-docker/tree/master/onnx-ecosystem)
10-
117

128
## Getting ONNX models
139

@@ -104,13 +100,13 @@ Tutorials demonstrating how to use ONNX in practice for varied scenarios across
104100
## Other ONNX tools
105101

106102
* [Verifying correctness and comparing performance](tutorials/CorrectnessVerificationAndPerformanceComparison.ipynb)
107-
* [Example of operating on ONNX protobuf](https://github.com/onnx/onnx/blob/master/onnx/examples/Protobufs.ipynb)
103+
* [Example of operating on ONNX protobuf](https://github.com/onnx/onnx/blob/main/onnx/examples/Protobufs.ipynb)
108104
* [Float16 <-> Float32 converter](https://github.com/onnx/onnx-docker/blob/master/onnx-ecosystem/converter_scripts/float32_float16_onnx.ipynb)
109105
* [Version conversion](tutorials/VersionConversion.md)
110106

111107

112108
## Contributing
113109

114-
We welcome improvements to the convertor tools and contributions of new ONNX bindings. Check out [contributor guide](https://github.com/onnx/onnx/blob/master/docs/CONTRIBUTING.md) to get started.
110+
We welcome improvements to the convertor tools and contributions of new ONNX bindings. Check out [contributor guide](https://github.com/onnx/onnx/blob/main/docs/CONTRIBUTING.md) to get started.
115111

116112
Use ONNX for something cool? Send the tutorial to this repo by submitting a PR.

pytorch_caffe2_docker.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

tutorials/PytorchAddExportSupport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class Graph(object):
110110
operators).
111111
112112
The set of operators and the inputs/attributes they take
113-
is documented at https://github.com/onnx/onnx/blob/master/docs/Operators.md
113+
is documented at https://github.com/onnx/onnx/blob/main/docs/Operators.md
114114
115115
Arguments:
116116
opname (string): The ONNX operator name, e.g., `Abs` or `Add`.

tutorials/VersionConversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Version Conversion
44

5-
The ONNX [Version Converter](https://github.com/onnx/onnx/blob/master/docs/VersionConverter.md) helps convert ONNX models to the version needed by the runtime you are using.
5+
The ONNX [Version Converter](https://github.com/onnx/onnx/blob/main/docs/VersionConverter.md) helps convert ONNX models to the version needed by the runtime you are using.
66

77
Version Conversion for BatchNormalization from opset 8 to 9:
88

tutorials/VisualizingAModel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Visualizing an ONNX Model
44
=========================
55

6-
To visualize an ONNX model, we can use the [net drawer tool](https://github.com/onnx/onnx/blob/master/onnx/tools/net_drawer.py). This tool takes in a serialized ONNX model and produces a directed graph representation. The graph contains the following information:
6+
To visualize an ONNX model, we can use the [net drawer tool](https://github.com/onnx/onnx/blob/main/onnx/tools/net_drawer.py). This tool takes in a serialized ONNX model and produces a directed graph representation. The graph contains the following information:
77

88
* Tensors
99
* Input/output tensors

tutorials/assets/onnx-ml.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ message TensorShapeProto {
458458
// Standard denotation can optionally be used to denote tensor
459459
// dimensions with standard semantic descriptions to ensure
460460
// that operations are applied to the correct axis of a tensor.
461-
// Refer to https://github.com/onnx/onnx/blob/master/docs/DimensionDenotation.md#denotation-definition
461+
// Refer to https://github.com/onnx/onnx/blob/main/docs/DimensionDenotation.md#denotation-definition
462462
// for pre-defined dimension denotations.
463463
string denotation = 3;
464464
};
@@ -539,7 +539,7 @@ message TypeProto {
539539

540540
// An optional denotation can be used to denote the whole
541541
// type with a standard semantic description as to what is
542-
// stored inside. Refer to https://github.com/onnx/onnx/blob/master/docs/TypeDenotation.md#type-denotation-definition
542+
// stored inside. Refer to https://github.com/onnx/onnx/blob/main/docs/TypeDenotation.md#type-denotation-definition
543543
// for pre-defined type denotations.
544544
string denotation = 6;
545545
}

0 commit comments

Comments
 (0)