Skip to content

v0.14.0

Compare
Choose a tag to compare
@lars-reimann lars-reimann released this 02 May 17:05
· 70 commits to main since this release

0.14.0 (2024-05-02)

Features

Bug Fixes

  • also handle literal types when computing upper bound (#1103) (3f1ab6f), closes #1081

⚠️ Breaking Changes ⚠️

  • Table.tagColumns is now called Table.toTabularDataset and expects names of extra columns instead of feature columns
    • Migration Step 1: Rename your call.
    • Migration Step 2: Rename the parameter featureNames to extraNames.
    • Migration Step 3: Specify everything that should be neither target nor feature in extraNames.
  • TaggedTable is now called TabularDataset and has a greatly reduced interface:
    • Migration: Finish processing your Table before you create a TabularDataset.
  • isFitted is now always an attribute instead of a function:
    • Migration: You must no longer call it.