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 feel these are more nuanced use-cases and form the question, I assume you are trying to sue this for recommendation systems?
PyTorch Tabular is more geared towards standard tabular problems like classification and regression. That is why multi-hot categorical features aren't supported out of the box.
Adding support for Text and Sequence Features is a good idea and I'm all for it. It should be easy enough to include and parametrize that. As things stand now, you can implement custom models to include such features..
thanks, i am doing classification and regression probs, in real world big scale data, actually there always exists multi-value data, looking forward for text and sequence features support~
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
text features:
use text encoder as an embedding input, can join with continuous feature to feed to existed models
multi-value category features
like [a, b, c], can process similar to categorical features, but with pooling to sum its embeddings
sequence features
like [s1,s2,...sn], can use embedding an attention
The text was updated successfully, but these errors were encountered: