partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
test
align_times
Aligns the times to the closest frame times (e.g. beats). Parameters ---------- times: np.ndarray Times in seconds to be aligned. frames: np.ndarray Frame times in seconds. Returns ------- aligned_times: np.ndarray Aligned times.
msaf/input_output.py
def align_times(times, frames): """Aligns the times to the closest frame times (e.g. beats). Parameters ---------- times: np.ndarray Times in seconds to be aligned. frames: np.ndarray Frame times in seconds. Returns ------- aligned_times: np.ndarray Aligned time...
def align_times(times, frames): """Aligns the times to the closest frame times (e.g. beats). Parameters ---------- times: np.ndarray Times in seconds to be aligned. frames: np.ndarray Frame times in seconds. Returns ------- aligned_times: np.ndarray Aligned time...
[ "Aligns", "the", "times", "to", "the", "closest", "frame", "times", "(", "e", ".", "g", ".", "beats", ")", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L141-L159
[ "def", "align_times", "(", "times", ",", "frames", ")", ":", "dist", "=", "np", ".", "minimum", ".", "outer", "(", "times", ",", "frames", ")", "bound_frames", "=", "np", ".", "argmax", "(", "np", ".", "maximum", "(", "0", ",", "dist", ")", ",", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
find_estimation
Finds the correct estimation from all the estimations contained in a JAMS file given the specified arguments. Parameters ---------- jam : jams.JAMS JAMS object. boundaries_id : str Identifier of the algorithm used to compute the boundaries. labels_id : str Identifier of ...
msaf/input_output.py
def find_estimation(jam, boundaries_id, labels_id, params): """Finds the correct estimation from all the estimations contained in a JAMS file given the specified arguments. Parameters ---------- jam : jams.JAMS JAMS object. boundaries_id : str Identifier of the algorithm used to...
def find_estimation(jam, boundaries_id, labels_id, params): """Finds the correct estimation from all the estimations contained in a JAMS file given the specified arguments. Parameters ---------- jam : jams.JAMS JAMS object. boundaries_id : str Identifier of the algorithm used to...
[ "Finds", "the", "correct", "estimation", "from", "all", "the", "estimations", "contained", "in", "a", "JAMS", "file", "given", "the", "specified", "arguments", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L162-L209
[ "def", "find_estimation", "(", "jam", ",", "boundaries_id", ",", "labels_id", ",", "params", ")", ":", "# Use handy JAMS search interface", "namespace", "=", "\"multi_segment\"", "if", "params", "[", "\"hier\"", "]", "else", "\"segment_open\"", "# TODO: This is a workar...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
save_estimations
Saves the segment estimations in a JAMS file. Parameters ---------- file_struct : FileStruct Object with the different file paths of the current file. times : np.array or list Estimated boundary times. If `list`, estimated hierarchical boundaries. labels : np.array(N, 2) ...
msaf/input_output.py
def save_estimations(file_struct, times, labels, boundaries_id, labels_id, **params): """Saves the segment estimations in a JAMS file. Parameters ---------- file_struct : FileStruct Object with the different file paths of the current file. times : np.array or list ...
def save_estimations(file_struct, times, labels, boundaries_id, labels_id, **params): """Saves the segment estimations in a JAMS file. Parameters ---------- file_struct : FileStruct Object with the different file paths of the current file. times : np.array or list ...
[ "Saves", "the", "segment", "estimations", "in", "a", "JAMS", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L212-L303
[ "def", "save_estimations", "(", "file_struct", ",", "times", ",", "labels", ",", "boundaries_id", ",", "labels_id", ",", "*", "*", "params", ")", ":", "# Remove features if they exist", "params", ".", "pop", "(", "\"features\"", ",", "None", ")", "# Get duration...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_all_boundary_algorithms
Gets all the possible boundary algorithms in MSAF. Returns ------- algo_ids : list List of all the IDs of boundary algorithms (strings).
msaf/input_output.py
def get_all_boundary_algorithms(): """Gets all the possible boundary algorithms in MSAF. Returns ------- algo_ids : list List of all the IDs of boundary algorithms (strings). """ algo_ids = [] for name in msaf.algorithms.__all__: module = eval(msaf.algorithms.__name__ + "." ...
def get_all_boundary_algorithms(): """Gets all the possible boundary algorithms in MSAF. Returns ------- algo_ids : list List of all the IDs of boundary algorithms (strings). """ algo_ids = [] for name in msaf.algorithms.__all__: module = eval(msaf.algorithms.__name__ + "." ...
[ "Gets", "all", "the", "possible", "boundary", "algorithms", "in", "MSAF", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L306-L319
[ "def", "get_all_boundary_algorithms", "(", ")", ":", "algo_ids", "=", "[", "]", "for", "name", "in", "msaf", ".", "algorithms", ".", "__all__", ":", "module", "=", "eval", "(", "msaf", ".", "algorithms", ".", "__name__", "+", "\".\"", "+", "name", ")", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_all_label_algorithms
Gets all the possible label (structural grouping) algorithms in MSAF. Returns ------- algo_ids : list List of all the IDs of label algorithms (strings).
msaf/input_output.py
def get_all_label_algorithms(): """Gets all the possible label (structural grouping) algorithms in MSAF. Returns ------- algo_ids : list List of all the IDs of label algorithms (strings). """ algo_ids = [] for name in msaf.algorithms.__all__: module = eval(msaf.algorithms.__...
def get_all_label_algorithms(): """Gets all the possible label (structural grouping) algorithms in MSAF. Returns ------- algo_ids : list List of all the IDs of label algorithms (strings). """ algo_ids = [] for name in msaf.algorithms.__all__: module = eval(msaf.algorithms.__...
[ "Gets", "all", "the", "possible", "label", "(", "structural", "grouping", ")", "algorithms", "in", "MSAF", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L322-L335
[ "def", "get_all_label_algorithms", "(", ")", ":", "algo_ids", "=", "[", "]", "for", "name", "in", "msaf", ".", "algorithms", ".", "__all__", ":", "module", "=", "eval", "(", "msaf", ".", "algorithms", ".", "__name__", "+", "\".\"", "+", "name", ")", "i...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_configuration
Gets the configuration dictionary from the current parameters of the algorithms to be evaluated.
msaf/input_output.py
def get_configuration(feature, annot_beats, framesync, boundaries_id, labels_id): """Gets the configuration dictionary from the current parameters of the algorithms to be evaluated.""" config = {} config["annot_beats"] = annot_beats config["feature"] = feature config["frame...
def get_configuration(feature, annot_beats, framesync, boundaries_id, labels_id): """Gets the configuration dictionary from the current parameters of the algorithms to be evaluated.""" config = {} config["annot_beats"] = annot_beats config["feature"] = feature config["frame...
[ "Gets", "the", "configuration", "dictionary", "from", "the", "current", "parameters", "of", "the", "algorithms", "to", "be", "evaluated", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L338-L363
[ "def", "get_configuration", "(", "feature", ",", "annot_beats", ",", "framesync", ",", "boundaries_id", ",", "labels_id", ")", ":", "config", "=", "{", "}", "config", "[", "\"annot_beats\"", "]", "=", "annot_beats", "config", "[", "\"feature\"", "]", "=", "f...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_dataset_files
Gets the files of the given dataset.
msaf/input_output.py
def get_dataset_files(in_path): """Gets the files of the given dataset.""" # Get audio files audio_files = [] for ext in ds_config.audio_exts: audio_files += glob.glob( os.path.join(in_path, ds_config.audio_dir, "*" + ext)) # Make sure directories exist utils.ensure_dir(os.p...
def get_dataset_files(in_path): """Gets the files of the given dataset.""" # Get audio files audio_files = [] for ext in ds_config.audio_exts: audio_files += glob.glob( os.path.join(in_path, ds_config.audio_dir, "*" + ext)) # Make sure directories exist utils.ensure_dir(os.p...
[ "Gets", "the", "files", "of", "the", "given", "dataset", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L366-L388
[ "def", "get_dataset_files", "(", "in_path", ")", ":", "# Get audio files", "audio_files", "=", "[", "]", "for", "ext", "in", "ds_config", ".", "audio_exts", ":", "audio_files", "+=", "glob", ".", "glob", "(", "os", ".", "path", ".", "join", "(", "in_path",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
read_hier_references
Reads hierarchical references from a jams file. Parameters ---------- jams_file : str Path to the jams file. annotation_id : int > 0 Identifier of the annotator to read from. exclude_levels: list List of levels to exclude. Empty list to include all levels. Returns -...
msaf/input_output.py
def read_hier_references(jams_file, annotation_id=0, exclude_levels=[]): """Reads hierarchical references from a jams file. Parameters ---------- jams_file : str Path to the jams file. annotation_id : int > 0 Identifier of the annotator to read from. exclude_levels: list ...
def read_hier_references(jams_file, annotation_id=0, exclude_levels=[]): """Reads hierarchical references from a jams file. Parameters ---------- jams_file : str Path to the jams file. annotation_id : int > 0 Identifier of the annotator to read from. exclude_levels: list ...
[ "Reads", "hierarchical", "references", "from", "a", "jams", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L391-L434
[ "def", "read_hier_references", "(", "jams_file", ",", "annotation_id", "=", "0", ",", "exclude_levels", "=", "[", "]", ")", ":", "hier_bounds", "=", "[", "]", "hier_labels", "=", "[", "]", "hier_levels", "=", "[", "]", "jam", "=", "jams", ".", "load", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_duration
Reads the duration of a given features file. Parameters ---------- features_file: str Path to the JSON file containing the features. Returns ------- dur: float Duration of the analyzed file.
msaf/input_output.py
def get_duration(features_file): """Reads the duration of a given features file. Parameters ---------- features_file: str Path to the JSON file containing the features. Returns ------- dur: float Duration of the analyzed file. """ with open(features_file) as f: ...
def get_duration(features_file): """Reads the duration of a given features file. Parameters ---------- features_file: str Path to the JSON file containing the features. Returns ------- dur: float Duration of the analyzed file. """ with open(features_file) as f: ...
[ "Reads", "the", "duration", "of", "a", "given", "features", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L437-L452
[ "def", "get_duration", "(", "features_file", ")", ":", "with", "open", "(", "features_file", ")", "as", "f", ":", "feats", "=", "json", ".", "load", "(", "f", ")", "return", "float", "(", "feats", "[", "\"globals\"", "]", "[", "\"dur\"", "]", ")" ]
9dbb57d77a1310465a65cc40f1641d083ca74385
test
write_mirex
Writes results to file using the standard MIREX format. Parameters ---------- times: np.array Times in seconds of the boundaries. labels: np.array Labels associated to the segments defined by the boundaries. out_file: str Output file path to save the results.
msaf/input_output.py
def write_mirex(times, labels, out_file): """Writes results to file using the standard MIREX format. Parameters ---------- times: np.array Times in seconds of the boundaries. labels: np.array Labels associated to the segments defined by the boundaries. out_file: str Outp...
def write_mirex(times, labels, out_file): """Writes results to file using the standard MIREX format. Parameters ---------- times: np.array Times in seconds of the boundaries. labels: np.array Labels associated to the segments defined by the boundaries. out_file: str Outp...
[ "Writes", "results", "to", "file", "using", "the", "standard", "MIREX", "format", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L455-L473
[ "def", "write_mirex", "(", "times", ",", "labels", ",", "out_file", ")", ":", "inters", "=", "msaf", ".", "utils", ".", "times_to_intervals", "(", "times", ")", "assert", "len", "(", "inters", ")", "==", "len", "(", "labels", ")", "out_str", "=", "\"\"...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
FileStruct._get_dataset_file
Gets the desired dataset file.
msaf/input_output.py
def _get_dataset_file(self, dir, ext): """Gets the desired dataset file.""" audio_file_ext = "." + self.audio_file.split(".")[-1] base_file = os.path.basename(self.audio_file).replace( audio_file_ext, ext) return os.path.join(self.ds_path, dir, base_file)
def _get_dataset_file(self, dir, ext): """Gets the desired dataset file.""" audio_file_ext = "." + self.audio_file.split(".")[-1] base_file = os.path.basename(self.audio_file).replace( audio_file_ext, ext) return os.path.join(self.ds_path, dir, base_file)
[ "Gets", "the", "desired", "dataset", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/input_output.py#L38-L43
[ "def", "_get_dataset_file", "(", "self", ",", "dir", ",", "ext", ")", ":", "audio_file_ext", "=", "\".\"", "+", "self", ".", "audio_file", ".", "split", "(", "\".\"", ")", "[", "-", "1", "]", "base_file", "=", "os", ".", "path", ".", "basename", "(",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Segmenter.processFlat
Main process. Returns ------- est_idxs : np.array(N) Estimated indeces the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments.
msaf/algorithms/example/segmenter.py
def processFlat(self): """Main process. Returns ------- est_idxs : np.array(N) Estimated indeces the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments. """ # Preprocess to obtain features (arr...
def processFlat(self): """Main process. Returns ------- est_idxs : np.array(N) Estimated indeces the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments. """ # Preprocess to obtain features (arr...
[ "Main", "process", ".", "Returns", "-------", "est_idxs", ":", "np", ".", "array", "(", "N", ")", "Estimated", "indeces", "the", "segment", "boundaries", "in", "frame", "indeces", ".", "est_labels", ":", "np", ".", "array", "(", "N", "-", "1", ")", "Es...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/example/segmenter.py#L9-L35
[ "def", "processFlat", "(", "self", ")", ":", "# Preprocess to obtain features (array(n_frames, n_features))", "F", "=", "self", ".", "_preprocess", "(", ")", "# Do something with the default parameters", "# (these are defined in the in the config.py file).", "assert", "self", "."...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
align_segmentation
Load a ground-truth segmentation, and align times to the nearest detected beats. Arguments: beat_times -- array song -- path to the audio file Returns: segment_beats -- array beat-aligned segment boundaries segment_times -- array true segment times ...
msaf/algorithms/olda/make_train.py
def align_segmentation(beat_times, song): '''Load a ground-truth segmentation, and align times to the nearest detected beats. Arguments: beat_times -- array song -- path to the audio file Returns: segment_beats -- array beat-aligned segment boundaries segme...
def align_segmentation(beat_times, song): '''Load a ground-truth segmentation, and align times to the nearest detected beats. Arguments: beat_times -- array song -- path to the audio file Returns: segment_beats -- array beat-aligned segment boundaries segme...
[ "Load", "a", "ground", "-", "truth", "segmentation", "and", "align", "times", "to", "the", "nearest", "detected", "beats", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/olda/make_train.py#L18-L75
[ "def", "align_segmentation", "(", "beat_times", ",", "song", ")", ":", "try", ":", "segment_times", ",", "segment_labels", "=", "msaf", ".", "io", ".", "read_references", "(", "song", ")", "except", ":", "return", "None", ",", "None", ",", "None", "segment...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.estimate_beats
Estimates the beats using librosa. Returns ------- times: np.array Times of estimated beats in seconds. frames: np.array Frame indeces of estimated beats.
msaf/base.py
def estimate_beats(self): """Estimates the beats using librosa. Returns ------- times: np.array Times of estimated beats in seconds. frames: np.array Frame indeces of estimated beats. """ # Compute harmonic-percussive source separation if ...
def estimate_beats(self): """Estimates the beats using librosa. Returns ------- times: np.array Times of estimated beats in seconds. frames: np.array Frame indeces of estimated beats. """ # Compute harmonic-percussive source separation if ...
[ "Estimates", "the", "beats", "using", "librosa", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L112-L140
[ "def", "estimate_beats", "(", "self", ")", ":", "# Compute harmonic-percussive source separation if needed", "if", "self", ".", "_audio_percussive", "is", "None", ":", "self", ".", "_audio_harmonic", ",", "self", ".", "_audio_percussive", "=", "self", ".", "compute_HP...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.read_ann_beats
Reads the annotated beats if available. Returns ------- times: np.array Times of annotated beats in seconds. frames: np.array Frame indeces of annotated beats.
msaf/base.py
def read_ann_beats(self): """Reads the annotated beats if available. Returns ------- times: np.array Times of annotated beats in seconds. frames: np.array Frame indeces of annotated beats. """ times, frames = (None, None) # Read a...
def read_ann_beats(self): """Reads the annotated beats if available. Returns ------- times: np.array Times of annotated beats in seconds. frames: np.array Frame indeces of annotated beats. """ times, frames = (None, None) # Read a...
[ "Reads", "the", "annotated", "beats", "if", "available", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L142-L172
[ "def", "read_ann_beats", "(", "self", ")", ":", "times", ",", "frames", "=", "(", "None", ",", "None", ")", "# Read annotations if they exist in correct folder", "if", "os", ".", "path", ".", "isfile", "(", "self", ".", "file_struct", ".", "ref_file", ")", "...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.compute_beat_sync_features
Make the features beat-synchronous. Parameters ---------- beat_frames: np.array The frame indeces of the beat positions. beat_times: np.array The time points of the beat positions (in seconds). pad: boolean If `True`, `beat_frames` is padded t...
msaf/base.py
def compute_beat_sync_features(self, beat_frames, beat_times, pad): """Make the features beat-synchronous. Parameters ---------- beat_frames: np.array The frame indeces of the beat positions. beat_times: np.array The time points of the beat positions (in ...
def compute_beat_sync_features(self, beat_frames, beat_times, pad): """Make the features beat-synchronous. Parameters ---------- beat_frames: np.array The frame indeces of the beat positions. beat_times: np.array The time points of the beat positions (in ...
[ "Make", "the", "features", "beat", "-", "synchronous", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L174-L207
[ "def", "compute_beat_sync_features", "(", "self", ",", "beat_frames", ",", "beat_times", ",", "pad", ")", ":", "if", "beat_frames", "is", "None", ":", "return", "None", ",", "None", "# Make beat synchronous", "beatsync_feats", "=", "librosa", ".", "util", ".", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.read_features
Reads the features from a file and stores them in the current object. Parameters ---------- tol: float Tolerance level to detect duration of audio.
msaf/base.py
def read_features(self, tol=1e-3): """Reads the features from a file and stores them in the current object. Parameters ---------- tol: float Tolerance level to detect duration of audio. """ try: # Read JSON file with open(self....
def read_features(self, tol=1e-3): """Reads the features from a file and stores them in the current object. Parameters ---------- tol: float Tolerance level to detect duration of audio. """ try: # Read JSON file with open(self....
[ "Reads", "the", "features", "from", "a", "file", "and", "stores", "them", "in", "the", "current", "object", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L209-L282
[ "def", "read_features", "(", "self", ",", "tol", "=", "1e-3", ")", ":", "try", ":", "# Read JSON file", "with", "open", "(", "self", ".", "file_struct", ".", "features_file", ")", "as", "f", ":", "feats", "=", "json", ".", "load", "(", "f", ")", "# S...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.write_features
Saves features to file.
msaf/base.py
def write_features(self): """Saves features to file.""" out_json = collections.OrderedDict() try: # Only save the necessary information self.read_features() except (WrongFeaturesFormatError, FeaturesNotFound, NoFeaturesFileError): # We ...
def write_features(self): """Saves features to file.""" out_json = collections.OrderedDict() try: # Only save the necessary information self.read_features() except (WrongFeaturesFormatError, FeaturesNotFound, NoFeaturesFileError): # We ...
[ "Saves", "features", "to", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L284-L343
[ "def", "write_features", "(", "self", ")", ":", "out_json", "=", "collections", ".", "OrderedDict", "(", ")", "try", ":", "# Only save the necessary information", "self", ".", "read_features", "(", ")", "except", "(", "WrongFeaturesFormatError", ",", "FeaturesNotFou...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.get_param_names
Returns the parameter names for these features, avoiding the global parameters.
msaf/base.py
def get_param_names(self): """Returns the parameter names for these features, avoiding the global parameters.""" return [name for name in vars(self) if not name.startswith('_') and name not in self._global_param_names]
def get_param_names(self): """Returns the parameter names for these features, avoiding the global parameters.""" return [name for name in vars(self) if not name.startswith('_') and name not in self._global_param_names]
[ "Returns", "the", "parameter", "names", "for", "these", "features", "avoiding", "the", "global", "parameters", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L345-L349
[ "def", "get_param_names", "(", "self", ")", ":", "return", "[", "name", "for", "name", "in", "vars", "(", "self", ")", "if", "not", "name", ".", "startswith", "(", "'_'", ")", "and", "name", "not", "in", "self", ".", "_global_param_names", "]" ]
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features._compute_framesync_times
Computes the framesync times based on the framesync features.
msaf/base.py
def _compute_framesync_times(self): """Computes the framesync times based on the framesync features.""" self._framesync_times = librosa.core.frames_to_time( np.arange(self._framesync_features.shape[0]), self.sr, self.hop_length)
def _compute_framesync_times(self): """Computes the framesync times based on the framesync features.""" self._framesync_times = librosa.core.frames_to_time( np.arange(self._framesync_features.shape[0]), self.sr, self.hop_length)
[ "Computes", "the", "framesync", "times", "based", "on", "the", "framesync", "features", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L351-L355
[ "def", "_compute_framesync_times", "(", "self", ")", ":", "self", ".", "_framesync_times", "=", "librosa", ".", "core", ".", "frames_to_time", "(", "np", ".", "arange", "(", "self", ".", "_framesync_features", ".", "shape", "[", "0", "]", ")", ",", "self",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features._compute_all_features
Computes all the features (beatsync, framesync) from the audio.
msaf/base.py
def _compute_all_features(self): """Computes all the features (beatsync, framesync) from the audio.""" # Read actual audio waveform self._audio, _ = librosa.load(self.file_struct.audio_file, sr=self.sr) # Get duration of audio file self.dur ...
def _compute_all_features(self): """Computes all the features (beatsync, framesync) from the audio.""" # Read actual audio waveform self._audio, _ = librosa.load(self.file_struct.audio_file, sr=self.sr) # Get duration of audio file self.dur ...
[ "Computes", "all", "the", "features", "(", "beatsync", "framesync", ")", "from", "the", "audio", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L357-L383
[ "def", "_compute_all_features", "(", "self", ")", ":", "# Read actual audio waveform", "self", ".", "_audio", ",", "_", "=", "librosa", ".", "load", "(", "self", ".", "file_struct", ".", "audio_file", ",", "sr", "=", "self", ".", "sr", ")", "# Get duration o...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.frame_times
This getter returns the frame times, for the corresponding type of features.
msaf/base.py
def frame_times(self): """This getter returns the frame times, for the corresponding type of features.""" frame_times = None # Make sure we have already computed the features self.features if self.feat_type is FeatureTypes.framesync: self._compute_framesync_ti...
def frame_times(self): """This getter returns the frame times, for the corresponding type of features.""" frame_times = None # Make sure we have already computed the features self.features if self.feat_type is FeatureTypes.framesync: self._compute_framesync_ti...
[ "This", "getter", "returns", "the", "frame", "times", "for", "the", "corresponding", "type", "of", "features", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L386-L400
[ "def", "frame_times", "(", "self", ")", ":", "frame_times", "=", "None", "# Make sure we have already computed the features", "self", ".", "features", "if", "self", ".", "feat_type", "is", "FeatureTypes", ".", "framesync", ":", "self", ".", "_compute_framesync_times",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.features
This getter will compute the actual features if they haven't been computed yet. Returns ------- features: np.array The actual features. Each row corresponds to a feature vector.
msaf/base.py
def features(self): """This getter will compute the actual features if they haven't been computed yet. Returns ------- features: np.array The actual features. Each row corresponds to a feature vector. """ # Compute features if needed if self._...
def features(self): """This getter will compute the actual features if they haven't been computed yet. Returns ------- features: np.array The actual features. Each row corresponds to a feature vector. """ # Compute features if needed if self._...
[ "This", "getter", "will", "compute", "the", "actual", "features", "if", "they", "haven", "t", "been", "computed", "yet", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L403-L447
[ "def", "features", "(", "self", ")", ":", "# Compute features if needed", "if", "self", ".", "_features", "is", "None", ":", "try", ":", "self", ".", "read_features", "(", ")", "except", "(", "NoFeaturesFileError", ",", "FeaturesNotFound", ",", "WrongFeaturesFor...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Features.select_features
Selects the features from the given parameters. Parameters ---------- features_id: str The identifier of the features (it must be a key inside the `features_registry`) file_struct: msaf.io.FileStruct The file struct containing the files to extract the...
msaf/base.py
def select_features(cls, features_id, file_struct, annot_beats, framesync): """Selects the features from the given parameters. Parameters ---------- features_id: str The identifier of the features (it must be a key inside the `features_registry`) file_str...
def select_features(cls, features_id, file_struct, annot_beats, framesync): """Selects the features from the given parameters. Parameters ---------- features_id: str The identifier of the features (it must be a key inside the `features_registry`) file_str...
[ "Selects", "the", "features", "from", "the", "given", "parameters", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/base.py#L450-L485
[ "def", "select_features", "(", "cls", ",", "features_id", ",", "file_struct", ",", "annot_beats", ",", "framesync", ")", ":", "if", "not", "annot_beats", "and", "framesync", ":", "feat_type", "=", "FeatureTypes", ".", "framesync", "elif", "annot_beats", "and", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
SegmenterInterface._preprocess
This method obtains the actual features.
msaf/algorithms/interface.py
def _preprocess(self, valid_features=["pcp", "tonnetz", "mfcc", "cqt", "tempogram"]): """This method obtains the actual features.""" # Use specific feature if self.feature_str not in valid_features: raise RuntimeError("Feature %s in not valid...
def _preprocess(self, valid_features=["pcp", "tonnetz", "mfcc", "cqt", "tempogram"]): """This method obtains the actual features.""" # Use specific feature if self.feature_str not in valid_features: raise RuntimeError("Feature %s in not valid...
[ "This", "method", "obtains", "the", "actual", "features", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/interface.py#L85-L100
[ "def", "_preprocess", "(", "self", ",", "valid_features", "=", "[", "\"pcp\"", ",", "\"tonnetz\"", ",", "\"mfcc\"", ",", "\"cqt\"", ",", "\"tempogram\"", "]", ")", ":", "# Use specific feature", "if", "self", ".", "feature_str", "not", "in", "valid_features", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
SegmenterInterface._postprocess
Post processes the estimations from the algorithm, removing empty segments and making sure the lenghts of the boundaries and labels match.
msaf/algorithms/interface.py
def _postprocess(self, est_idxs, est_labels): """Post processes the estimations from the algorithm, removing empty segments and making sure the lenghts of the boundaries and labels match.""" # Make sure we are using the previously input bounds, if any if self.in_bound_idxs is not...
def _postprocess(self, est_idxs, est_labels): """Post processes the estimations from the algorithm, removing empty segments and making sure the lenghts of the boundaries and labels match.""" # Make sure we are using the previously input bounds, if any if self.in_bound_idxs is not...
[ "Post", "processes", "the", "estimations", "from", "the", "algorithm", "removing", "empty", "segments", "and", "making", "sure", "the", "lenghts", "of", "the", "boundaries", "and", "labels", "match", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/interface.py#L102-L123
[ "def", "_postprocess", "(", "self", ",", "est_idxs", ",", "est_labels", ")", ":", "# Make sure we are using the previously input bounds, if any", "if", "self", ".", "in_bound_idxs", "is", "not", "None", ":", "F", "=", "self", ".", "_preprocess", "(", ")", "est_lab...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process
Sweeps parameters across the specified algorithm.
examples/run_sweep.py
def process(in_path, annot_beats=False, feature="mfcc", framesync=False, boundaries_id="gt", labels_id=None, n_jobs=4, config=None): """Sweeps parameters across the specified algorithm.""" results_file = "results_sweep_boundsE%s_labelsE%s.csv" % (boundaries_id, ...
def process(in_path, annot_beats=False, feature="mfcc", framesync=False, boundaries_id="gt", labels_id=None, n_jobs=4, config=None): """Sweeps parameters across the specified algorithm.""" results_file = "results_sweep_boundsE%s_labelsE%s.csv" % (boundaries_id, ...
[ "Sweeps", "parameters", "across", "the", "specified", "algorithm", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/examples/run_sweep.py#L13-L109
[ "def", "process", "(", "in_path", ",", "annot_beats", "=", "False", ",", "feature", "=", "\"mfcc\"", ",", "framesync", "=", "False", ",", "boundaries_id", "=", "\"gt\"", ",", "labels_id", "=", "None", ",", "n_jobs", "=", "4", ",", "config", "=", "None", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
main
Main function to sweep parameters of a certain algorithm.
examples/run_sweep.py
def main(): """Main function to sweep parameters of a certain algorithm.""" parser = argparse.ArgumentParser( description="Runs the speficied algorithm(s) on the MSAF " "formatted dataset.", formatter_class=argparse.ArgumentDefaultsHelpFormatter) parser.add_argument("in_path", ...
def main(): """Main function to sweep parameters of a certain algorithm.""" parser = argparse.ArgumentParser( description="Runs the speficied algorithm(s) on the MSAF " "formatted dataset.", formatter_class=argparse.ArgumentDefaultsHelpFormatter) parser.add_argument("in_path", ...
[ "Main", "function", "to", "sweep", "parameters", "of", "a", "certain", "algorithm", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/examples/run_sweep.py#L112-L166
[ "def", "main", "(", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "\"Runs the speficied algorithm(s) on the MSAF \"", "\"formatted dataset.\"", ",", "formatter_class", "=", "argparse", ".", "ArgumentDefaultsHelpFormatter", ")", "pars...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
main
Main function to parse the arguments and call the main process.
examples/run_mirex.py
def main(): """Main function to parse the arguments and call the main process.""" parser = argparse.ArgumentParser( description="Runs the speficied algorithm(s) on the input file and " "the results using the MIREX format.", formatter_class=argparse.ArgumentDefaultsHelpFormatter) pars...
def main(): """Main function to parse the arguments and call the main process.""" parser = argparse.ArgumentParser( description="Runs the speficied algorithm(s) on the input file and " "the results using the MIREX format.", formatter_class=argparse.ArgumentDefaultsHelpFormatter) pars...
[ "Main", "function", "to", "parse", "the", "arguments", "and", "call", "the", "main", "process", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/examples/run_mirex.py#L14-L66
[ "def", "main", "(", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "\"Runs the speficied algorithm(s) on the input file and \"", "\"the results using the MIREX format.\"", ",", "formatter_class", "=", "argparse", ".", "ArgumentDefaultsHel...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
print_results
Print all the results. Parameters ---------- results: pd.DataFrame Dataframe with all the results
msaf/eval.py
def print_results(results): """Print all the results. Parameters ---------- results: pd.DataFrame Dataframe with all the results """ if len(results) == 0: logging.warning("No results to print!") return res = results.mean() logging.info("Results:\n%s" % res)
def print_results(results): """Print all the results. Parameters ---------- results: pd.DataFrame Dataframe with all the results """ if len(results) == 0: logging.warning("No results to print!") return res = results.mean() logging.info("Results:\n%s" % res)
[ "Print", "all", "the", "results", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L26-L38
[ "def", "print_results", "(", "results", ")", ":", "if", "len", "(", "results", ")", "==", "0", ":", "logging", ".", "warning", "(", "\"No results to print!\"", ")", "return", "res", "=", "results", ".", "mean", "(", ")", "logging", ".", "info", "(", "\...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
compute_results
Compute the results using all the available evaluations. Parameters ---------- ann_inter : np.array Annotated intervals in seconds. est_inter : np.array Estimated intervals in seconds. ann_labels : np.array Annotated labels. est_labels : np.array Estimated labels...
msaf/eval.py
def compute_results(ann_inter, est_inter, ann_labels, est_labels, bins, est_file, weight=0.58): """Compute the results using all the available evaluations. Parameters ---------- ann_inter : np.array Annotated intervals in seconds. est_inter : np.array Estimated i...
def compute_results(ann_inter, est_inter, ann_labels, est_labels, bins, est_file, weight=0.58): """Compute the results using all the available evaluations. Parameters ---------- ann_inter : np.array Annotated intervals in seconds. est_inter : np.array Estimated i...
[ "Compute", "the", "results", "using", "all", "the", "available", "evaluations", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L41-L161
[ "def", "compute_results", "(", "ann_inter", ",", "est_inter", ",", "ann_labels", ",", "est_labels", ",", "bins", ",", "est_file", ",", "weight", "=", "0.58", ")", ":", "res", "=", "{", "}", "# --Boundaries-- #", "# Hit Rate standard", "res", "[", "\"HitRate_3P...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
compute_gt_results
Computes the results by using the ground truth dataset identified by the annotator parameter. Return ------ results : dict Dictionary of the results (see function compute_results).
msaf/eval.py
def compute_gt_results(est_file, ref_file, boundaries_id, labels_id, config, bins=251, annotator_id=0): """Computes the results by using the ground truth dataset identified by the annotator parameter. Return ------ results : dict Dictionary of the results (see functio...
def compute_gt_results(est_file, ref_file, boundaries_id, labels_id, config, bins=251, annotator_id=0): """Computes the results by using the ground truth dataset identified by the annotator parameter. Return ------ results : dict Dictionary of the results (see functio...
[ "Computes", "the", "results", "by", "using", "the", "ground", "truth", "dataset", "identified", "by", "the", "annotator", "parameter", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L164-L225
[ "def", "compute_gt_results", "(", "est_file", ",", "ref_file", ",", "boundaries_id", ",", "labels_id", ",", "config", ",", "bins", "=", "251", ",", "annotator_id", "=", "0", ")", ":", "if", "config", "[", "\"hier\"", "]", ":", "ref_times", ",", "ref_labels...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
compute_information_gain
Computes the information gain of the est_file from the annotated intervals and the estimated intervals.
msaf/eval.py
def compute_information_gain(ann_inter, est_inter, est_file, bins): """Computes the information gain of the est_file from the annotated intervals and the estimated intervals.""" ann_times = utils.intervals_to_times(ann_inter) est_times = utils.intervals_to_times(est_inter) return mir_eval.beat.infor...
def compute_information_gain(ann_inter, est_inter, est_file, bins): """Computes the information gain of the est_file from the annotated intervals and the estimated intervals.""" ann_times = utils.intervals_to_times(ann_inter) est_times = utils.intervals_to_times(est_inter) return mir_eval.beat.infor...
[ "Computes", "the", "information", "gain", "of", "the", "est_file", "from", "the", "annotated", "intervals", "and", "the", "estimated", "intervals", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L228-L233
[ "def", "compute_information_gain", "(", "ann_inter", ",", "est_inter", ",", "est_file", ",", "bins", ")", ":", "ann_times", "=", "utils", ".", "intervals_to_times", "(", "ann_inter", ")", "est_times", "=", "utils", ".", "intervals_to_times", "(", "est_inter", ")...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process_track
Processes a single track. Parameters ---------- file_struct : object (FileStruct) or str File struct or full path of the audio file to be evaluated. boundaries_id : str Identifier of the boundaries algorithm. labels_id : str Identifier of the labels algorithm. config : d...
msaf/eval.py
def process_track(file_struct, boundaries_id, labels_id, config, annotator_id=0): """Processes a single track. Parameters ---------- file_struct : object (FileStruct) or str File struct or full path of the audio file to be evaluated. boundaries_id : str Identifier ...
def process_track(file_struct, boundaries_id, labels_id, config, annotator_id=0): """Processes a single track. Parameters ---------- file_struct : object (FileStruct) or str File struct or full path of the audio file to be evaluated. boundaries_id : str Identifier ...
[ "Processes", "a", "single", "track", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L236-L278
[ "def", "process_track", "(", "file_struct", ",", "boundaries_id", ",", "labels_id", ",", "config", ",", "annotator_id", "=", "0", ")", ":", "# Convert to file_struct if string is passed", "if", "isinstance", "(", "file_struct", ",", "six", ".", "string_types", ")", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_results_file_name
Based on the config and the dataset, get the file name to store the results.
msaf/eval.py
def get_results_file_name(boundaries_id, labels_id, config, annotator_id): """Based on the config and the dataset, get the file name to store the results.""" utils.ensure_dir(msaf.config.results_dir) file_name = os.path.join(msaf.config.results_dir, "results") file_name += ...
def get_results_file_name(boundaries_id, labels_id, config, annotator_id): """Based on the config and the dataset, get the file name to store the results.""" utils.ensure_dir(msaf.config.results_dir) file_name = os.path.join(msaf.config.results_dir, "results") file_name += ...
[ "Based", "on", "the", "config", "and", "the", "dataset", "get", "the", "file", "name", "to", "store", "the", "results", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L281-L297
[ "def", "get_results_file_name", "(", "boundaries_id", ",", "labels_id", ",", "config", ",", "annotator_id", ")", ":", "utils", ".", "ensure_dir", "(", "msaf", ".", "config", ".", "results_dir", ")", "file_name", "=", "os", ".", "path", ".", "join", "(", "m...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process
Main process to evaluate algorithms' results. Parameters ---------- in_path : str Path to the dataset root folder. boundaries_id : str Boundaries algorithm identifier (e.g. siplca, cnmf) labels_id : str Labels algorithm identifier (e.g. siplca, cnmf) ds_name : str ...
msaf/eval.py
def process(in_path, boundaries_id=msaf.config.default_bound_id, labels_id=msaf.config.default_label_id, annot_beats=False, framesync=False, feature="pcp", hier=False, save=False, out_file=None, n_jobs=4, annotator_id=0, config=None): """Main process to evaluate algorithms' resul...
def process(in_path, boundaries_id=msaf.config.default_bound_id, labels_id=msaf.config.default_label_id, annot_beats=False, framesync=False, feature="pcp", hier=False, save=False, out_file=None, n_jobs=4, annotator_id=0, config=None): """Main process to evaluate algorithms' resul...
[ "Main", "process", "to", "evaluate", "algorithms", "results", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/eval.py#L300-L400
[ "def", "process", "(", "in_path", ",", "boundaries_id", "=", "msaf", ".", "config", ".", "default_bound_id", ",", "labels_id", "=", "msaf", ".", "config", ".", "default_label_id", ",", "annot_beats", "=", "False", ",", "framesync", "=", "False", ",", "featur...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
parse_config_string
Parses a config string (comma-separated key=value components) into a dict.
msaf/configparser.py
def parse_config_string(config_string, issue_warnings=True): """ Parses a config string (comma-separated key=value components) into a dict. """ config_dict = {} my_splitter = shlex.shlex(config_string, posix=True) my_splitter.whitespace = ',' my_splitter.whitespace_split = True for kv_pa...
def parse_config_string(config_string, issue_warnings=True): """ Parses a config string (comma-separated key=value components) into a dict. """ config_dict = {} my_splitter = shlex.shlex(config_string, posix=True) my_splitter.whitespace = ',' my_splitter.whitespace_split = True for kv_pa...
[ "Parses", "a", "config", "string", "(", "comma", "-", "separated", "key", "=", "value", "components", ")", "into", "a", "dict", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/configparser.py#L34-L56
[ "def", "parse_config_string", "(", "config_string", ",", "issue_warnings", "=", "True", ")", ":", "config_dict", "=", "{", "}", "my_splitter", "=", "shlex", ".", "shlex", "(", "config_string", ",", "posix", "=", "True", ")", "my_splitter", ".", "whitespace", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
fetch_val_for_key
Return the overriding config value for a key. A successful search returns a string value. An unsuccessful search raises a KeyError The (decreasing) priority order is: - MSAF_FLAGS - ~./msafrc
msaf/configparser.py
def fetch_val_for_key(key, delete_key=False): """Return the overriding config value for a key. A successful search returns a string value. An unsuccessful search raises a KeyError The (decreasing) priority order is: - MSAF_FLAGS - ~./msafrc """ # first try to find it in the FLAGS tr...
def fetch_val_for_key(key, delete_key=False): """Return the overriding config value for a key. A successful search returns a string value. An unsuccessful search raises a KeyError The (decreasing) priority order is: - MSAF_FLAGS - ~./msafrc """ # first try to find it in the FLAGS tr...
[ "Return", "the", "overriding", "config", "value", "for", "a", "key", ".", "A", "successful", "search", "returns", "a", "string", "value", ".", "An", "unsuccessful", "search", "raises", "a", "KeyError", "The", "(", "decreasing", ")", "priority", "order", "is"...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/configparser.py#L92-L123
[ "def", "fetch_val_for_key", "(", "key", ",", "delete_key", "=", "False", ")", ":", "# first try to find it in the FLAGS", "try", ":", "if", "delete_key", ":", "return", "MSAF_FLAGS_DICT", ".", "pop", "(", "key", ")", "return", "MSAF_FLAGS_DICT", "[", "key", "]",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
AddConfigVar
Add a new variable to msaf.config Parameters ---------- name: str String of the form "[section0.[section1.[etc]]]option", containing the full name for this configuration variable. string: str What does this variable specify? configparam: `ConfigParam` An object for g...
msaf/configparser.py
def AddConfigVar(name, doc, configparam, root=config): """Add a new variable to msaf.config Parameters ---------- name: str String of the form "[section0.[section1.[etc]]]option", containing the full name for this configuration variable. string: str What does this variable s...
def AddConfigVar(name, doc, configparam, root=config): """Add a new variable to msaf.config Parameters ---------- name: str String of the form "[section0.[section1.[etc]]]option", containing the full name for this configuration variable. string: str What does this variable s...
[ "Add", "a", "new", "variable", "to", "msaf", ".", "config" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/configparser.py#L162-L221
[ "def", "AddConfigVar", "(", "name", ",", "doc", ",", "configparam", ",", "root", "=", "config", ")", ":", "# This method also performs some of the work of initializing ConfigParam", "# instances", "if", "root", "is", "config", ":", "# only set the name in the first call, no...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Segmenter.processFlat
Main process. Returns ------- est_idxs : np.array(N) Estimated indeces the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments.
msaf/algorithms/vmo/segmenter.py
def processFlat(self): """Main process. Returns ------- est_idxs : np.array(N) Estimated indeces the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments. """ # Preprocess to obtain features (arr...
def processFlat(self): """Main process. Returns ------- est_idxs : np.array(N) Estimated indeces the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments. """ # Preprocess to obtain features (arr...
[ "Main", "process", ".", "Returns", "-------", "est_idxs", ":", "np", ".", "array", "(", "N", ")", "Estimated", "indeces", "the", "segment", "boundaries", "in", "frame", "indeces", ".", "est_labels", ":", "np", ".", "array", "(", "N", "-", "1", ")", "Es...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/vmo/segmenter.py#L21-L44
[ "def", "processFlat", "(", "self", ")", ":", "# Preprocess to obtain features (array(n_frames, n_features))", "F", "=", "self", ".", "_preprocess", "(", ")", "F", "=", "librosa", ".", "util", ".", "normalize", "(", "F", ",", "axis", "=", "0", ")", "F", "=", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Segmenter.processHierarchical
Main process.for hierarchial segmentation. Returns ------- est_idxs : list List with np.arrays for each layer of segmentation containing the estimated indeces for the segment boundaries. est_labels : list List with np.arrays containing the labels for e...
msaf/algorithms/vmo/segmenter.py
def processHierarchical(self): """Main process.for hierarchial segmentation. Returns ------- est_idxs : list List with np.arrays for each layer of segmentation containing the estimated indeces for the segment boundaries. est_labels : list List ...
def processHierarchical(self): """Main process.for hierarchial segmentation. Returns ------- est_idxs : list List with np.arrays for each layer of segmentation containing the estimated indeces for the segment boundaries. est_labels : list List ...
[ "Main", "process", ".", "for", "hierarchial", "segmentation", ".", "Returns", "-------", "est_idxs", ":", "list", "List", "with", "np", ".", "arrays", "for", "each", "layer", "of", "segmentation", "containing", "the", "estimated", "indeces", "for", "the", "seg...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/vmo/segmenter.py#L46-L68
[ "def", "processHierarchical", "(", "self", ")", ":", "F", "=", "self", ".", "_preprocess", "(", ")", "F", "=", "librosa", ".", "util", ".", "normalize", "(", "F", ",", "axis", "=", "0", ")", "F", "=", "librosa", ".", "feature", ".", "stack_memory", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
NMF.frobenius_norm
Frobenius norm (||data - WH||) of a data matrix and a low rank approximation given by WH Returns: frobenius norm: F = ||data - WH||
msaf/pymf/nmf.py
def frobenius_norm(self): """ Frobenius norm (||data - WH||) of a data matrix and a low rank approximation given by WH Returns: frobenius norm: F = ||data - WH|| """ # check if W and H exist if hasattr(self,'H') and hasattr(self,'W') and not scipy.sparse.iss...
def frobenius_norm(self): """ Frobenius norm (||data - WH||) of a data matrix and a low rank approximation given by WH Returns: frobenius norm: F = ||data - WH|| """ # check if W and H exist if hasattr(self,'H') and hasattr(self,'W') and not scipy.sparse.iss...
[ "Frobenius", "norm", "(", "||data", "-", "WH||", ")", "of", "a", "data", "matrix", "and", "a", "low", "rank", "approximation", "given", "by", "WH" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/nmf.py#L100-L114
[ "def", "frobenius_norm", "(", "self", ")", ":", "# check if W and H exist", "if", "hasattr", "(", "self", ",", "'H'", ")", "and", "hasattr", "(", "self", ",", "'W'", ")", "and", "not", "scipy", ".", "sparse", ".", "issparse", "(", "self", ".", "data", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
compute_all_features
Computes all features for the given file.
examples/compute_features.py
def compute_all_features(file_struct, framesync): """Computes all features for the given file.""" for feature_id in msaf.features_registry: logging.info("Computing %s for file %s" % (feature_id, file_struct.audio_file)) feats = Features.select_f...
def compute_all_features(file_struct, framesync): """Computes all features for the given file.""" for feature_id in msaf.features_registry: logging.info("Computing %s for file %s" % (feature_id, file_struct.audio_file)) feats = Features.select_f...
[ "Computes", "all", "features", "for", "the", "given", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/examples/compute_features.py#L28-L34
[ "def", "compute_all_features", "(", "file_struct", ",", "framesync", ")", ":", "for", "feature_id", "in", "msaf", ".", "features_registry", ":", "logging", ".", "info", "(", "\"Computing %s for file %s\"", "%", "(", "feature_id", ",", "file_struct", ".", "audio_fi...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process
Computes the features for the selected dataset or file.
examples/compute_features.py
def process(in_path, out_file, n_jobs, framesync): """Computes the features for the selected dataset or file.""" if os.path.isfile(in_path): # Single file mode # Get (if they exitst) or compute features file_struct = msaf.io.FileStruct(in_path) file_struct.features_file = out_fil...
def process(in_path, out_file, n_jobs, framesync): """Computes the features for the selected dataset or file.""" if os.path.isfile(in_path): # Single file mode # Get (if they exitst) or compute features file_struct = msaf.io.FileStruct(in_path) file_struct.features_file = out_fil...
[ "Computes", "the", "features", "for", "the", "selected", "dataset", "or", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/examples/compute_features.py#L37-L51
[ "def", "process", "(", "in_path", ",", "out_file", ",", "n_jobs", ",", "framesync", ")", ":", "if", "os", ".", "path", ".", "isfile", "(", "in_path", ")", ":", "# Single file mode", "# Get (if they exitst) or compute features", "file_struct", "=", "msaf", ".", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
main
Main function to parse the arguments and call the main process.
examples/compute_features.py
def main(): """Main function to parse the arguments and call the main process.""" parser = argparse.ArgumentParser( description="Extracts a set of features from a given dataset " "or audio file and saves them into the 'features' folder of " "the dataset or the specified single file.", ...
def main(): """Main function to parse the arguments and call the main process.""" parser = argparse.ArgumentParser( description="Extracts a set of features from a given dataset " "or audio file and saves them into the 'features' folder of " "the dataset or the specified single file.", ...
[ "Main", "function", "to", "parse", "the", "arguments", "and", "call", "the", "main", "process", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/examples/compute_features.py#L54-L98
[ "def", "main", "(", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "\"Extracts a set of features from a given dataset \"", "\"or audio file and saves them into the 'features' folder of \"", "\"the dataset or the specified single file.\"", ",", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
features
Feature-extraction for audio segmentation Arguments: file_struct -- msaf.io.FileStruct paths to the input files in the Segmentation dataset Returns: - X -- ndarray beat-synchronous feature matrix: MFCC (mean-aggregated) Chroma (median-aggregated) ...
msaf/algorithms/olda/segmenter.py
def features(file_struct, annot_beats=False, framesync=False): '''Feature-extraction for audio segmentation Arguments: file_struct -- msaf.io.FileStruct paths to the input files in the Segmentation dataset Returns: - X -- ndarray beat-synchronous feature matrix: ...
def features(file_struct, annot_beats=False, framesync=False): '''Feature-extraction for audio segmentation Arguments: file_struct -- msaf.io.FileStruct paths to the input files in the Segmentation dataset Returns: - X -- ndarray beat-synchronous feature matrix: ...
[ "Feature", "-", "extraction", "for", "audio", "segmentation", "Arguments", ":", "file_struct", "--", "msaf", ".", "io", ".", "FileStruct", "paths", "to", "the", "input", "files", "in", "the", "Segmentation", "dataset" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/olda/segmenter.py#L29-L151
[ "def", "features", "(", "file_struct", ",", "annot_beats", "=", "False", ",", "framesync", "=", "False", ")", ":", "def", "compress_data", "(", "X", ",", "k", ")", ":", "Xtemp", "=", "X", ".", "dot", "(", "X", ".", "T", ")", "if", "len", "(", "Xt...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
gaussian_cost
Return the average log-likelihood of data under a standard normal
msaf/algorithms/olda/segmenter.py
def gaussian_cost(X): '''Return the average log-likelihood of data under a standard normal ''' d, n = X.shape if n < 2: return 0 sigma = np.var(X, axis=1, ddof=1) cost = -0.5 * d * n * np.log(2. * np.pi) - 0.5 * (n - 1.) * np.sum(sigma) return cost
def gaussian_cost(X): '''Return the average log-likelihood of data under a standard normal ''' d, n = X.shape if n < 2: return 0 sigma = np.var(X, axis=1, ddof=1) cost = -0.5 * d * n * np.log(2. * np.pi) - 0.5 * (n - 1.) * np.sum(sigma) return cost
[ "Return", "the", "average", "log", "-", "likelihood", "of", "data", "under", "a", "standard", "normal" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/olda/segmenter.py#L154-L166
[ "def", "gaussian_cost", "(", "X", ")", ":", "d", ",", "n", "=", "X", ".", "shape", "if", "n", "<", "2", ":", "return", "0", "sigma", "=", "np", ".", "var", "(", "X", ",", "axis", "=", "1", ",", "ddof", "=", "1", ")", "cost", "=", "-", "0....
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Segmenter.processFlat
Main process for flat segmentation. Returns ------- est_idxs : np.array(N) Estimated times for the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments.
msaf/algorithms/olda/segmenter.py
def processFlat(self): """Main process for flat segmentation. Returns ------- est_idxs : np.array(N) Estimated times for the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments. """ # Preprocess...
def processFlat(self): """Main process for flat segmentation. Returns ------- est_idxs : np.array(N) Estimated times for the segment boundaries in frame indeces. est_labels : np.array(N-1) Estimated labels for the segments. """ # Preprocess...
[ "Main", "process", "for", "flat", "segmentation", ".", "Returns", "-------", "est_idxs", ":", "np", ".", "array", "(", "N", ")", "Estimated", "times", "for", "the", "segment", "boundaries", "in", "frame", "indeces", ".", "est_labels", ":", "np", ".", "arra...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/olda/segmenter.py#L265-L300
[ "def", "processFlat", "(", "self", ")", ":", "# Preprocess to obtain features and duration", "F", ",", "dur", "=", "features", "(", "self", ".", "file_struct", ",", "self", ".", "annot_beats", ",", "self", ".", "framesync", ")", "try", ":", "# Load and apply tra...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Segmenter.processHierarchical
Main process for hierarchical segmentation. Returns ------- est_idxs : list List containing estimated times for each layer in the hierarchy as np.arrays est_labels : list List containing estimated labels for each layer in the hierarchy as n...
msaf/algorithms/olda/segmenter.py
def processHierarchical(self): """Main process for hierarchical segmentation. Returns ------- est_idxs : list List containing estimated times for each layer in the hierarchy as np.arrays est_labels : list List containing estimated labels for ea...
def processHierarchical(self): """Main process for hierarchical segmentation. Returns ------- est_idxs : list List containing estimated times for each layer in the hierarchy as np.arrays est_labels : list List containing estimated labels for ea...
[ "Main", "process", "for", "hierarchical", "segmentation", ".", "Returns", "-------", "est_idxs", ":", "list", "List", "containing", "estimated", "times", "for", "each", "layer", "in", "the", "hierarchy", "as", "np", ".", "arrays", "est_labels", ":", "list", "L...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/olda/segmenter.py#L302-L347
[ "def", "processHierarchical", "(", "self", ")", ":", "# Preprocess to obtain features, times, and input boundary indeces", "F", ",", "dur", "=", "features", "(", "self", ".", "file_struct", ",", "self", ".", "annot_beats", ",", "self", ".", "framesync", ")", "try", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
lognormalize
Log-normalizes features such that each vector is between min_db to 0.
msaf/utils.py
def lognormalize(F, floor=0.1, min_db=-80): """Log-normalizes features such that each vector is between min_db to 0.""" assert min_db < 0 F = min_max_normalize(F, floor=floor) F = np.abs(min_db) * np.log10(F) # Normalize from min_db to 0 return F
def lognormalize(F, floor=0.1, min_db=-80): """Log-normalizes features such that each vector is between min_db to 0.""" assert min_db < 0 F = min_max_normalize(F, floor=floor) F = np.abs(min_db) * np.log10(F) # Normalize from min_db to 0 return F
[ "Log", "-", "normalizes", "features", "such", "that", "each", "vector", "is", "between", "min_db", "to", "0", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L12-L17
[ "def", "lognormalize", "(", "F", ",", "floor", "=", "0.1", ",", "min_db", "=", "-", "80", ")", ":", "assert", "min_db", "<", "0", "F", "=", "min_max_normalize", "(", "F", ",", "floor", "=", "floor", ")", "F", "=", "np", ".", "abs", "(", "min_db",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
min_max_normalize
Normalizes features such that each vector is between floor to 1.
msaf/utils.py
def min_max_normalize(F, floor=0.001): """Normalizes features such that each vector is between floor to 1.""" F += -F.min() + floor F = F / F.max(axis=0) return F
def min_max_normalize(F, floor=0.001): """Normalizes features such that each vector is between floor to 1.""" F += -F.min() + floor F = F / F.max(axis=0) return F
[ "Normalizes", "features", "such", "that", "each", "vector", "is", "between", "floor", "to", "1", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L20-L24
[ "def", "min_max_normalize", "(", "F", ",", "floor", "=", "0.001", ")", ":", "F", "+=", "-", "F", ".", "min", "(", ")", "+", "floor", "F", "=", "F", "/", "F", ".", "max", "(", "axis", "=", "0", ")", "return", "F" ]
9dbb57d77a1310465a65cc40f1641d083ca74385
test
normalize
Normalizes the given matrix of features. Parameters ---------- X: np.array Each row represents a feature vector. norm_type: {"min_max", "log", np.inf, -np.inf, 0, float > 0, None} - `"min_max"`: Min/max scaling is performed - `"log"`: Logarithmic scaling is performed - `...
msaf/utils.py
def normalize(X, norm_type, floor=0.0, min_db=-80): """Normalizes the given matrix of features. Parameters ---------- X: np.array Each row represents a feature vector. norm_type: {"min_max", "log", np.inf, -np.inf, 0, float > 0, None} - `"min_max"`: Min/max scaling is performed ...
def normalize(X, norm_type, floor=0.0, min_db=-80): """Normalizes the given matrix of features. Parameters ---------- X: np.array Each row represents a feature vector. norm_type: {"min_max", "log", np.inf, -np.inf, 0, float > 0, None} - `"min_max"`: Min/max scaling is performed ...
[ "Normalizes", "the", "given", "matrix", "of", "features", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L27-L53
[ "def", "normalize", "(", "X", ",", "norm_type", ",", "floor", "=", "0.0", ",", "min_db", "=", "-", "80", ")", ":", "if", "isinstance", "(", "norm_type", ",", "six", ".", "string_types", ")", ":", "if", "norm_type", "==", "\"min_max\"", ":", "return", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_time_frames
Gets the time frames and puts them in a numpy array.
msaf/utils.py
def get_time_frames(dur, anal): """Gets the time frames and puts them in a numpy array.""" n_frames = get_num_frames(dur, anal) return np.linspace(0, dur, num=n_frames)
def get_time_frames(dur, anal): """Gets the time frames and puts them in a numpy array.""" n_frames = get_num_frames(dur, anal) return np.linspace(0, dur, num=n_frames)
[ "Gets", "the", "time", "frames", "and", "puts", "them", "in", "a", "numpy", "array", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L101-L104
[ "def", "get_time_frames", "(", "dur", ",", "anal", ")", ":", "n_frames", "=", "get_num_frames", "(", "dur", ",", "anal", ")", "return", "np", ".", "linspace", "(", "0", ",", "dur", ",", "num", "=", "n_frames", ")" ]
9dbb57d77a1310465a65cc40f1641d083ca74385
test
remove_empty_segments
Removes empty segments if needed.
msaf/utils.py
def remove_empty_segments(times, labels): """Removes empty segments if needed.""" assert len(times) - 1 == len(labels) inters = times_to_intervals(times) new_inters = [] new_labels = [] for inter, label in zip(inters, labels): if inter[0] < inter[1]: new_inters.append(inter) ...
def remove_empty_segments(times, labels): """Removes empty segments if needed.""" assert len(times) - 1 == len(labels) inters = times_to_intervals(times) new_inters = [] new_labels = [] for inter, label in zip(inters, labels): if inter[0] < inter[1]: new_inters.append(inter) ...
[ "Removes", "empty", "segments", "if", "needed", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L107-L117
[ "def", "remove_empty_segments", "(", "times", ",", "labels", ")", ":", "assert", "len", "(", "times", ")", "-", "1", "==", "len", "(", "labels", ")", "inters", "=", "times_to_intervals", "(", "times", ")", "new_inters", "=", "[", "]", "new_labels", "=", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
sonify_clicks
Sonifies the estimated times into the output file. Parameters ---------- audio: np.array Audio samples of the input track. clicks: np.array Click positions in seconds. out_file: str Path to the output file. fs: int Sample rate. offset: float Offset of...
msaf/utils.py
def sonify_clicks(audio, clicks, out_file, fs, offset=0): """Sonifies the estimated times into the output file. Parameters ---------- audio: np.array Audio samples of the input track. clicks: np.array Click positions in seconds. out_file: str Path to the output file. ...
def sonify_clicks(audio, clicks, out_file, fs, offset=0): """Sonifies the estimated times into the output file. Parameters ---------- audio: np.array Audio samples of the input track. clicks: np.array Click positions in seconds. out_file: str Path to the output file. ...
[ "Sonifies", "the", "estimated", "times", "into", "the", "output", "file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L120-L154
[ "def", "sonify_clicks", "(", "audio", ",", "clicks", ",", "out_file", ",", "fs", ",", "offset", "=", "0", ")", ":", "# Generate clicks (this should be done by mir_eval, but its", "# latest release is not compatible with latest numpy)", "times", "=", "clicks", "+", "offset...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
synchronize_labels
Synchronizes the labels from the old_bound_idxs to the new_bound_idxs. Parameters ---------- new_bound_idxs: np.array New indeces to synchronize with. old_bound_idxs: np.array Old indeces, same shape as labels + 1. old_labels: np.array Labels associated to the old_bound_idxs...
msaf/utils.py
def synchronize_labels(new_bound_idxs, old_bound_idxs, old_labels, N): """Synchronizes the labels from the old_bound_idxs to the new_bound_idxs. Parameters ---------- new_bound_idxs: np.array New indeces to synchronize with. old_bound_idxs: np.array Old indeces, same shape as labels...
def synchronize_labels(new_bound_idxs, old_bound_idxs, old_labels, N): """Synchronizes the labels from the old_bound_idxs to the new_bound_idxs. Parameters ---------- new_bound_idxs: np.array New indeces to synchronize with. old_bound_idxs: np.array Old indeces, same shape as labels...
[ "Synchronizes", "the", "labels", "from", "the", "old_bound_idxs", "to", "the", "new_bound_idxs", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L157-L190
[ "def", "synchronize_labels", "(", "new_bound_idxs", ",", "old_bound_idxs", ",", "old_labels", ",", "N", ")", ":", "assert", "len", "(", "old_bound_idxs", ")", "-", "1", "==", "len", "(", "old_labels", ")", "# Construct unfolded labels array", "unfold_labels", "=",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process_segmentation_level
Processes a level of segmentation, and converts it into times. Parameters ---------- est_idxs: np.array Estimated boundaries in frame indeces. est_labels: np.array Estimated labels. N: int Number of frames in the whole track. frame_times: np.array Time stamp for ...
msaf/utils.py
def process_segmentation_level(est_idxs, est_labels, N, frame_times, dur): """Processes a level of segmentation, and converts it into times. Parameters ---------- est_idxs: np.array Estimated boundaries in frame indeces. est_labels: np.array Estimated labels. N: int Numb...
def process_segmentation_level(est_idxs, est_labels, N, frame_times, dur): """Processes a level of segmentation, and converts it into times. Parameters ---------- est_idxs: np.array Estimated boundaries in frame indeces. est_labels: np.array Estimated labels. N: int Numb...
[ "Processes", "a", "level", "of", "segmentation", "and", "converts", "it", "into", "times", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L193-L231
[ "def", "process_segmentation_level", "(", "est_idxs", ",", "est_labels", ",", "N", ",", "frame_times", ",", "dur", ")", ":", "assert", "est_idxs", "[", "0", "]", "==", "0", "and", "est_idxs", "[", "-", "1", "]", "==", "N", "-", "1", "assert", "len", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
align_end_hierarchies
Align the end of the hierarchies such that they end at the same exact second as long they have the same duration within a certain threshold. Parameters ---------- hier1: list List containing hierarchical segment boundaries. hier2: list List containing hierarchical segment boundaries...
msaf/utils.py
def align_end_hierarchies(hier1, hier2, thres=0.5): """Align the end of the hierarchies such that they end at the same exact second as long they have the same duration within a certain threshold. Parameters ---------- hier1: list List containing hierarchical segment boundaries. hier2: l...
def align_end_hierarchies(hier1, hier2, thres=0.5): """Align the end of the hierarchies such that they end at the same exact second as long they have the same duration within a certain threshold. Parameters ---------- hier1: list List containing hierarchical segment boundaries. hier2: l...
[ "Align", "the", "end", "of", "the", "hierarchies", "such", "that", "they", "end", "at", "the", "same", "exact", "second", "as", "long", "they", "have", "the", "same", "duration", "within", "a", "certain", "threshold", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/utils.py#L234-L262
[ "def", "align_end_hierarchies", "(", "hier1", ",", "hier2", ",", "thres", "=", "0.5", ")", ":", "# Make sure we have correctly formatted hierarchies", "dur_h1", "=", "hier1", "[", "0", "]", "[", "-", "1", "]", "for", "hier", "in", "hier1", ":", "assert", "hi...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
SIVM._distance
compute distances of a specific data point to all other samples
msaf/pymf/sivm.py
def _distance(self, idx): """ compute distances of a specific data point to all other samples""" if scipy.sparse.issparse(self.data): step = self.data.shape[1] else: step = 50000 d = np.zeros((self.data.shape[1])) if idx == -1: # set vec to o...
def _distance(self, idx): """ compute distances of a specific data point to all other samples""" if scipy.sparse.issparse(self.data): step = self.data.shape[1] else: step = 50000 d = np.zeros((self.data.shape[1])) if idx == -1: # set vec to o...
[ "compute", "distances", "of", "a", "specific", "data", "point", "to", "all", "other", "samples" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/sivm.py#L107-L137
[ "def", "_distance", "(", "self", ",", "idx", ")", ":", "if", "scipy", ".", "sparse", ".", "issparse", "(", "self", ".", "data", ")", ":", "step", "=", "self", ".", "data", ".", "shape", "[", "1", "]", "else", ":", "step", "=", "50000", "d", "="...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
SIVM.update_w
compute new W
msaf/pymf/sivm.py
def update_w(self): """ compute new W """ EPS = 10**-8 self.init_sivm() # initialize some of the recursively updated distance measures .... d_square = np.zeros((self.data.shape[1])) d_sum = np.zeros((self.data.shape[1])) d_i_times_d_j = np.zeros((self.data.shape[...
def update_w(self): """ compute new W """ EPS = 10**-8 self.init_sivm() # initialize some of the recursively updated distance measures .... d_square = np.zeros((self.data.shape[1])) d_sum = np.zeros((self.data.shape[1])) d_i_times_d_j = np.zeros((self.data.shape[...
[ "compute", "new", "W" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/sivm.py#L168-L201
[ "def", "update_w", "(", "self", ")", ":", "EPS", "=", "10", "**", "-", "8", "self", ".", "init_sivm", "(", ")", "# initialize some of the recursively updated distance measures ....", "d_square", "=", "np", ".", "zeros", "(", "(", "self", ".", "data", ".", "s...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
XMeans.estimate_K_xmeans
Estimates K running X-means algorithm (Pelleg & Moore, 2000).
msaf/algorithms/fmc2d/xmeans.py
def estimate_K_xmeans(self, th=0.2, maxK = 10): """Estimates K running X-means algorithm (Pelleg & Moore, 2000).""" # Run initial K-means means, labels = self.run_kmeans(self.X, self.init_K) # Run X-means algorithm stop = False curr_K = self.init_K while not sto...
def estimate_K_xmeans(self, th=0.2, maxK = 10): """Estimates K running X-means algorithm (Pelleg & Moore, 2000).""" # Run initial K-means means, labels = self.run_kmeans(self.X, self.init_K) # Run X-means algorithm stop = False curr_K = self.init_K while not sto...
[ "Estimates", "K", "running", "X", "-", "means", "algorithm", "(", "Pelleg", "&", "Moore", "2000", ")", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/xmeans.py#L18-L82
[ "def", "estimate_K_xmeans", "(", "self", ",", "th", "=", "0.2", ",", "maxK", "=", "10", ")", ":", "# Run initial K-means", "means", ",", "labels", "=", "self", ".", "run_kmeans", "(", "self", ".", "X", ",", "self", ".", "init_K", ")", "# Run X-means algo...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
XMeans.estimate_K_knee
Estimates the K using K-means and BIC, by sweeping various K and choosing the optimal BIC.
msaf/algorithms/fmc2d/xmeans.py
def estimate_K_knee(self, th=.015, maxK=12): """Estimates the K using K-means and BIC, by sweeping various K and choosing the optimal BIC.""" # Sweep K-means if self.X.shape[0] < maxK: maxK = self.X.shape[0] if maxK < 2: maxK = 2 K = np.arange(...
def estimate_K_knee(self, th=.015, maxK=12): """Estimates the K using K-means and BIC, by sweeping various K and choosing the optimal BIC.""" # Sweep K-means if self.X.shape[0] < maxK: maxK = self.X.shape[0] if maxK < 2: maxK = 2 K = np.arange(...
[ "Estimates", "the", "K", "using", "K", "-", "means", "and", "BIC", "by", "sweeping", "various", "K", "and", "choosing", "the", "optimal", "BIC", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/xmeans.py#L84-L131
[ "def", "estimate_K_knee", "(", "self", ",", "th", "=", ".015", ",", "maxK", "=", "12", ")", ":", "# Sweep K-means", "if", "self", ".", "X", ".", "shape", "[", "0", "]", "<", "maxK", ":", "maxK", "=", "self", ".", "X", ".", "shape", "[", "0", "]...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
XMeans.get_clustered_data
Returns the data with a specific label_index, using the previously learned labels.
msaf/algorithms/fmc2d/xmeans.py
def get_clustered_data(self, X, labels, label_index): """Returns the data with a specific label_index, using the previously learned labels.""" D = X[np.argwhere(labels == label_index)] return D.reshape((D.shape[0], D.shape[-1]))
def get_clustered_data(self, X, labels, label_index): """Returns the data with a specific label_index, using the previously learned labels.""" D = X[np.argwhere(labels == label_index)] return D.reshape((D.shape[0], D.shape[-1]))
[ "Returns", "the", "data", "with", "a", "specific", "label_index", "using", "the", "previously", "learned", "labels", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/xmeans.py#L133-L137
[ "def", "get_clustered_data", "(", "self", ",", "X", ",", "labels", ",", "label_index", ")", ":", "D", "=", "X", "[", "np", ".", "argwhere", "(", "labels", "==", "label_index", ")", "]", "return", "D", ".", "reshape", "(", "(", "D", ".", "shape", "[...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
XMeans.run_kmeans
Runs k-means and returns the labels assigned to the data.
msaf/algorithms/fmc2d/xmeans.py
def run_kmeans(self, X, K): """Runs k-means and returns the labels assigned to the data.""" wX = vq.whiten(X) means, dist = vq.kmeans(wX, K, iter=100) labels, dist = vq.vq(wX, means) return means, labels
def run_kmeans(self, X, K): """Runs k-means and returns the labels assigned to the data.""" wX = vq.whiten(X) means, dist = vq.kmeans(wX, K, iter=100) labels, dist = vq.vq(wX, means) return means, labels
[ "Runs", "k", "-", "means", "and", "returns", "the", "labels", "assigned", "to", "the", "data", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/xmeans.py#L139-L144
[ "def", "run_kmeans", "(", "self", ",", "X", ",", "K", ")", ":", "wX", "=", "vq", ".", "whiten", "(", "X", ")", "means", ",", "dist", "=", "vq", ".", "kmeans", "(", "wX", ",", "K", ",", "iter", "=", "100", ")", "labels", ",", "dist", "=", "v...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
XMeans.compute_bic
Computes the Bayesian Information Criterion.
msaf/algorithms/fmc2d/xmeans.py
def compute_bic(self, D, means, labels, K, R): """Computes the Bayesian Information Criterion.""" D = vq.whiten(D) Rn = D.shape[0] M = D.shape[1] if R == K: return 1 # Maximum likelihood estimate (MLE) mle_var = 0 for k in range(len(means)): ...
def compute_bic(self, D, means, labels, K, R): """Computes the Bayesian Information Criterion.""" D = vq.whiten(D) Rn = D.shape[0] M = D.shape[1] if R == K: return 1 # Maximum likelihood estimate (MLE) mle_var = 0 for k in range(len(means)): ...
[ "Computes", "the", "Bayesian", "Information", "Criterion", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/xmeans.py#L146-L175
[ "def", "compute_bic", "(", "self", ",", "D", ",", "means", ",", "labels", ",", "K", ",", "R", ")", ":", "D", "=", "vq", ".", "whiten", "(", "D", ")", "Rn", "=", "D", ".", "shape", "[", "0", "]", "M", "=", "D", ".", "shape", "[", "1", "]",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
XMeans.generate_2d_data
Generates N*K 2D data points with K means and N data points for each mean.
msaf/algorithms/fmc2d/xmeans.py
def generate_2d_data(self, N=100, K=5): """Generates N*K 2D data points with K means and N data points for each mean.""" # Seed the random np.random.seed(seed=int(time.time())) # Amount of spread of the centroids spread = 30 # Generate random data X ...
def generate_2d_data(self, N=100, K=5): """Generates N*K 2D data points with K means and N data points for each mean.""" # Seed the random np.random.seed(seed=int(time.time())) # Amount of spread of the centroids spread = 30 # Generate random data X ...
[ "Generates", "N", "*", "K", "2D", "data", "points", "with", "K", "means", "and", "N", "data", "points", "for", "each", "mean", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/xmeans.py#L178-L195
[ "def", "generate_2d_data", "(", "self", ",", "N", "=", "100", ",", "K", "=", "5", ")", ":", "# Seed the random", "np", ".", "random", ".", "seed", "(", "seed", "=", "int", "(", "time", ".", "time", "(", ")", ")", ")", "# Amount of spread of the centroi...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
SUB.factorize
Do factorization s.t. data = dot(dot(data,beta),H), under the convexity constraint beta >=0, sum(beta)=1, H >=0, sum(H)=1
msaf/pymf/sub.py
def factorize(self): """Do factorization s.t. data = dot(dot(data,beta),H), under the convexity constraint beta >=0, sum(beta)=1, H >=0, sum(H)=1 """ # compute new coefficients for reconstructing data points self.update_w() # for CHNMF it is sometimes useful to only ...
def factorize(self): """Do factorization s.t. data = dot(dot(data,beta),H), under the convexity constraint beta >=0, sum(beta)=1, H >=0, sum(H)=1 """ # compute new coefficients for reconstructing data points self.update_w() # for CHNMF it is sometimes useful to only ...
[ "Do", "factorization", "s", ".", "t", ".", "data", "=", "dot", "(", "dot", "(", "data", "beta", ")", "H", ")", "under", "the", "convexity", "constraint", "beta", ">", "=", "0", "sum", "(", "beta", ")", "=", "1", "H", ">", "=", "0", "sum", "(", ...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/sub.py#L206-L223
[ "def", "factorize", "(", "self", ")", ":", "# compute new coefficients for reconstructing data points", "self", ".", "update_w", "(", ")", "# for CHNMF it is sometimes useful to only compute", "# the basis vectors", "if", "self", ".", "_compute_h", ":", "self", ".", "update...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
resample_mx
Y = resample_mx(X, incolpos, outcolpos) X is taken as a set of columns, each starting at 'time' colpos, and continuing until the start of the next column. Y is a similar matrix, with time boundaries defined by outcolpos. Each column of Y is a duration-weighted average of the overlapping columns of ...
msaf/algorithms/fmc2d/utils_2dfmc.py
def resample_mx(X, incolpos, outcolpos): """ Y = resample_mx(X, incolpos, outcolpos) X is taken as a set of columns, each starting at 'time' colpos, and continuing until the start of the next column. Y is a similar matrix, with time boundaries defined by outcolpos. Each column of Y is a duratio...
def resample_mx(X, incolpos, outcolpos): """ Y = resample_mx(X, incolpos, outcolpos) X is taken as a set of columns, each starting at 'time' colpos, and continuing until the start of the next column. Y is a similar matrix, with time boundaries defined by outcolpos. Each column of Y is a duratio...
[ "Y", "=", "resample_mx", "(", "X", "incolpos", "outcolpos", ")", "X", "is", "taken", "as", "a", "set", "of", "columns", "each", "starting", "at", "time", "colpos", "and", "continuing", "until", "the", "start", "of", "the", "next", "column", ".", "Y", "...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L11-L45
[ "def", "resample_mx", "(", "X", ",", "incolpos", ",", "outcolpos", ")", ":", "noutcols", "=", "len", "(", "outcolpos", ")", "Y", "=", "np", ".", "zeros", "(", "(", "X", ".", "shape", "[", "0", "]", ",", "noutcols", ")", ")", "# assign 'end times' to ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
magnitude
Magnitude of a complex matrix.
msaf/algorithms/fmc2d/utils_2dfmc.py
def magnitude(X): """Magnitude of a complex matrix.""" r = np.real(X) i = np.imag(X) return np.sqrt(r * r + i * i);
def magnitude(X): """Magnitude of a complex matrix.""" r = np.real(X) i = np.imag(X) return np.sqrt(r * r + i * i);
[ "Magnitude", "of", "a", "complex", "matrix", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L47-L51
[ "def", "magnitude", "(", "X", ")", ":", "r", "=", "np", ".", "real", "(", "X", ")", "i", "=", "np", ".", "imag", "(", "X", ")", "return", "np", ".", "sqrt", "(", "r", "*", "r", "+", "i", "*", "i", ")" ]
9dbb57d77a1310465a65cc40f1641d083ca74385
test
json_to_bounds
Extracts the boundaries from a json file and puts them into an np array.
msaf/algorithms/fmc2d/utils_2dfmc.py
def json_to_bounds(segments_json): """Extracts the boundaries from a json file and puts them into an np array.""" f = open(segments_json) segments = json.load(f)["segments"] bounds = [] for segment in segments: bounds.append(segment["start"]) bounds.append(bounds[-1] + segments[-...
def json_to_bounds(segments_json): """Extracts the boundaries from a json file and puts them into an np array.""" f = open(segments_json) segments = json.load(f)["segments"] bounds = [] for segment in segments: bounds.append(segment["start"]) bounds.append(bounds[-1] + segments[-...
[ "Extracts", "the", "boundaries", "from", "a", "json", "file", "and", "puts", "them", "into", "an", "np", "array", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L53-L63
[ "def", "json_to_bounds", "(", "segments_json", ")", ":", "f", "=", "open", "(", "segments_json", ")", "segments", "=", "json", ".", "load", "(", "f", ")", "[", "\"segments\"", "]", "bounds", "=", "[", "]", "for", "segment", "in", "segments", ":", "boun...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
json_bounds_to_bounds
Extracts the boundaries from a bounds json file and puts them into an np array.
msaf/algorithms/fmc2d/utils_2dfmc.py
def json_bounds_to_bounds(bounds_json): """Extracts the boundaries from a bounds json file and puts them into an np array.""" f = open(bounds_json) segments = json.load(f)["bounds"] bounds = [] for segment in segments: bounds.append(segment["start"]) f.close() return np.asarr...
def json_bounds_to_bounds(bounds_json): """Extracts the boundaries from a bounds json file and puts them into an np array.""" f = open(bounds_json) segments = json.load(f)["bounds"] bounds = [] for segment in segments: bounds.append(segment["start"]) f.close() return np.asarr...
[ "Extracts", "the", "boundaries", "from", "a", "bounds", "json", "file", "and", "puts", "them", "into", "an", "np", "array", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L65-L74
[ "def", "json_bounds_to_bounds", "(", "bounds_json", ")", ":", "f", "=", "open", "(", "bounds_json", ")", "segments", "=", "json", ".", "load", "(", "f", ")", "[", "\"bounds\"", "]", "bounds", "=", "[", "]", "for", "segment", "in", "segments", ":", "bou...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
json_to_labels
Extracts the labels from a json file and puts them into an np array.
msaf/algorithms/fmc2d/utils_2dfmc.py
def json_to_labels(segments_json): """Extracts the labels from a json file and puts them into an np array.""" f = open(segments_json) segments = json.load(f)["segments"] labels = [] str_labels = [] for segment in segments: if not segment["label"] in str_labels: str_la...
def json_to_labels(segments_json): """Extracts the labels from a json file and puts them into an np array.""" f = open(segments_json) segments = json.load(f)["segments"] labels = [] str_labels = [] for segment in segments: if not segment["label"] in str_labels: str_la...
[ "Extracts", "the", "labels", "from", "a", "json", "file", "and", "puts", "them", "into", "an", "np", "array", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L76-L91
[ "def", "json_to_labels", "(", "segments_json", ")", ":", "f", "=", "open", "(", "segments_json", ")", "segments", "=", "json", ".", "load", "(", "f", ")", "[", "\"segments\"", "]", "labels", "=", "[", "]", "str_labels", "=", "[", "]", "for", "segment",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
json_to_beats
Extracts the beats from the beats_json_file and puts them into an np array.
msaf/algorithms/fmc2d/utils_2dfmc.py
def json_to_beats(beats_json_file): """Extracts the beats from the beats_json_file and puts them into an np array.""" f = open(beats_json_file, "r") beats_json = json.load(f) beats = [] for beat in beats_json["beats"]: beats.append(beat["start"]) f.close() return np.asarray(b...
def json_to_beats(beats_json_file): """Extracts the beats from the beats_json_file and puts them into an np array.""" f = open(beats_json_file, "r") beats_json = json.load(f) beats = [] for beat in beats_json["beats"]: beats.append(beat["start"]) f.close() return np.asarray(b...
[ "Extracts", "the", "beats", "from", "the", "beats_json_file", "and", "puts", "them", "into", "an", "np", "array", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L93-L102
[ "def", "json_to_beats", "(", "beats_json_file", ")", ":", "f", "=", "open", "(", "beats_json_file", ",", "\"r\"", ")", "beats_json", "=", "json", ".", "load", "(", "f", ")", "beats", "=", "[", "]", "for", "beat", "in", "beats_json", "[", "\"beats\"", "...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
compute_ffmc2d
Computes the 2D-Fourier Magnitude Coefficients.
msaf/algorithms/fmc2d/utils_2dfmc.py
def compute_ffmc2d(X): """Computes the 2D-Fourier Magnitude Coefficients.""" # 2d-fft fft2 = scipy.fftpack.fft2(X) # Magnitude fft2m = magnitude(fft2) # FFTshift and flatten fftshift = scipy.fftpack.fftshift(fft2m).flatten() #cmap = plt.cm.get_cmap('hot') #plt.imshow(np.log1p(scip...
def compute_ffmc2d(X): """Computes the 2D-Fourier Magnitude Coefficients.""" # 2d-fft fft2 = scipy.fftpack.fft2(X) # Magnitude fft2m = magnitude(fft2) # FFTshift and flatten fftshift = scipy.fftpack.fftshift(fft2m).flatten() #cmap = plt.cm.get_cmap('hot') #plt.imshow(np.log1p(scip...
[ "Computes", "the", "2D", "-", "Fourier", "Magnitude", "Coefficients", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/fmc2d/utils_2dfmc.py#L113-L130
[ "def", "compute_ffmc2d", "(", "X", ")", ":", "# 2d-fft", "fft2", "=", "scipy", ".", "fftpack", ".", "fft2", "(", "X", ")", "# Magnitude", "fft2m", "=", "magnitude", "(", "fft2", ")", "# FFTshift and flatten", "fftshift", "=", "scipy", ".", "fftpack", ".", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
SVD.frobenius_norm
Frobenius norm (||data - USV||) for a data matrix and a low rank approximation given by SVH using rank k for U and V Returns: frobenius norm: F = ||data - USV||
msaf/pymf/svd.py
def frobenius_norm(self): """ Frobenius norm (||data - USV||) for a data matrix and a low rank approximation given by SVH using rank k for U and V Returns: frobenius norm: F = ||data - USV|| """ if scipy.sparse.issparse(self.data): err = self....
def frobenius_norm(self): """ Frobenius norm (||data - USV||) for a data matrix and a low rank approximation given by SVH using rank k for U and V Returns: frobenius norm: F = ||data - USV|| """ if scipy.sparse.issparse(self.data): err = self....
[ "Frobenius", "norm", "(", "||data", "-", "USV||", ")", "for", "a", "data", "matrix", "and", "a", "low", "rank", "approximation", "given", "by", "SVH", "using", "rank", "k", "for", "U", "and", "V", "Returns", ":", "frobenius", "norm", ":", "F", "=", "...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/svd.py#L92-L107
[ "def", "frobenius_norm", "(", "self", ")", ":", "if", "scipy", ".", "sparse", ".", "issparse", "(", "self", ".", "data", ")", ":", "err", "=", "self", ".", "data", "-", "self", ".", "U", "*", "self", ".", "S", "*", "self", ".", "V", "err", "=",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
CNMF.factorize
Factorize s.t. WH = data Parameters ---------- niter : int number of iterations. show_progress : bool print some extra information to stdout. compute_h : bool iteratively update values for H. ...
msaf/pymf/cnmf.py
def factorize(self, niter=10, compute_w=True, compute_h=True, compute_err=True, show_progress=False): """ Factorize s.t. WH = data Parameters ---------- niter : int number of iterations. show_progress : bool ...
def factorize(self, niter=10, compute_w=True, compute_h=True, compute_err=True, show_progress=False): """ Factorize s.t. WH = data Parameters ---------- niter : int number of iterations. show_progress : bool ...
[ "Factorize", "s", ".", "t", ".", "WH", "=", "data" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/cnmf.py#L108-L187
[ "def", "factorize", "(", "self", ",", "niter", "=", "10", ",", "compute_w", "=", "True", ",", "compute_h", "=", "True", ",", "compute_err", "=", "True", ",", "show_progress", "=", "False", ")", ":", "if", "not", "hasattr", "(", "self", ",", "'W'", ")...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
cnmf
(Convex) Non-Negative Matrix Factorization. Parameters ---------- S: np.array(p, N) Features matrix. p row features and N column observations. rank: int Rank of decomposition niter: int Number of iterations to be used Returns ------- F: np.array Cluster ...
msaf/algorithms/cnmf/segmenter.py
def cnmf(S, rank, niter=500, hull=False): """(Convex) Non-Negative Matrix Factorization. Parameters ---------- S: np.array(p, N) Features matrix. p row features and N column observations. rank: int Rank of decomposition niter: int Number of iterations to be used Ret...
def cnmf(S, rank, niter=500, hull=False): """(Convex) Non-Negative Matrix Factorization. Parameters ---------- S: np.array(p, N) Features matrix. p row features and N column observations. rank: int Rank of decomposition niter: int Number of iterations to be used Ret...
[ "(", "Convex", ")", "Non", "-", "Negative", "Matrix", "Factorization", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/cnmf/segmenter.py#L17-L44
[ "def", "cnmf", "(", "S", ",", "rank", ",", "niter", "=", "500", ",", "hull", "=", "False", ")", ":", "if", "hull", ":", "nmf_mdl", "=", "pymf", ".", "CHNMF", "(", "S", ",", "num_bases", "=", "rank", ")", "else", ":", "nmf_mdl", "=", "pymf", "."...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
compute_labels
Computes the labels using the bounds.
msaf/algorithms/cnmf/segmenter.py
def compute_labels(X, rank, R, bound_idxs, niter=300): """Computes the labels using the bounds.""" try: F, G = cnmf(X, rank, niter=niter, hull=False) except: return [1] label_frames = filter_activation_matrix(G.T, R) label_frames = np.asarray(label_frames, dtype=int) #labels =...
def compute_labels(X, rank, R, bound_idxs, niter=300): """Computes the labels using the bounds.""" try: F, G = cnmf(X, rank, niter=niter, hull=False) except: return [1] label_frames = filter_activation_matrix(G.T, R) label_frames = np.asarray(label_frames, dtype=int) #labels =...
[ "Computes", "the", "labels", "using", "the", "bounds", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/cnmf/segmenter.py#L52-L75
[ "def", "compute_labels", "(", "X", ",", "rank", ",", "R", ",", "bound_idxs", ",", "niter", "=", "300", ")", ":", "try", ":", "F", ",", "G", "=", "cnmf", "(", "X", ",", "rank", ",", "niter", "=", "niter", ",", "hull", "=", "False", ")", "except"...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
filter_activation_matrix
Filters the activation matrix G, and returns a flattened copy.
msaf/algorithms/cnmf/segmenter.py
def filter_activation_matrix(G, R): """Filters the activation matrix G, and returns a flattened copy.""" #import pylab as plt #plt.imshow(G, interpolation="nearest", aspect="auto") #plt.show() idx = np.argmax(G, axis=1) max_idx = np.arange(G.shape[0]) max_idx = (max_idx, idx.flatten()) ...
def filter_activation_matrix(G, R): """Filters the activation matrix G, and returns a flattened copy.""" #import pylab as plt #plt.imshow(G, interpolation="nearest", aspect="auto") #plt.show() idx = np.argmax(G, axis=1) max_idx = np.arange(G.shape[0]) max_idx = (max_idx, idx.flatten()) ...
[ "Filters", "the", "activation", "matrix", "G", "and", "returns", "a", "flattened", "copy", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/cnmf/segmenter.py#L78-L95
[ "def", "filter_activation_matrix", "(", "G", ",", "R", ")", ":", "#import pylab as plt", "#plt.imshow(G, interpolation=\"nearest\", aspect=\"auto\")", "#plt.show()", "idx", "=", "np", ".", "argmax", "(", "G", ",", "axis", "=", "1", ")", "max_idx", "=", "np", ".", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_segmentation
Gets the segmentation (boundaries and labels) from the factorization matrices. Parameters ---------- X: np.array() Features matrix (e.g. chromagram) rank: int Rank of decomposition R: int Size of the median filter for activation matrix niter: int Number of it...
msaf/algorithms/cnmf/segmenter.py
def get_segmentation(X, rank, R, rank_labels, R_labels, niter=300, bound_idxs=None, in_labels=None): """ Gets the segmentation (boundaries and labels) from the factorization matrices. Parameters ---------- X: np.array() Features matrix (e.g. chromagram) rank: in...
def get_segmentation(X, rank, R, rank_labels, R_labels, niter=300, bound_idxs=None, in_labels=None): """ Gets the segmentation (boundaries and labels) from the factorization matrices. Parameters ---------- X: np.array() Features matrix (e.g. chromagram) rank: in...
[ "Gets", "the", "segmentation", "(", "boundaries", "and", "labels", ")", "from", "the", "factorization", "matrices", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/cnmf/segmenter.py#L98-L166
[ "def", "get_segmentation", "(", "X", ",", "rank", ",", "R", ",", "rank_labels", ",", "R_labels", ",", "niter", "=", "300", ",", "bound_idxs", "=", "None", ",", "in_labels", "=", "None", ")", ":", "#import pylab as plt", "#plt.imshow(X, interpolation=\"nearest\",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
Segmenter.processFlat
Main process. Returns ------- est_idxs : np.array(N) Estimated indeces for the segment boundaries in frames. est_labels : np.array(N-1) Estimated labels for the segments.
msaf/algorithms/cnmf/segmenter.py
def processFlat(self): """Main process. Returns ------- est_idxs : np.array(N) Estimated indeces for the segment boundaries in frames. est_labels : np.array(N-1) Estimated labels for the segments. """ # C-NMF params niter = self.con...
def processFlat(self): """Main process. Returns ------- est_idxs : np.array(N) Estimated indeces for the segment boundaries in frames. est_labels : np.array(N-1) Estimated labels for the segments. """ # C-NMF params niter = self.con...
[ "Main", "process", ".", "Returns", "-------", "est_idxs", ":", "np", ".", "array", "(", "N", ")", "Estimated", "indeces", "for", "the", "segment", "boundaries", "in", "frames", ".", "est_labels", ":", "np", ".", "array", "(", "N", "-", "1", ")", "Estim...
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/algorithms/cnmf/segmenter.py#L184-L231
[ "def", "processFlat", "(", "self", ")", ":", "# C-NMF params", "niter", "=", "self", ".", "config", "[", "\"niters\"", "]", "# Iterations for the MF and clustering", "# Preprocess to obtain features, times, and input boundary indeces", "F", "=", "self", ".", "_preprocess", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_boundaries_module
Obtains the boundaries module given a boundary algorithm identificator. Parameters ---------- boundaries_id: str Boundary algorithm identificator (e.g., foote, sf). Returns ------- module: object Object containing the selected boundary module. None for "ground truth".
msaf/run.py
def get_boundaries_module(boundaries_id): """Obtains the boundaries module given a boundary algorithm identificator. Parameters ---------- boundaries_id: str Boundary algorithm identificator (e.g., foote, sf). Returns ------- module: object Object containing the selected bo...
def get_boundaries_module(boundaries_id): """Obtains the boundaries module given a boundary algorithm identificator. Parameters ---------- boundaries_id: str Boundary algorithm identificator (e.g., foote, sf). Returns ------- module: object Object containing the selected bo...
[ "Obtains", "the", "boundaries", "module", "given", "a", "boundary", "algorithm", "identificator", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L20-L44
[ "def", "get_boundaries_module", "(", "boundaries_id", ")", ":", "if", "boundaries_id", "==", "\"gt\"", ":", "return", "None", "try", ":", "module", "=", "eval", "(", "algorithms", ".", "__name__", "+", "\".\"", "+", "boundaries_id", ")", "except", "AttributeEr...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
get_labels_module
Obtains the label module given a label algorithm identificator. Parameters ---------- labels_id: str Label algorithm identificator (e.g., fmc2d, cnmf). Returns ------- module: object Object containing the selected label module. None for not computing the labeling part o...
msaf/run.py
def get_labels_module(labels_id): """Obtains the label module given a label algorithm identificator. Parameters ---------- labels_id: str Label algorithm identificator (e.g., fmc2d, cnmf). Returns ------- module: object Object containing the selected label module. N...
def get_labels_module(labels_id): """Obtains the label module given a label algorithm identificator. Parameters ---------- labels_id: str Label algorithm identificator (e.g., fmc2d, cnmf). Returns ------- module: object Object containing the selected label module. N...
[ "Obtains", "the", "label", "module", "given", "a", "label", "algorithm", "identificator", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L47-L71
[ "def", "get_labels_module", "(", "labels_id", ")", ":", "if", "labels_id", "is", "None", ":", "return", "None", "try", ":", "module", "=", "eval", "(", "algorithms", ".", "__name__", "+", "\".\"", "+", "labels_id", ")", "except", "AttributeError", ":", "ra...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
run_hierarchical
Runs hierarchical algorithms with the specified identifiers on the audio_file. See run_algorithm for more information.
msaf/run.py
def run_hierarchical(audio_file, bounds_module, labels_module, frame_times, config, annotator_id=0): """Runs hierarchical algorithms with the specified identifiers on the audio_file. See run_algorithm for more information. """ # Sanity check if bounds_module is None: rai...
def run_hierarchical(audio_file, bounds_module, labels_module, frame_times, config, annotator_id=0): """Runs hierarchical algorithms with the specified identifiers on the audio_file. See run_algorithm for more information. """ # Sanity check if bounds_module is None: rai...
[ "Runs", "hierarchical", "algorithms", "with", "the", "specified", "identifiers", "on", "the", "audio_file", ".", "See", "run_algorithm", "for", "more", "information", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L74-L116
[ "def", "run_hierarchical", "(", "audio_file", ",", "bounds_module", ",", "labels_module", ",", "frame_times", ",", "config", ",", "annotator_id", "=", "0", ")", ":", "# Sanity check", "if", "bounds_module", "is", "None", ":", "raise", "NoHierBoundaryError", "(", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
run_flat
Runs the flat algorithms with the specified identifiers on the audio_file. See run_algorithm for more information.
msaf/run.py
def run_flat(file_struct, bounds_module, labels_module, frame_times, config, annotator_id): """Runs the flat algorithms with the specified identifiers on the audio_file. See run_algorithm for more information. """ # Get features to make code nicer features = config["features"].features ...
def run_flat(file_struct, bounds_module, labels_module, frame_times, config, annotator_id): """Runs the flat algorithms with the specified identifiers on the audio_file. See run_algorithm for more information. """ # Get features to make code nicer features = config["features"].features ...
[ "Runs", "the", "flat", "algorithms", "with", "the", "specified", "identifiers", "on", "the", "audio_file", ".", "See", "run_algorithm", "for", "more", "information", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L119-L167
[ "def", "run_flat", "(", "file_struct", ",", "bounds_module", ",", "labels_module", ",", "frame_times", ",", "config", ",", "annotator_id", ")", ":", "# Get features to make code nicer", "features", "=", "config", "[", "\"features\"", "]", ".", "features", "# Segment...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
run_algorithms
Runs the algorithms with the specified identifiers on the audio_file. Parameters ---------- file_struct: `msaf.io.FileStruct` Object with the file paths. boundaries_id: str Identifier of the boundaries algorithm to use ("gt" for ground truth). labels_id: str Identifier of th...
msaf/run.py
def run_algorithms(file_struct, boundaries_id, labels_id, config, annotator_id=0): """Runs the algorithms with the specified identifiers on the audio_file. Parameters ---------- file_struct: `msaf.io.FileStruct` Object with the file paths. boundaries_id: str Ident...
def run_algorithms(file_struct, boundaries_id, labels_id, config, annotator_id=0): """Runs the algorithms with the specified identifiers on the audio_file. Parameters ---------- file_struct: `msaf.io.FileStruct` Object with the file paths. boundaries_id: str Ident...
[ "Runs", "the", "algorithms", "with", "the", "specified", "identifiers", "on", "the", "audio_file", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L170-L217
[ "def", "run_algorithms", "(", "file_struct", ",", "boundaries_id", ",", "labels_id", ",", "config", ",", "annotator_id", "=", "0", ")", ":", "# Check that there are enough audio frames", "if", "config", "[", "\"features\"", "]", ".", "features", ".", "shape", "[",...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process_track
Prepares the parameters, runs the algorithms, and saves results. Parameters ---------- file_struct: `msaf.io.FileStruct` FileStruct containing the paths of the input files (audio file, features file, reference file, output estimation file). boundaries_id: str Identifier of the b...
msaf/run.py
def process_track(file_struct, boundaries_id, labels_id, config, annotator_id=0): """Prepares the parameters, runs the algorithms, and saves results. Parameters ---------- file_struct: `msaf.io.FileStruct` FileStruct containing the paths of the input files (audio file, ...
def process_track(file_struct, boundaries_id, labels_id, config, annotator_id=0): """Prepares the parameters, runs the algorithms, and saves results. Parameters ---------- file_struct: `msaf.io.FileStruct` FileStruct containing the paths of the input files (audio file, ...
[ "Prepares", "the", "parameters", "runs", "the", "algorithms", "and", "saves", "results", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L220-L262
[ "def", "process_track", "(", "file_struct", ",", "boundaries_id", ",", "labels_id", ",", "config", ",", "annotator_id", "=", "0", ")", ":", "logging", ".", "info", "(", "\"Segmenting %s\"", "%", "file_struct", ".", "audio_file", ")", "# Get features", "config", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
process
Main process to segment a file or a collection of files. Parameters ---------- in_path: str Input path. If a directory, MSAF will function in collection mode. If audio file, MSAF will be in single file mode. annot_beats: bool Whether to use annotated beats or not. feature: s...
msaf/run.py
def process(in_path, annot_beats=False, feature="pcp", framesync=False, boundaries_id=msaf.config.default_bound_id, labels_id=msaf.config.default_label_id, hier=False, sonify_bounds=False, plot=False, n_jobs=4, annotator_id=0, config=None, out_bounds="out_bounds.wav", out...
def process(in_path, annot_beats=False, feature="pcp", framesync=False, boundaries_id=msaf.config.default_bound_id, labels_id=msaf.config.default_label_id, hier=False, sonify_bounds=False, plot=False, n_jobs=4, annotator_id=0, config=None, out_bounds="out_bounds.wav", out...
[ "Main", "process", "to", "segment", "a", "file", "or", "a", "collection", "of", "files", "." ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/run.py#L265-L368
[ "def", "process", "(", "in_path", ",", "annot_beats", "=", "False", ",", "feature", "=", "\"pcp\"", ",", "framesync", "=", "False", ",", "boundaries_id", "=", "msaf", ".", "config", ".", "default_bound_id", ",", "labels_id", "=", "msaf", ".", "config", "."...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
AA.update_w
alternating least squares step, update W under the convexity constraint
msaf/pymf/aa.py
def update_w(self): """ alternating least squares step, update W under the convexity constraint """ def update_single_w(i): """ compute single W[:,i] """ # optimize beta using qp solver from cvxopt FB = base.matrix(np.float64(np.dot(-self.data.T, W_hat[:,i...
def update_w(self): """ alternating least squares step, update W under the convexity constraint """ def update_single_w(i): """ compute single W[:,i] """ # optimize beta using qp solver from cvxopt FB = base.matrix(np.float64(np.dot(-self.data.T, W_hat[:,i...
[ "alternating", "least", "squares", "step", "update", "W", "under", "the", "convexity", "constraint" ]
urinieto/msaf
python
https://github.com/urinieto/msaf/blob/9dbb57d77a1310465a65cc40f1641d083ca74385/msaf/pymf/aa.py#L113-L134
[ "def", "update_w", "(", "self", ")", ":", "def", "update_single_w", "(", "i", ")", ":", "\"\"\" compute single W[:,i] \"\"\"", "# optimize beta using qp solver from cvxopt", "FB", "=", "base", ".", "matrix", "(", "np", ".", "float64", "(", "np", ".", "dot", ...
9dbb57d77a1310465a65cc40f1641d083ca74385
test
main
Main Entry point for translator and argument parser
translate/__main__.py
def main(): ''' Main Entry point for translator and argument parser ''' args = command_line() translate = partial(translator, args.source, args.dest, version=' '.join([__version__, __build__])) return source(spool(set_task(translate, translit=args.translit)), args.t...
def main(): ''' Main Entry point for translator and argument parser ''' args = command_line() translate = partial(translator, args.source, args.dest, version=' '.join([__version__, __build__])) return source(spool(set_task(translate, translit=args.translit)), args.t...
[ "Main", "Entry", "point", "for", "translator", "and", "argument", "parser" ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/__main__.py#L107-L115
[ "def", "main", "(", ")", ":", "args", "=", "command_line", "(", ")", "translate", "=", "partial", "(", "translator", ",", "args", ".", "source", ",", "args", ".", "dest", ",", "version", "=", "' '", ".", "join", "(", "[", "__version__", ",", "__build...
fe6279b2ee353f42ce73333ffae104e646311956
test
coroutine
Initializes coroutine essentially priming it to the yield statement. Used as a decorator over functions that generate coroutines. .. code-block:: python # Basic coroutine producer/consumer pattern from translate import coroutine @coroutine def coroutine_foo(bar): t...
translate/coroutines.py
def coroutine(func): """ Initializes coroutine essentially priming it to the yield statement. Used as a decorator over functions that generate coroutines. .. code-block:: python # Basic coroutine producer/consumer pattern from translate import coroutine @coroutine def ...
def coroutine(func): """ Initializes coroutine essentially priming it to the yield statement. Used as a decorator over functions that generate coroutines. .. code-block:: python # Basic coroutine producer/consumer pattern from translate import coroutine @coroutine def ...
[ "Initializes", "coroutine", "essentially", "priming", "it", "to", "the", "yield", "statement", ".", "Used", "as", "a", "decorator", "over", "functions", "that", "generate", "coroutines", "." ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/coroutines.py#L24-L59
[ "def", "coroutine", "(", "func", ")", ":", "@", "wraps", "(", "func", ")", "def", "initialization", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "start", "=", "func", "(", "*", "args", ",", "*", "*", "kwargs", ")", "next", "(", "start", ...
fe6279b2ee353f42ce73333ffae104e646311956
test
accumulator
Generic accumulator function. .. code-block:: python # Simplest Form >>> a = 'this' + ' ' >>> b = 'that' >>> c = functools.reduce(accumulator, a, b) >>> c 'this that' # The type of the initial value determines output type. >>> a = 5 >>> b = ...
translate/coroutines.py
def accumulator(init, update): """ Generic accumulator function. .. code-block:: python # Simplest Form >>> a = 'this' + ' ' >>> b = 'that' >>> c = functools.reduce(accumulator, a, b) >>> c 'this that' # The type of the initial value determines outp...
def accumulator(init, update): """ Generic accumulator function. .. code-block:: python # Simplest Form >>> a = 'this' + ' ' >>> b = 'that' >>> c = functools.reduce(accumulator, a, b) >>> c 'this that' # The type of the initial value determines outp...
[ "Generic", "accumulator", "function", "." ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/coroutines.py#L62-L91
[ "def", "accumulator", "(", "init", ",", "update", ")", ":", "return", "(", "init", "+", "len", "(", "update", ")", "if", "isinstance", "(", "init", ",", "int", ")", "else", "init", "+", "update", ")" ]
fe6279b2ee353f42ce73333ffae104e646311956
test
write_stream
:param script: Translated Text :type script: Iterable :param output: Output Type (either 'trans' or 'translit') :type output: String
translate/coroutines.py
def write_stream(script, output='trans'): """ :param script: Translated Text :type script: Iterable :param output: Output Type (either 'trans' or 'translit') :type output: String """ first = operator.itemgetter(0) sentence, _ = script printer = partial(print, file=sys.stdout, en...
def write_stream(script, output='trans'): """ :param script: Translated Text :type script: Iterable :param output: Output Type (either 'trans' or 'translit') :type output: String """ first = operator.itemgetter(0) sentence, _ = script printer = partial(print, file=sys.stdout, en...
[ ":", "param", "script", ":", "Translated", "Text", ":", "type", "script", ":", "Iterable" ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/coroutines.py#L94-L114
[ "def", "write_stream", "(", "script", ",", "output", "=", "'trans'", ")", ":", "first", "=", "operator", ".", "itemgetter", "(", "0", ")", "sentence", ",", "_", "=", "script", "printer", "=", "partial", "(", "print", ",", "file", "=", "sys", ".", "st...
fe6279b2ee353f42ce73333ffae104e646311956
test
set_task
Task Setter Coroutine End point destination coroutine of a purely consumer type. Delegates Text IO to the `write_stream` function. :param translation_function: Translator :type translation_function: Function :param translit: Transliteration Switch :type translit: Boolean
translate/coroutines.py
def set_task(translator, translit=False): """ Task Setter Coroutine End point destination coroutine of a purely consumer type. Delegates Text IO to the `write_stream` function. :param translation_function: Translator :type translation_function: Function :param translit: Transliteration Sw...
def set_task(translator, translit=False): """ Task Setter Coroutine End point destination coroutine of a purely consumer type. Delegates Text IO to the `write_stream` function. :param translation_function: Translator :type translation_function: Function :param translit: Transliteration Sw...
[ "Task", "Setter", "Coroutine" ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/coroutines.py#L120-L149
[ "def", "set_task", "(", "translator", ",", "translit", "=", "False", ")", ":", "# Initialize Task Queue", "task", "=", "str", "(", ")", "queue", "=", "list", "(", ")", "# Function Partial", "output", "=", "(", "'translit'", "if", "translit", "else", "'trans'...
fe6279b2ee353f42ce73333ffae104e646311956
test
spool
Consumes text streams and spools them together for more io efficient processes. :param iterable: Sends text stream for further processing :type iterable: Coroutine :param maxlen: Maximum query string size :type maxlen: Integer
translate/coroutines.py
def spool(iterable, maxlen=1250): """ Consumes text streams and spools them together for more io efficient processes. :param iterable: Sends text stream for further processing :type iterable: Coroutine :param maxlen: Maximum query string size :type maxlen: Integer """ words = int()...
def spool(iterable, maxlen=1250): """ Consumes text streams and spools them together for more io efficient processes. :param iterable: Sends text stream for further processing :type iterable: Coroutine :param maxlen: Maximum query string size :type maxlen: Integer """ words = int()...
[ "Consumes", "text", "streams", "and", "spools", "them", "together", "for", "more", "io", "efficient", "processes", "." ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/coroutines.py#L152-L180
[ "def", "spool", "(", "iterable", ",", "maxlen", "=", "1250", ")", ":", "words", "=", "int", "(", ")", "text", "=", "str", "(", ")", "try", ":", "while", "True", ":", "while", "words", "<", "maxlen", ":", "stream", "=", "yield", "text", "=", "redu...
fe6279b2ee353f42ce73333ffae104e646311956
test
source
Coroutine starting point. Produces text stream and forwards to consumers :param target: Target coroutine consumer :type target: Coroutine :param inputstream: Input Source :type inputstream: BufferedTextIO Object
translate/coroutines.py
def source(target, inputstream=sys.stdin): """ Coroutine starting point. Produces text stream and forwards to consumers :param target: Target coroutine consumer :type target: Coroutine :param inputstream: Input Source :type inputstream: BufferedTextIO Object """ for line in inputstream...
def source(target, inputstream=sys.stdin): """ Coroutine starting point. Produces text stream and forwards to consumers :param target: Target coroutine consumer :type target: Coroutine :param inputstream: Input Source :type inputstream: BufferedTextIO Object """ for line in inputstream...
[ "Coroutine", "starting", "point", ".", "Produces", "text", "stream", "and", "forwards", "to", "consumers" ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/coroutines.py#L183-L204
[ "def", "source", "(", "target", ",", "inputstream", "=", "sys", ".", "stdin", ")", ":", "for", "line", "in", "inputstream", ":", "while", "len", "(", "line", ")", ">", "600", ":", "init", ",", "sep", ",", "line", "=", "line", ".", "partition", "(",...
fe6279b2ee353f42ce73333ffae104e646311956
test
push_url
Decorates a function returning the url of translation API. Creates and maintains HTTP connection state Returns a dict response object from the server containing the translated text and metadata of the request body :param interface: Callable Request Interface :type interface: Function
translate/translator.py
def push_url(interface): ''' Decorates a function returning the url of translation API. Creates and maintains HTTP connection state Returns a dict response object from the server containing the translated text and metadata of the request body :param interface: Callable Request Interface :t...
def push_url(interface): ''' Decorates a function returning the url of translation API. Creates and maintains HTTP connection state Returns a dict response object from the server containing the translated text and metadata of the request body :param interface: Callable Request Interface :t...
[ "Decorates", "a", "function", "returning", "the", "url", "of", "translation", "API", ".", "Creates", "and", "maintains", "HTTP", "connection", "state" ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/translator.py#L22-L57
[ "def", "push_url", "(", "interface", ")", ":", "@", "functools", ".", "wraps", "(", "interface", ")", "def", "connection", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "\"\"\"\n Extends and wraps a HTTP interface.\n\n :return: Response Content\n ...
fe6279b2ee353f42ce73333ffae104e646311956
test
translator
Returns the url encoded string that will be pushed to the translation server for parsing. List of acceptable language codes for source and target languages can be found as a JSON file in the etc directory. Some source languages are limited in scope of the possible target languages that are availab...
translate/translator.py
def translator(source, target, phrase, version='0.0 test', charset='utf-8'): """ Returns the url encoded string that will be pushed to the translation server for parsing. List of acceptable language codes for source and target languages can be found as a JSON file in the etc directory. Some so...
def translator(source, target, phrase, version='0.0 test', charset='utf-8'): """ Returns the url encoded string that will be pushed to the translation server for parsing. List of acceptable language codes for source and target languages can be found as a JSON file in the etc directory. Some so...
[ "Returns", "the", "url", "encoded", "string", "that", "will", "be", "pushed", "to", "the", "translation", "server", "for", "parsing", "." ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/translator.py#L60-L102
[ "def", "translator", "(", "source", ",", "target", ",", "phrase", ",", "version", "=", "'0.0 test'", ",", "charset", "=", "'utf-8'", ")", ":", "url", "=", "'https://translate.google.com/translate_a/single'", "agent", "=", "'User-Agent'", ",", "'py-translate v{}'", ...
fe6279b2ee353f42ce73333ffae104e646311956
test
translation_table
Opens up file located under the etc directory containing language codes and prints them out. :param file: Path to location of json file :type file: str :return: language codes :rtype: dict
translate/languages.py
def translation_table(language, filepath='supported_translations.json'): ''' Opens up file located under the etc directory containing language codes and prints them out. :param file: Path to location of json file :type file: str :return: language codes :rtype: dict ''' fullpath = a...
def translation_table(language, filepath='supported_translations.json'): ''' Opens up file located under the etc directory containing language codes and prints them out. :param file: Path to location of json file :type file: str :return: language codes :rtype: dict ''' fullpath = a...
[ "Opens", "up", "file", "located", "under", "the", "etc", "directory", "containing", "language", "codes", "and", "prints", "them", "out", "." ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/languages.py#L12-L32
[ "def", "translation_table", "(", "language", ",", "filepath", "=", "'supported_translations.json'", ")", ":", "fullpath", "=", "abspath", "(", "join", "(", "dirname", "(", "__file__", ")", ",", "'etc'", ",", "filepath", ")", ")", "if", "not", "isfile", "(", ...
fe6279b2ee353f42ce73333ffae104e646311956
test
print_table
Generates a formatted table of language codes
translate/languages.py
def print_table(language): ''' Generates a formatted table of language codes ''' table = translation_table(language) for code, name in sorted(table.items(), key=operator.itemgetter(0)): print(u'{language:<8} {name:\u3000<20}'.format( name=name, language=code )) retu...
def print_table(language): ''' Generates a formatted table of language codes ''' table = translation_table(language) for code, name in sorted(table.items(), key=operator.itemgetter(0)): print(u'{language:<8} {name:\u3000<20}'.format( name=name, language=code )) retu...
[ "Generates", "a", "formatted", "table", "of", "language", "codes" ]
jjangsangy/py-translate
python
https://github.com/jjangsangy/py-translate/blob/fe6279b2ee353f42ce73333ffae104e646311956/translate/languages.py#L35-L46
[ "def", "print_table", "(", "language", ")", ":", "table", "=", "translation_table", "(", "language", ")", "for", "code", ",", "name", "in", "sorted", "(", "table", ".", "items", "(", ")", ",", "key", "=", "operator", ".", "itemgetter", "(", "0", ")", ...
fe6279b2ee353f42ce73333ffae104e646311956