Skip to content

Commit

Permalink
Create release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Janek Ebbers authored and kieranparsons committed Aug 2, 2024
1 parent c55dc8d commit 0939a34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sebbs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ def sed_scores_from_sebbs(sebbs, sound_classes, audio_duration=None, fill_value=
if isinstance(sebbs, dict):
return {
key: sed_scores_from_sebbs(
preds_for_key, sound_classes, audio_duration[key] if audio_duration is not None else None
preds_for_key,
sound_classes,
audio_duration[key] if audio_duration is not None else None,
fill_value=fill_value,
)
for key, preds_for_key in sebbs.items()
}
Expand Down

0 comments on commit 0939a34

Please sign in to comment.