2 writes to _tValues
Microsoft.ML.Mkl.Components (2)
OlsLinearRegression.cs (2)
801
_tValues
= tValues;
835
_tValues
= ctx.Reader.ReadDoubleArray(m);
8 references to _tValues
Microsoft.ML.Mkl.Components (8)
OlsLinearRegression.cs (8)
746
public IReadOnlyList<double> TValues =>
_tValues
;
836
TValueCheckDecode(Bias,
_tValues
[0]);
839
TValueCheckDecode(weightValues[i - 1],
_tValues
[i]);
870
Contracts.Assert(_standardErrors == null &&
_tValues
== null && _pValues == null);
874
Contracts.Assert(Weight.Length + 1 ==
_tValues
.Length);
877
ctx.Writer.WriteDoublesNoCount(
_tValues
);
913
writer.WriteLine(format, "", "Bias", Bias, _standardErrors[0],
_tValues
[0], _pValues[0]);
920
coeffs[i], _standardErrors[i + 1],
_tValues
[i + 1], _pValues[i + 1]);