Releases: mbsantiago/soundevent
v2.3.0
v2.2.0
What's Changed
- Feat/segment clip by @mbsantiago in #15
- Feat/Add
is_in_clip
function tosoundevent.geometry.operations
by @mbsantiago in #16 - Feat/Add
adjust_dim_range
function tosoundevent.arrays.operations
by @mbsantiago in #17 - Feat/Add functions for sound event grouping by @mbsantiago in #18
Full Changelog: v2.1.1...v2.2.0
v2.1.1
Fixed dependencies issue
Full Changelog: v2.1.0...v2.1.1
v2.1.0
What's Changed
- Feat/terms: Introduce Term data model for standardized tags and features by @mbsantiago in #12
- Feat/more terms by @mbsantiago in #13
- Fix/ Correctly handle single-class targets in sound event detection evaluation by @mbsantiago in #14
Full Changelog: v2.0.1...v2.1.0
v2.0.1
v2.0.0
What's Changed
- Added io.crowsetta module by @mbsantiago in #3
- Implement soundevent.arrays Module for Enhanced DataArray Workflows by @mbsantiago in #7
- Enhancement: Expanded Audio Format Support with Soundfile by @mbsantiago in #8
- Enhancement: Rasterization of Geometries & Geometry Module Improvements by @mbsantiago in #9
- Enhancement: Plotting Functionality for Geometries, Annotations, and Predictions by @mbsantiago in #10
Full Changelog: v1.3.5...v2.0.0
v1.3.5
Release Notes
Bug Fixes:
- Sound Event Detection evaluation failed due to bad indexing. The code was fixed and a test was created to make sure the evaluation code runs on an example based on the NIPS dataset.
v1.3.4
Release v1.3.4 Notes
Fixed a small issue with the dependencies. Downgraded scikit-learn to make it python 3.8 compatible.
v1.3.3
Release v1.3.3 Notes
Changes
- Dependency Update:
- Removed librosa as a dependency due to its inclusion of numba.
Functionality
-
Function Extraction:
- Extracted and implemented specific functions directly into the soundevent package from the librosa.core.spectrum module.
The following functions have been included:
- amplitude_to_db
- db_to_amplitude
- db_to_power
- pcen
This modification allows users to benefit from these functions without the need for the entire librosa library.
Acknowledgements
Special thanks to the librosa development team for their original work and contributions.
v1.3.2
Release Notes
Bug Fix:
- Relaxed Validation for LineString Geometries:
The validation condition for LineString geometries has been adjusted to improve flexibility. Previously, only fully ordered linestrings with a monotonically increasing time coordinate sequence were accepted. However, this stringent requirement has been reconsidered and modified. The validation now checks that the starting time is earlier than the ending point, providing a more permissive approach without compromising data integrity.