16 references to Array
Microsoft.ML.Data (9)
Model\Pfa\PfaUtils.cs (4)
107cases.Add(jobj.AddReturn("as", Type.Array(itemType)).AddReturn( 155return Union(Map(itemType), Array(itemType)); 168return Array(itemType); 305var arrType = Type.Array(Type.Double);
Transforms\ColumnConcatenatingTransformer.cs (1)
829var arrType = PfaType.Array(itemType);
Transforms\KeyToValue.cs (1)
485string cellName = ctx.DeclareCell("KeyToValueMap", PfaUtils.Type.Array(outType), jsonValues);
Transforms\KeyToVector.cs (1)
676JToken arrType = PfaUtils.Type.Array(PfaUtils.Type.Double);
Transforms\NormalizeColumnDbl.cs (1)
760var arrType = PfaUtils.Type.Array(itemType);
Transforms\NormalizeColumnSng.cs (1)
917var arrType = PfaUtils.Type.Array(itemType);
Microsoft.ML.FastTree (1)
TreeEnsemble\InternalTreeEnsemble.cs (1)
230.AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Double)).AddReturn("new", toAdd));
Microsoft.ML.StandardTrainers (6)
Standard\LinearModelParameters.cs (1)
245fields.Add(jobj.AddReturn("name", "coeff").AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Double)));
Standard\LogisticRegression\MulticlassLogisticRegression.cs (3)
949fields.Add(jobj.AddReturn("name", "coeff").AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Array(PfaUtils.Type.Double)))); 950fields.Add(jobj.AddReturn("name", "const").AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Double)));
Standard\MulticlassClassification\OneVersusAllTrainer.cs (2)
658return jobj.AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Double)).AddReturn("new", rootObjects); 786var rootResult = jobj.AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Double)).AddReturn("new", rootObjects);