The largest change in terms of LoC is replacing a large amount of t.Logf+t.FailNow with t.Fatalf in onnxruntime_test.go.
The change with the most importance moving forward is replacing ArbitraryTensor with Value, which already saves a lot of typing. ArbitraryTensor remains as an alias for backwards compatibility.
The new Value type is in preparation to start adding support for non-Tensor types, in response to issue #57.
This should address issue #60
The largest change in terms of LoC is replacing a large amount of
t.Logf
+t.FailNow
witht.Fatalf
inonnxruntime_test.go
.The change with the most importance moving forward is replacing
ArbitraryTensor
withValue
, which already saves a lot of typing.ArbitraryTensor
remains as an alias for backwards compatibility.The new
Value
type is in preparation to start adding support for non-Tensor types, in response to issue #57.