Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.2.3 -> 0.3.0 shims #153

Merged
merged 7 commits into from
May 13, 2017
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions jams/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
import copy
import sys

from decorator import decorator


from .version import version as __VERSION__
from . import schema
from .exceptions import JamsError, SchemaError, ParameterError
Expand All @@ -57,6 +60,29 @@
'FileMetadata', 'AnnotationArray', 'JAMS']


def deprecated(version, version_removed):
'''This is a decorator which can be used to mark functions
as deprecated.

It will result in a warning being emitted when the function is used.'''

def __wrapper(func, *args, **kwargs):
'''Warn the user, and then proceed.'''
code = six.get_function_code(func)
warnings.warn_explicit(
"{:s}.{:s}\n\tDeprecated as of JAMS version {:s}."
"\n\tIt will be removed in JAMS version {:s}."
.format(func.__module__, func.__name__,
version, version_removed),
category=DeprecationWarning,
filename=code.co_filename,
lineno=code.co_firstlineno + 1
)
return func(*args, **kwargs)

return decorator(__wrapper)


@contextlib.contextmanager
def _open(name_or_fdesc, mode='r', fmt='auto'):
'''An intelligent wrapper for ``open``.
Expand Down Expand Up @@ -711,6 +737,7 @@ def add_observation(self, time=None, duration=None,
self.drop(n, inplace=True, errors='ignore')
six.reraise(SchemaError, SchemaError(str(exc)), sys.exc_info()[2])

@deprecated('0.2.3', '0.3.0')
def to_interval_values(self):
'''Extract observation data in a `mir_eval`-friendly format.

Expand Down Expand Up @@ -1168,6 +1195,25 @@ def slice(self, start_time, end_time, strict=False):

return sliced_ann

def to_interval_values(self):
'''Extract observation data in a `mir_eval`-friendly format.

Returns
-------
intervals : np.ndarray [shape=(n, 2), dtype=float]
Start- and end-times of all valued intervals

`intervals[i, :] = [time[i], time[i] + duration[i]]`

labels : list
List view of value field.
'''

times = timedelta_to_float(self.data.time.values)
duration = timedelta_to_float(self.data.duration.values)

return np.vstack([times, times + duration]).T, list(self.data.value)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why np.vstack over np.array..?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to concatenate them along the second axis; historical style holdover from the days before arbitary concat support.

but this is getting wiped in #149 also.



