Skip to content

Commit

Permalink
update librosa to 0.10.2.post1
Browse files Browse the repository at this point in the history
  • Loading branch information
rsujeevan committed May 22, 2024
1 parent 2222582 commit 3cb097b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/audio_to_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class AudioToMelSpectogram:
For Ubuntu, required to do: sudo apt-get install libsndfile1 libsndfile1-dev
For Centos, required to do: sudo yum install libsndfile libsndfile-dev
"""
_modules_needed_by_name = ["librosa==0.8.1"]
_modules_needed_by_name = ["librosa==0.10.2.post1"]

def __init__(
self, min_seconds=2, sampling_rate=44100, n_mels=128, hop_length=345 * 2
Expand Down
2 changes: 1 addition & 1 deletion transformers/speech/audio_MFCC_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class AudioMFCCTransformer(CustomTransformer):
_unsupervised = True

_modules_needed_by_name = ['librosa==0.8.1']
_modules_needed_by_name = ['librosa==0.10.2.post1']
_parallel_task = True # if enabled, params_base['n_jobs'] will be >= 1 (adaptive to system), otherwise 1
_can_use_gpu = True # if enabled, will use special job scheduler for GPUs
_can_use_multi_gpu = True # if enabled, can get access to multiple GPUs for single transformer (experimental)
Expand Down

0 comments on commit 3cb097b

Please sign in to comment.