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
It would not be very difficult to update Glm to handle categorical columns natively: i.e. run them through LabelEncoder then pass that to a torch.nn.Embedding layer instead of torch.nn.Linear.
This would improve performance immensely for high-cardinality categorical features (esp. since sparse-matmul seems to be pretty slow).
The text was updated successfully, but these errors were encountered:
It would not be very difficult to update
Glm
to handle categorical columns natively: i.e. run them throughLabelEncoder
then pass that to atorch.nn.Embedding
layer instead oftorch.nn.Linear
.This would improve performance immensely for high-cardinality categorical features (esp. since sparse-matmul seems to be pretty slow).
The text was updated successfully, but these errors were encountered: