Skip to content

Commit

Permalink
Merge pull request #19 from gionstegmann/fix-sklearn-dependency
Browse files Browse the repository at this point in the history
Replace deprecated sklearn with scikit-learn in dependencies
  • Loading branch information
ffont authored May 22, 2024
2 parents e91419d + c9d0cc5 commit 1ff1d47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ The package can also be installed locally and be made editable. To do this, clo


## Dependencies
The script can also be downloaded manually from the github repository (https://github.com/AudioCommons/timbral_models). If doing this, dependencies will need to be manually installed. The timbral models rely on several other easily accessible python packages: `numpy`, `soundfile`, `librosa`, `sklearn`, and `scipy`. These are all easily installed using the `pip install` command. e.g.
The script can also be downloaded manually from the github repository (https://github.com/AudioCommons/timbral_models). If doing this, dependencies will need to be manually installed. The timbral models rely on several other easily accessible python packages: `numpy`, `soundfile`, `librosa`, `scikit-learn`, and `scipy`. These are all easily installed using the `pip install` command. e.g.
```
$ pip install numpy
$ pip install soundfile
$ pip install librosa
$ pip install scipy
$ pip install sklearn
$ pip install scikit-learn
$ pip install six
$ pip install pyloudnorm
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'soundfile',
'scipy',
'librosa',
'sklearn',
'scikit-learn',
'pyloudnorm',
'six'
],
Expand Down

0 comments on commit 1ff1d47

Please sign in to comment.