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
{{ message }}
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
my df consists of int_0 through int_12 for, I'm trying to turn these into an array of features, however
df["dense_features"] = functional.array_constructor(
*[df[int_name] for int_name in DEFAULT_INT_NAMES]
)
fails with
Based on this, it seems that it only supports up to 4 args.
When I restrict it down to this DEFAULT_INT_NAMES[:4], it works
The text was updated successfully, but these errors were encountered: