瀏覽代碼

refactor: change pass → docstring for tests

main
Rob Hallam 2 月之前
父節點
當前提交
2a3973091b
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      pipeline/feature_extractors.py

+ 3
- 3
pipeline/feature_extractors.py 查看文件

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

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

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

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


Loading…
取消
儲存