14 references to Double
Microsoft.ML.Data (7)
Model\Pfa\PfaUtils.cs (2)
210
return
Double
;
305
var arrType = Type.Array(Type.
Double
);
Transforms\KeyToVector.cs (3)
676
JToken arrType = PfaUtils.Type.Array(PfaUtils.Type.
Double
);
691
new JArray() { PfaUtils.Param("v", PfaUtils.Type.
Double
) }, PfaUtils.Type.
Double
,
Transforms\NormalizeColumnDbl.cs (1)
759
var itemType = PfaUtils.Type.
Double
;
Transforms\NormalizeColumnSng.cs (1)
916
var itemType = PfaUtils.Type.
Double
;
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 (2)
245
fields.Add(jobj.AddReturn("name", "coeff").AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.
Double
)));
246
fields.Add(jobj.AddReturn("name", "const").AddReturn("type", PfaUtils.Type.
Double
));
Standard\LogisticRegression\MulticlassLogisticRegression.cs (2)
949
fields.Add(jobj.AddReturn("name", "coeff").AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.Array(PfaUtils.Type.
Double
))));
950
fields.Add(jobj.AddReturn("name", "const").AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.
Double
)));
Standard\MulticlassClassification\OneVersusAllTrainer.cs (2)
658
return jobj.AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.
Double
)).AddReturn("new", rootObjects);
786
var rootResult = jobj.AddReturn("type", PfaUtils.Type.Array(PfaUtils.Type.
Double
)).AddReturn("new", rootObjects);