18 references to CreateNode
Microsoft.ML.Data (18)
Model\Onnx\OnnxContext.cs (2)
113
/// Convenience alternative to <see cref="
CreateNode
(string, IEnumerable{string}, IEnumerable{string}, string, string)"/>
124
=>
CreateNode
(opType, new[] { input }, new[] { output }, name, domain);
Model\Onnx\OnnxNode.cs (1)
12
/// <see cref="OnnxContext.
CreateNode
(string, IEnumerable{string}, IEnumerable{string}, string, string)"/>.
Prediction\Calibrator.cs (7)
1308
var node = ctx.
CreateNode
(opType, new[] { outputNames[0], minVar }, new[] { subNodeOutput }, ctx.GetNodeName(opType), "");
1313
node = ctx.
CreateNode
(opType, new[] { subNodeOutput, binSizeVar }, new[] { divNodeOutput }, ctx.GetNodeName(opType), "");
1325
node = ctx.
CreateNode
(opType, new[] { castOutput, zeroVar, numBinsMinusOneVar }, new[] { binIndexOutput }, ctx.GetNodeName(opType), "");
1329
node = ctx.
CreateNode
(opType, new[] { binProbabilitiesVar, binIndexOutput }, new[] { outputNames[1] }, ctx.GetNodeName(opType), "");
1806
var node = ctx.
CreateNode
(opType, new[] { scoreProbablityColumnNames[0], slopVar }, new[] { mulNodeOutput }, ctx.GetNodeName(opType), "");
1811
node = ctx.
CreateNode
(opType, new[] { mulNodeOutput, betaVar }, new[] { linearOutput }, ctx.GetNodeName(opType), "");
1814
node = ctx.
CreateNode
(opType, new[] { linearOutput },
Scorers\BinaryClassifierScorer.cs (1)
213
ctx.
CreateNode
(opType, new[] { binarizerOutput, one }, new[] { addOutput }, ctx.GetNodeName(opType), "");
Transforms\ColumnConcatenatingTransformer.cs (1)
940
var node = ctx.
CreateNode
(opType, inputList.Select(t => t.Key),
Transforms\Hashing.cs (5)
1385
ctx.
CreateNode
(optType2, new[] { castOutput, zero }, new[] { isGreaterThanZeroOutputBool }, ctx.GetNodeName(optType2), "");
1422
var shiftNode = ctx.
CreateNode
(opType, new[] { murmurOutput, shiftValue }, new[] { bitShiftOutput }, ctx.GetNodeName(opType), "");
1427
shiftNode = ctx.
CreateNode
(opType, new[] { bitShiftOutput, shiftValue }, new[] { bitShiftOutput2 }, ctx.GetNodeName(opType), "");
1440
ctx.
CreateNode
(opType, new[] { castOutput, one }, new[] { addOutput }, ctx.GetNodeName(opType), "");
1446
ctx.
CreateNode
(opType, new[] { isGreaterThanZeroOutput, addOutput }, new[] { mulOutput }, ctx.GetNodeName(opType), "");
Transforms\SlotsDroppingTransformer.cs (1)
908
var node = ctx.
CreateNode
(opType, new[] { srcVariableName, slotsVar }, new[] { dstVariableName }, ctx.GetNodeName(opType), "");