jacketsj
jacketsj
switched branch, new pr at https://github.com/lancedb/lance/pull/2946
Thanks for the idea, although I'm currently convinced that it's from [this function](https://github.com/lancedb/lance/blob/main/python/python/lance/torch/data.py#L34), which copies data into numpy as an intermediary (at least in 0.16.1). That's similar to what I...
Try `split == 'test'`
I'm not sure if it does what you're expecting from `.filter`, but `ds.to_table(filter="split == 'test'")` should work if `split` is a column.
I get the same error. Putting a simple repro here: ``` import lance import pyarrow as pa table = pa.Table.from_pylist([{"name": "Alice", "age": 20}, {"name": "Bob", "age": 30}]) lance.write_dataset(table, "./alice_and_bob.lance", mode="overwrite")...