class Curator(JObject):
"""Curator
Expand Down Expand Up @@ -1881,3 +1927,5 @@ def serialize_obj(obj):
return [serialize_obj(x) for x in obj]

return obj


10 changes: 5 additions & 5 deletions jams/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def pprint_jobject(obj, **kwargs):

def intervals(annotation, **kwargs):
'''Plotting wrapper for labeled intervals'''
times, labels = annotation.data.to_interval_values()
times, labels = annotation.to_interval_values()

return mir_eval.display.labeled_intervals(times, labels, **kwargs)

Expand All @@ -83,7 +83,7 @@ def pitch_contour(annotation, **kwargs):
# If the annotation is empty, we need to construct a new axes
ax = mir_eval.display.__get_axes(ax=ax)[0]

times, values = annotation.data.to_interval_values()
times, values = annotation.to_interval_values()

indices = np.unique([v['index'] for v in values])

Expand All @@ -102,7 +102,7 @@ def pitch_contour(annotation, **kwargs):
def event(annotation, **kwargs):
'''Plotting wrapper for events'''

times, values = annotation.data.to_interval_values()
times, values = annotation.to_interval_values()

if any(values):
labels = values
Expand All @@ -115,7 +115,7 @@ def event(annotation, **kwargs):
def beat_position(annotation, **kwargs):
'''Plotting wrapper for beat-position data'''

times, values = annotation.data.to_interval_values()
times, values = annotation.to_interval_values()

labels = [_['position'] for _ in values]

Expand All @@ -125,7 +125,7 @@ def beat_position(annotation, **kwargs):

def piano_roll(annotation, **kwargs):
'''Plotting wrapper for piano rolls'''
times, midi = annotation.data.to_interval_values()
times, midi = annotation.to_interval_values()

return mir_eval.display.piano_roll(times, midi=midi, **kwargs)

Expand Down
28 changes: 14 additions & 14 deletions jams/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def beat(ref, est, **kwargs):
namespace = 'beat'
ref = coerce_annotation(ref, namespace)
est = coerce_annotation(est, namespace)
ref_interval, _ = ref.data.to_interval_values()
est_interval, _ = est.data.to_interval_values()
ref_interval, _ = ref.to_interval_values()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ohgeez this is so much cleaner.

est_interval, _ = est.to_interval_values()

return mir_eval.beat.evaluate(ref_interval[:, 0], est_interval[:, 0], **kwargs)

Expand Down Expand Up @@ -145,8 +145,8 @@ def onset(ref, est, **kwargs):
namespace = 'onset'
ref = coerce_annotation(ref, namespace)
est = coerce_annotation(est, namespace)
ref_interval, _ = ref.data.to_interval_values()
est_interval, _ = est.data.to_interval_values()
ref_interval, _ = ref.to_interval_values()
est_interval, _ = est.to_interval_values()

return mir_eval.onset.evaluate(ref_interval[:, 0], est_interval[:, 0], **kwargs)

Expand Down Expand Up @@ -187,8 +187,8 @@ def chord(ref, est, **kwargs):
namespace = 'chord'
ref = coerce_annotation(ref, namespace)
est = coerce_annotation(est, namespace)
ref_interval, ref_value = ref.data.to_interval_values()
est_interval, est_value = est.data.to_interval_values()
ref_interval, ref_value = ref.to_interval_values()
est_interval, est_value = est.to_interval_values()

return mir_eval.chord.evaluate(ref_interval, ref_value,
est_interval, est_value, **kwargs)
Expand Down Expand Up @@ -229,8 +229,8 @@ def segment(ref, est, **kwargs):
namespace = 'segment_open'
ref = coerce_annotation(ref, namespace)
est = coerce_annotation(est, namespace)
ref_interval, ref_value = ref.data.to_interval_values()
est_interval, est_value = est.data.to_interval_values()
ref_interval, ref_value = ref.to_interval_values()
est_interval, est_value = est.to_interval_values()

return mir_eval.segment.evaluate(ref_interval, ref_value,
est_interval, est_value, **kwargs)
Expand All @@ -253,7 +253,7 @@ def hierarchy_flatten(annotation):
A list of lists of labels, ordered by increasing specificity.
'''

intervals, values = annotation.data.to_interval_values()
intervals, values = annotation.to_interval_values()

ordering = dict()

Expand Down Expand Up @@ -394,8 +394,8 @@ def melody(ref, est, **kwargs):
namespace = 'pitch_contour'
ref = coerce_annotation(ref, namespace)
est = coerce_annotation(est, namespace)
ref_interval, ref_p = ref.data.to_interval_values()
est_interval, est_p = est.data.to_interval_values()
ref_interval, ref_p = ref.to_interval_values()
est_interval, est_p = est.to_interval_values()

ref_freq = np.asarray([p['frequency'] * (-1)**(~p['voiced']) for p in ref_p])
est_freq = np.asarray([p['frequency'] * (-1)**(~p['voiced']) for p in est_p])
Expand Down Expand Up @@ -432,7 +432,7 @@ def pattern_to_mireval(ann):
patterns = defaultdict(lambda: defaultdict(list))

# Iterate over the data in interval-value format
for interval, observation in zip(*ann.data.to_interval_values()):
for interval, observation in zip(*ann.to_interval_values()):

pattern_id = observation['pattern_id']
occurrence_id = observation['occurrence_id']
Expand Down Expand Up @@ -525,8 +525,8 @@ def transcription(ref, est, **kwargs):
namespace = 'pitch_contour'
ref = coerce_annotation(ref, namespace)
est = coerce_annotation(est, namespace)
ref_intervals, ref_p = ref.data.to_interval_values()
est_intervals, est_p = est.data.to_interval_values()
ref_intervals, ref_p = ref.to_interval_values()
est_intervals, est_p = est.to_interval_values()

ref_pitches = np.asarray([p['frequency'] * (-1)**(~p['voiced']) for p in ref_p])
est_pitches = np.asarray([p['frequency'] * (-1)**(~p['voiced']) for p in est_p])
Expand Down
10 changes: 5 additions & 5 deletions jams/sonify.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def clicks(annotation, sr=22050, length=None, **kwargs):
events such as beats or segment boundaries.
'''

interval, _ = annotation.data.to_interval_values()
interval, _ = annotation.to_interval_values()

return filter_kwargs(mir_eval.sonify.clicks, interval[:, 0],
fs=sr, length=length, **kwargs)
Expand All @@ -56,7 +56,7 @@ def downbeat(annotation, sr=22050, length=None, **kwargs):
beat_click = mkclick(440 * 2, sr=sr)
downbeat_click = mkclick(440 * 3, sr=sr)

intervals, values = annotation.data.to_interval_values()
intervals, values = annotation.to_interval_values()

beats, downbeats = [], []

Expand Down Expand Up @@ -109,7 +109,7 @@ def chord(annotation, sr=22050, length=None, **kwargs):
This uses mir_eval.sonify.chords.
'''

intervals, chords = annotation.data.to_interval_values()
intervals, chords = annotation.to_interval_values()

return filter_kwargs(mir_eval.sonify.chords,
chords, intervals,
Expand All @@ -127,7 +127,7 @@ def pitch_contour(annotation, sr=22050, length=None, **kwargs):
are summed together.
'''

times, values = annotation.data.to_interval_values()
times, values = annotation.to_interval_values()

indices = np.unique([v['index'] for v in values])

Expand Down Expand Up @@ -159,7 +159,7 @@ def piano_roll(annotation, sr=22050, length=None, **kwargs):
namespace.
'''

intervals, pitches = annotation.data.to_interval_values()
intervals, pitches = annotation.to_interval_values()

# Construct the pitchogram
pitch_map = {f: idx for idx, f in enumerate(np.unique(pitches))}
Expand Down
1 change: 1 addition & 0 deletions jams/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
smkdirs
filebase
find_with_extension
_deprecated
"""

