Skip to content

Commit

Permalink
Merge pull request #73 from DIDONEproject/develop
Browse files Browse the repository at this point in the history
fix for double_dotted_rhythm
  • Loading branch information
CarlosVaquero authored Sep 24, 2024
2 parents 5bd1a59 + 3946154 commit a082247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions musif/extract/features/rhythm/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ def update_score_objects(
]
double_dotted_rhythm.append(part_features[DOUBLE_DOTTEDRHYTHM])



dotted_rhythm = [i for i in dotted_rhythm if i not in (0.0, "NA")]
double_dotted_rhythm = [i for i in double_dotted_rhythm if i not in (0.0, "NA")]

features.update(
{
# get_score_feature(AVERAGE_DURATION): mean(average_durations),
Expand Down

0 comments on commit a082247

Please sign in to comment.