-
Does PyTorch tabular allows columns whose data type is an array, or a similar data type like Python Lists. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @dpvargas! I'm here to help with any questions or issues you have. I'm a bot designed to assist you with problem-solving and contributing. Let me know how I can assist you today! PyTorch Tabular does not explicitly support columns with data types like arrays or Python lists as input features. It primarily supports continuous, categorical, and date columns [1]. However, you can preprocess or transform array-like data types before using them in PyTorch Tabular. The To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
Hey @dpvargas! I'm here to help with any questions or issues you have. I'm a bot designed to assist you with problem-solving and contributing. Let me know how I can assist you today!
PyTorch Tabular does not explicitly support columns with data types like arrays or Python lists as input features. It primarily supports continuous, categorical, and date columns [1]. However, you can preprocess or transform array-like data types before using them in PyTorch Tabular. The
TabularDatamodule
class provides methods for encoding, transforming, and normalizing data, which can be adapted to handle array-like data by converting them into a supported format, such as separate continuous columns [2].T…