# Functions
Parse parses an ONNX model into an internal representation that can be used to build a GoMLX graph.
ReadFile parses an ONNX model file into an internal representation that can be used to build a GoMLX graph.
SafeVarName converts an ONNX variable name to a GoMLX safe variable name by replacing the scope separator with a "|".
Shape converts an ONNX data type and shape to GoMLX shapes.Shape (it includes the dtype).
SparseShape returns what would be the dense shape of an ONNX SparseTensor.
TensorValueToONNX copies the value of a GoMLX tensors.Tensor to the ONNX protos.TensorProto object handling errors and different data types.
# Constants
UnnamedDynamicDimension is a placeholder name for an unnamed dynamic dimension, that doesn't necessarily match any other (in inputs/outputs).
# Variables
No description provided by the author
No description provided by the author
ModelScope is the default model scope to use when for the ONNX model variables when converting to GoMLX.
# Structs
DynamicShape represents a shape for which some of the axes have unknown dimensions.
Model represents a parsed ONNX file.