Browse Source

refactor: change pass → docstring for tests

main
Rob Hallam 2 months ago
parent
commit
2a3973091b
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      pipeline/feature_extractors.py

+ 3
- 3
pipeline/feature_extractors.py View File

@@ -17,13 +17,13 @@ class FeatureExtractor(ABC):
"""Feature extractor interface.""" """Feature extractor interface."""
# TODO: #API -- decide if .features will be a member variable # TODO: #API -- decide if .features will be a member variable
def setup(self): def setup(self):
pass
"""Setup the feature extractor -- validate input files & config"""


def run(self): def run(self):
pass
"""Run the feature extractor -- extract features"""


def teardown(self): def teardown(self):
pass
"""Teardown the feature extractor -- clean up any temporary files created during setup"""


class LaughterFeatureExtractor(FeatureExtractor): class LaughterFeatureExtractor(FeatureExtractor):
"""Feature extractor for laughter detection. """Feature extractor for laughter detection.


Loading…
Cancel
Save