Skip to content

Releases: vocalpy/vak

1.0.3

25 Oct 14:42
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.2...1.0.3

1.0.2

24 Oct 18:59
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.1...1.0.2

1.0.1

06 Jul 21:14
Compare
Choose a tag to compare

What's Changed

  • DEV: Require Python>=3.10, update other dependencies by @NickleDave in #765
  • BUG: minor fixes to run with biosoundsegbench dataset by @NickleDave in #766

Full Changelog: 1.0.0...1.0.1

1.0.0

11 May 13:15
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.8.2...1.0.0

0.8.2

02 Oct 23:31
Compare
Choose a tag to compare

What's Changed

  • BUG: fix default for post_tfm_kwargs, fixes Inconsistent syllable error by @zhileiz1992 in #710

New Contributors

Full Changelog: 0.8.1...0.8.2

1.0.0a3

23 Sep 17:52
Compare
Choose a tag to compare
1.0.0a3 Pre-release
Pre-release

What's Changed

Full Changelog: 1.0.0a2...1.0.0a3

1.0.0a2

20 Sep 22:47
Compare
Choose a tag to compare
1.0.0a2 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: 0.8.0...1.0.0a2

1.0.0a1

04 Aug 12:49
Compare
Choose a tag to compare
1.0.0a1 Pre-release
Pre-release

What's Changed

Full Changelog: 0.8.0...1.0.0a1

0.8.1

02 Oct 23:31
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.8.0...0.8.1

0.8.0

10 Feb 00:35
Compare
Choose a tag to compare

0.8.0 release notes

2023-02-09

Added

  • Add options for how audio.to_spect calls dask.bag, to help with memory issues when processing large files
    #611. Fixes #580.
  • Add ability to run evaluation of models with and without post-processing transforms. This is done by specifying an option post_tfm_kwargs in the [EVAL] or [LEARNCURVE] sections of a .toml configuration file. If the option is not specified, then models are evaluated as they were previously, by converting the predicted label for each time bin to a label for each continuous segment, represented as a string. If the option is specified, then the post-processing is applied to the model predictions before converting to strings. Metrics are computed for outputs with and without post-processing, to be able to compare the two. #621. Fixes #472.
  • vak.core.eval now logs computed evaluation metrics so they can be quickly inspected in the terminal or log files before full analysis
    #621. Fixes #471.

Changed

  • Rewrite post-processing transforms applied to network outputs as transforms, with functional and class implementations,
    to make it possible to compose these transforms, and more easily evaluate model performance with and without them
    #621. Fixes #537.