Skip to content

Releases: pinecone-io/pinecone-datasets

0.7.0

16 Jan 14:31
9cd2821
Compare
Choose a tag to compare
Merge pull request #39 from pinecone-io/fix_cd

Fix release CI

Version 0.5

02 Jul 12:05
edec6fb
Compare
Choose a tag to compare

In this version we introduced new functionalities:

  • unified the dataframe implementation with pandas v2.0 with arrow
  • better separation for path/catalog loading with from_path and from_catalog functionalities
    • from_path(path) functionality to load a dataset from an arbitrary path (parquet files)
    • from_catalog(dataset_name) functionality to load from catalog
      • load_dataset using this functionality behind the scenes
  • adding loading from pandas dataframe with from_pandas
  • saving datasets is now supporting to_path and to_catalog
    • used internally to save more datasets to the pinecone catalog and support example notebooks
  • documents and queries dataframes are loading only when calling the property
  • to_pinecone_index functionality was added, supports creating a new index from a dataset, using client v2/v3
  • added more test support for all functionalities