Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Mar 22, 2024
1 parent 037d890 commit 74b19e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mir_eval/transcription_velocity.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def match_notes(
slope, intercept = np.linalg.lstsq(
np.vstack([est_matched_velocities, np.ones(len(est_matched_velocities))]).T,
ref_matched_velocities,
rcond=None
rcond=None,
)[0]
# Re-scale est velocities to match ref
est_matched_velocities = slope * est_matched_velocities + intercept
Expand Down

0 comments on commit 74b19e8

Please sign in to comment.