import os
Expand Down
6 changes: 3 additions & 3 deletions scripts/jams_to_lab.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import sys
import os
import json
import six
import pandas as pd

import jams
Expand Down Expand Up @@ -56,6 +55,7 @@ def get_comments(jam, ann):
'annotation metadata': ann_comments},
indent=2)


def lab_dump(ann, comment, filename, sep, comment_char):
'''Save an annotation as a lab/csv.

Expand All @@ -77,11 +77,11 @@ def lab_dump(ann, comment, filename, sep, comment_char):
The character used to denote comments
'''

intervals, values = ann.data.to_interval_values()
intervals, values = ann.to_interval_values()

frame = pd.DataFrame(columns=['Time', 'End Time', 'Label'],
data={'Time': intervals[:, 0],
'End Time': intervals[:, 1],
'End Time': intervals[:, 1],
'Label': values})

with open(filename, 'w') as fdesc:
Expand Down
27 changes: 24 additions & 3 deletions tests/jams_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,16 @@ def test_jamsframe_interval_values():

jf = jams.JamsFrame.from_dataframe(df)

intervals, values = jf.to_interval_values()
warnings.resetwarnings()
warnings.simplefilter('always')
with warnings.catch_warnings(record=True) as out:
intervals, values = jf.to_interval_values()
assert len(out) > 0
assert out[0].category is DeprecationWarning
assert 'deprecated' in str(out[0].message).lower()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice


assert np.allclose(intervals, np.array([[0.0, 1.0], [1.0, 3.0]]))
eq_(values, ['a', 'b'])
assert np.allclose(intervals, np.array([[0.0, 1.0], [1.0, 3.0]]))
eq_(values, ['a', 'b'])


def test_jamsframe_serialize():
Expand Down Expand Up @@ -369,6 +375,21 @@ def test_annotation_eq():

assert not (ann1 == ann2)


def test_annotation_interval_values():

data = dict(time=[0.0, 1.0],
duration=[1., 2.0],
value=['a', 'b'],
confidence=[0.9, 0.9])

ann = jams.Annotation(namespace='tag_open', data=data)

intervals, values = ann.to_interval_values()

assert np.allclose(intervals, np.array([[0.0, 1.0], [1.0, 3.0]]))
eq_(values, ['a', 'b'])

# FileMetadata

def test_filemetadata():
Expand Down