mamscience
mamscience
Thanks, apparently, changing the numpy type to float and passing "None" also did the trick. ``` schema = tiledb.ArraySchema( domain=dom, sparse=True, attrs=[ tiledb.Attr(name="a, dtype=np.int32, nullable=True), tiledb.Attr(name="b", dtype=np.float32, nullable=True) ] )...
The underlying issue btw is that I must pass all attributes when writing to array, while (my) sparse arrays are mostly empty. Solving this issue by relaxing the constraints (https://github.com/TileDB-Inc/TileDB/issues/1162#issue-425631917)...
Really looking forward to this feature. https://github.com/mfts/papermark/pull/243