3 writes to Name
Microsoft.ML.OnnxConverter (3)
OnnxMl.cs (2)
1103Name = other.Name; 1133Name = input.ReadString();
OnnxUtils.cs (1)
56value.Name = name;
15 references to Name
Microsoft.ML.OnnxConverter (10)
OnnxMl.cs (10)
1021if (Name != other.Name) return false; 1031if (Name.Length != 0) hash ^= Name.GetHashCode(); 1050if (Name.Length != 0) 1053output.WriteString(Name); 1075if (Name.Length != 0) 1077size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); 1101if (other.Name.Length != 0) 1103Name = other.Name;
Microsoft.ML.Tests (5)
OnnxConversionTest.cs (5)
1630string[] inputNames = onnxModel.Graph.Input.Select(valueInfoProto => valueInfoProto.Name).ToArray(); 1631string[] outputNames = onnxModel.Graph.Output.Select(valueInfoProto => valueInfoProto.Name).ToArray(); 1740Assert.Equal("Target1.output", model.Graph.Output[0].Name); 1800string[] inputNames = onnxProtoBufModel.Graph.Input.Select(valueInfoProto => valueInfoProto.Name).ToArray(); 1801string[] outputNames = onnxProtoBufModel.Graph.Output.Select(valueInfoProto => valueInfoProto.Name).ToArray();