We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6708456 commit e451fb7Copy full SHA for e451fb7
src/Microsoft.ML.OnnxTransformer/OnnxTransform.cs
@@ -805,7 +805,7 @@ private class NamedOnnxValueGetterVec<T> : INamedOnnxValueGetter
805
public NamedOnnxValueGetterVec(DataViewRow input, int colIndex, OnnxShape tensorShape)
806
{
807
_srcGetter = input.GetGetter<VBuffer<T>>(input.Schema[colIndex]);
808
- _tensorShape = tensorShape;
+ _tensorShape = new OnnxShape(tensorShape);
809
_colName = input.Schema[colIndex].Name;
810
_vBuffer = default;
811
_vBufferDense = default;
0 commit comments