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)
319var coeffStdErrorValues = _coeffStdError.GetValues(); 322ctx.Writer.Write(_coeffStdError.Length); 323if (!_coeffStdError.IsDense) 324ctx.Writer.WriteIntsNoCount(_coeffStdError.GetIndices()); 334ctx.Writer.WriteIntsNoCount(_coeffStdError.GetIndices()); 343var stdError = _coeffStdError.GetValues()[0]; 344Contracts.Assert(stdError == _coeffStdError.GetItemOrDefault(0)); 360Contracts.Assert(_coeffStdError.Length == _weights.Length + 1); 371bool denseStdError = _coeffStdError.IsDense; 372ReadOnlySpan<int> stdErrorIndices = _coeffStdError.GetIndices(); 373ReadOnlySpan<float> coeffStdErrorValues = _coeffStdError.GetValues(); 394ReadOnlySpan<int> stdErrorIndices2 = _coeffStdError.GetIndices(); 408Env.Assert(_coeffStdError.Length == _weights.Length + 1); 410ReadOnlySpan<float> stdErrorValues = _coeffStdError.GetValues(); 414bool denseStdError = _coeffStdError.IsDense; 415ReadOnlySpan<int> stdErrorIndices = _coeffStdError.GetIndices(); 437bool denseStdError = _coeffStdError.IsDense; 438ReadOnlySpan<int> stdErrorIndices = _coeffStdError.GetIndices();