Replies: 1 comment 1 reply
-
Are you invoking |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
train_test_split from sklearn.model_selection is very popular, but it doesn't give what I expect. Example
now
data_train
is aList[awkward.highlevel.Record]
instead, I would have expected a
awkward.highlevel.Array
I can use
ak.merge_union_of_records(data_train, axis=0)
but it is extremely slow.Beta Was this translation helpful? Give feedback.
All reactions