Skip to content

Commit

Permalink
0.74.6
Browse files Browse the repository at this point in the history
  • Loading branch information
FBurkhardt committed Dec 15, 2023
1 parent 3313d8a commit 495d4ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

Version 0.74.6
--------------
* added standard Wav2vec2 model

Version 0.74.5
--------------
* added praat feature extractor for one sample
Expand Down
2 changes: 1 addition & 1 deletion nkululeko/constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION="0.74.5"
VERSION="0.74.6"
SAMPLING_RATE = 16000
2 changes: 1 addition & 1 deletion nkululeko/feat_extract/feats_wav2vec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, name, data_df, feat_type):
cuda = "cuda" if torch.cuda.is_available() else "cpu"
self.device = self.util.config_val("MODEL", "device", cuda)
self.model_initialized = False
if feat_type == "wav2vec":
if feat_type == "wav2vec" or feat_type == "wav2vec2":
self.feat_type = "wav2vec2-large-robust-ft-swbd-300h"
else:
self.feat_type = feat_type
Expand Down

0 comments on commit 495d4ab

Please sign in to comment.