-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] add EnCodec model embeddings to FAD calculation (#23)
* [chore] added gitignore for cleaner commiting * [feature] added encodec embeddings to FAD calculation * [feature] fixed-up encodec FAD and added 24khz test to notebook * [feature] added encodec as requirement and 48khz model test to notebook * [fix] added missing channels variable definition
- Loading branch information
Showing
5 changed files
with
171 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Python Project | ||
checkpoints/ | ||
__pycache__/ | ||
.conda/ | ||
.pytest_cache/ | ||
|
||
*.egg-info/ | ||
``` |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ dependencies = [ | |
'laion_clap', | ||
'transformers<=4.30.2', | ||
'torchaudio', | ||
'encodec', | ||
] | ||
|
||
[project.urls] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ torchvision | |
|
||
laion_clap | ||
transformers<=4.30.2 | ||
torchaudio | ||
torchaudio | ||
encodec |
This file contains 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