Skip to content

Commit

Permalink
Fix typo in domain versions in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubBachurskiQC authored Jan 17, 2023
1 parent 363c348 commit 27707ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ In Spox, most of the time you'll be working with `Var` objects - **variables**.

You may print out the `Var` or check its `Var.type` to learn a bit more about it.

To perform operations on a `Var`, use an _opset_ (operator set) module like `spox.opset.ai.onnx.v17` or `spox.opset.ai.onnx.ml.v3` - which correspond to `ai.onnx@3` and `ai.onnx.ml@17`, the standard opsets. These are pre-generated for you and you may import them as required.
To perform operations on a `Var`, use an _opset_ (operator set) module like `spox.opset.ai.onnx.v17` or `spox.opset.ai.onnx.ml.v3` - which correspond to `ai.onnx@17` and `ai.onnx.ml@3`, the standard opsets. These are pre-generated for you and you may import them as required.

For instance, using the default opset you could write a function that given two variables returns their [geometric mean](https://en.wikipedia.org/wiki/Geometric_mean):

Expand Down

0 comments on commit 27707ce

Please sign in to comment.