This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import measures | |
import random | |
import string | |
import numpy as np | |
np.random.seed(0) | |
n_digits = 3 | |
n_catalog = 50 | |
n_ranking = 10 | |
k = 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import numpy | |
import audioread | |
import librosa | |
__available_post_processing_methods__ = {} | |
def load_audio(filename, sr, mono): |