Skip to content

Commit

Permalink
fix feat_dict
Browse files Browse the repository at this point in the history
There was a typo in the features dictionary for DeepSpectrum features. The dimensions for this feature set have been increased to 4096.
  • Loading branch information
aliceebaird committed May 24, 2022
1 parent c8c5ab3 commit 74afddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ExVo2022/ExVo-MultiTask/dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def create(
feat_dict = {
"ComParE": [",", "infer", 1, 6373],
"eGeMAPS": [",", "infer", 1, 88],
"DeepSpectrum": [",", "infer", 1, 4095],
"DeepSpectrum": [",", "infer", 1, 4096],
"openXBOW/125": [",", None, 1, 125],
"openXBOW/250": [",", None, 1, 250],
"openXBOW/500": [",", None, 1, 500],
Expand Down Expand Up @@ -150,7 +150,7 @@ def load(feature_type, store_name):
feat_dict = {
"ComParE": [";", "infer", 2, 6373],
"eGeMAPS": [";", "infer", 2, 88],
"DeepSpectrum": [",", "infer", 2, 4095],
"DeepSpectrum": [",", "infer", 2, 4096],
"openXBOW/125": [",", None, 1, 125],
"openXBOW/250": [",", None, 1, 250],
"openXBOW/500": [",", None, 1, 500],
Expand Down

0 comments on commit 74afddb

Please sign in to comment.