6 writes to Features
Microsoft.ML.Samples (6)
Dynamic\Trainers\AnomalyDetection\RandomizedPcaSample.cs (6)
22
new DataPoint(){
Features
= new float[3] {0, 2, 1} },
23
new DataPoint(){
Features
= new float[3] {0, 2, 1} },
24
new DataPoint(){
Features
= new float[3] {0, 2, 1} },
25
new DataPoint(){
Features
= new float[3] {0, 1, 2} },
26
new DataPoint(){
Features
= new float[3] {0, 2, 1} },
27
new DataPoint(){
Features
= new float[3] {2, 0, 0} }
2 references to Features
Microsoft.ML.Samples (2)
Dynamic\Trainers\AnomalyDetection\RandomizedPcaSample.cs (2)
37
featureColumnName: nameof(DataPoint.
Features
), rank: 1,
57
var featuresInText = string.Join(',', samples[i].
Features
);