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
agtboost does not scale well with large n and m.
In principle, it should scale as well as e.g. xgboost with algorithm set to exact.
There also seems to be problems with memory-consumption for large datasets.
Goal
Make agtboost scale well in n and m.
Suspission
I suspect this is due to the re-declarations/initializations of u_store and u vectors and cir calculations in split_information().
Find a smarter way to do these calculations. See if this fixes scalability issue.
The text was updated successfully, but these errors were encountered:
agtboost
does not scale well with largen
andm
.In principle, it should scale as well as e.g.
xgboost
with algorithm set toexact
.There also seems to be problems with memory-consumption for large datasets.
Goal
Make
agtboost
scale well inn
andm
.Suspission
I suspect this is due to the re-declarations/initializations of
u_store
andu
vectors andcir
calculations insplit_information()
.The text was updated successfully, but these errors were encountered: