github huggingface/datasets 2.21.0

latest release: 3.0.0
one month ago

Features

  • Support pyarrow large_list by @albertvillanova in #7019
    • Support Polars round trip:
      import polars as pl
      from datasets import Dataset
      
      df1 = pl.from_dict({"col_1": [[1, 2], [3, 4]]}
      df2 = Dataset.from_polars(df).to_polars()
      assert df1.equals(df2)

What's Changed

New Contributors

Full Changelog: 2.20.0...2.21.0

Don't miss a new datasets release

NewReleases is sending notifications on new releases.