You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used tl2cgen to compile my model file, it is a really nice tool!
But since there's no missing value and qvalue needed in my case, i changed function input parameter to double* data, however, I found there's some stability issue that <1% of predict results can not match the one generated by LightGBM boosting api, btw, our tree is really sensitive to precision (the node threshold are small value with many decimal place). The problem is finally fixed by changing the input parameter to const double* data, But I am pretty sure that I am not changing the data anywhere.
Anyone has idea about the reason?
The text was updated successfully, but these errors were encountered:
I used tl2cgen to compile my model file, it is a really nice tool!
But since there's no missing value and qvalue needed in my case, i changed function input parameter to
double* data
, however, I found there's some stability issue that <1% of predict results can not match the one generated by LightGBM boosting api, btw, our tree is really sensitive to precision (the node threshold are small value with many decimal place). The problem is finally fixed by changing the input parameter toconst double* data
, But I am pretty sure that I am not changing the data anywhere.Anyone has idea about the reason?
The text was updated successfully, but these errors were encountered: