Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
Add warnings about libXtract features
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed May 3, 2016
1 parent da800c8 commit b904cfe
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions sonic_annotator_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

class SonicAnnotatorAnalyzer(object):
AVAILABLE_FEATURES = {
'spectral_centroid', # Warning: may produce wrong/suspect results on windows
# Warning: may produce odd results on windows
# See https://github.com/jamiebullock/LibXtract/issues/65
'spectral_centroid',
'bark_0',
'bark_1',
'bark_2',
Expand All @@ -33,11 +35,15 @@ class SonicAnnotatorAnalyzer(object):
'bark_23',
'bark_24',
'bark_25',

# Warning: May not be useful
'tristimulus_1',
'tristimulus_2',
'tristimulus_3',
'kurtosis', # Warning: may produce slightly shorter series
'spectral_variance', # Warning: may produce slightly shorter series

# Warning: may produce slightly shorter series that need to be padded
'kurtosis',
'spectral_variance',
}

# A mapping from individual vector entries to the name of the transform they belong two
Expand Down

0 comments on commit b904cfe

Please sign in to comment.