Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 3.09 KB

CHANGELOG.md

File metadata and controls

50 lines (36 loc) · 3.09 KB

Changelog

All notable changes to this project will be documented in this file. The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.1.2] - 2025-01-22

Added

  • Added documentation. (#24, #25, #26)
  • Added LISENCE file. (#29)

Changed

  • Relaxed the requirements for numpy, pandas, and h5py. (#27)

[0.1.1] - 2024-11-11

Added

  • Added set_train_domain, set_valid_domain, and set_test_domain methods to Data to set the domain and split masks at once. (#21)

Changed

  • Changed the keys method to keys() to be consistent with other packages. (#22)

Fixed

  • Fixed a bug where a LazyData object is instanitated, but the class does not exist, and Data should be used instead. (#17)
  • Fixed a bug where is_dijoint calls sort incorrectly causing an error when evaluating unsorted intervals. (#20)

[0.1.1] - 2024-06-17

Added

  • Added a domain_start attribute to the RegularTimeSeries object to simplify the creation of the domain. (#8)
  • Added an automated way of resolving domain for Data objects by infering it from the domains of its attributes. (#7)
  • Added documentation. (#6)
  • Added special keys with the _domain suffix. These keys are exluded from add_split_mask and _check_for_data_leakage. (#2)
  • Added warning when timestamps or start and end are not in np.float64 precision. (#5)
  • Added materialize method to lazy objects to load them directly to memory. (#3)

Changed

  • Changed slicing behavior in the RegularTimeSeries to make it more consistent with the IrregularTimeSeries object. (#4 #12)
  • Changed repr method of all objects to exclude split masks and domain attributes. (#10)

Deprecated

  • Deprecated trials as a special key that is not checked for data leakage. (#2)

Fixed

  • Fixed a bug where absolute_start was not saved to hdf5 files. (#9)

[0.1.0] - 2024-06-11

Added

  • Initial release of the package.