gbm.auto icon indicating copy to clipboard operation
gbm.auto copied to clipboard

Auto: Return cor & converge errors earlier than at the end

Open SimonDedman opened this issue 6 years ago • 0 comments

glm.fit: algorithm did not converge (bin only?) if (!conv) warning("glm.fit: algorithm did not converge", call. = FALSE)

glm.fit: fitted probabilities numerically 0 or 1 occurred (bin only) if (any(mu > 1 - eps) || any(mu < eps)) warning("glm.fit: fitted probabilities numerically 0 or 1 occurred", call. = FALSE)

In cor(y_i, u_i) : the standard deviation is zero (gaus only?) from cor, base function

http://blog.obeautifulcode.com/R/A-Warning-About-Warning/ question asked here

Can just use warnings() or print(warnings()) ? After gbm.steps so L393 & 440. Tried

SimonDedman avatar Feb 25 '19 19:02 SimonDedman