3 writes to _coeffStdError
Microsoft.ML.StandardTrainers (3)
Standard\ModelStatistics.cs (3)
253
_coeffStdError
= coeffStdError;
281
_coeffStdError
= new VBuffer<float>(length, stdErrorValues);
287
_coeffStdError
= new VBuffer<float>(length, ParametersCount, stdErrorValues, stdErrorIndices);
18 references to _coeffStdError
Microsoft.ML.StandardTrainers (18)
Standard\ModelStatistics.cs (18)
319
var coeffStdErrorValues =
_coeffStdError
.GetValues();
322
ctx.Writer.Write(
_coeffStdError
.Length);
323
if (!
_coeffStdError
.IsDense)
324
ctx.Writer.WriteIntsNoCount(
_coeffStdError
.GetIndices());
334
ctx.Writer.WriteIntsNoCount(
_coeffStdError
.GetIndices());
343
var stdError =
_coeffStdError
.GetValues()[0];
344
Contracts.Assert(stdError ==
_coeffStdError
.GetItemOrDefault(0));
360
Contracts.Assert(
_coeffStdError
.Length == _weights.Length + 1);
371
bool denseStdError =
_coeffStdError
.IsDense;
372
ReadOnlySpan<int> stdErrorIndices =
_coeffStdError
.GetIndices();
373
ReadOnlySpan<float> coeffStdErrorValues =
_coeffStdError
.GetValues();
394
ReadOnlySpan<int> stdErrorIndices2 =
_coeffStdError
.GetIndices();
408
Env.Assert(
_coeffStdError
.Length == _weights.Length + 1);
410
ReadOnlySpan<float> stdErrorValues =
_coeffStdError
.GetValues();
414
bool denseStdError =
_coeffStdError
.IsDense;
415
ReadOnlySpan<int> stdErrorIndices =
_coeffStdError
.GetIndices();
437
bool denseStdError =
_coeffStdError
.IsDense;
438
ReadOnlySpan<int> stdErrorIndices =
_coeffStdError
.GetIndices();