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
For binary classification, how to calculate gain? Can you please give me an example of the calculations?
If I have features
F0 = [1,0,1,0,2,3,0,1,1,2] and
F1 = [0,1,0,3,0,0,0,4,0,0],
which one is correct between newBundle = [4,8,4,10,5,6,0,11,4,5] as Algorithm 4 in the paper,
newBundle = [1,4,1,6,2,3,0,7,1,2], or newBundle = [1,4,1,6,2,3,0,1,1,2]?
In Algorithm 4 below, where does the value of numBin come from? How do we know the value of numBin for each features?
How do we get the value of bin boundaries?
I am sorry for asking too much questions. But I hope someone here can give me better understanding, thank you.
Hello, I have few questions regarding the algorithm of LightGBM. Currently, I am using LightGBM for my undergraduate thesis.
F0 = [1,0,1,0,2,3,0,1,1,2] and
F1 = [0,1,0,3,0,0,0,4,0,0],
which one is correct between newBundle = [4,8,4,10,5,6,0,11,4,5] as Algorithm 4 in the paper,
newBundle = [1,4,1,6,2,3,0,7,1,2], or newBundle = [1,4,1,6,2,3,0,1,1,2]?
I am sorry for asking too much questions. But I hope someone here can give me better understanding, thank you.
Edited:
The text was updated successfully, but these errors were encountered: