Feature request
I was going the discussion of converting tensors to lists.
Is there a way to leverage pyarrow's Tensors for nested arrays / embeddings?
For example:
import pyarrow as pa
import numpy as np
x = np.array([[2, 2, 4], [4, 5, 100]], np.int32)
pa.Tensor.from_numpy(x, dim_names=["dim1","dim2"])
Apache docs
Maybe this belongs into the pyarrow features / repo.
Motivation
Working with big data, we need to make sure to use the best data structures and IO out there
Your contribution
Can try to a PR if code changes necessary
Feature request
I was going the discussion of converting tensors to lists.
Is there a way to leverage pyarrow's Tensors for nested arrays / embeddings?
For example:
Apache docs
Maybe this belongs into the pyarrow features / repo.
Motivation
Working with big data, we need to make sure to use the best data structures and IO out there
Your contribution
Can try to a PR if code changes necessary