From 2a3973091bdc270732c9a1df375de16bc902d7ce Mon Sep 17 00:00:00 2001 From: Rob Hallam <0504004h@student.gla.ac.uk> Date: Sat, 17 Aug 2024 15:25:43 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20change=20pass=20=E2=86=92=20docstri?= =?UTF-8?q?ng=20for=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline/feature_extractors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pipeline/feature_extractors.py b/pipeline/feature_extractors.py index fbcffb6..513386d 100644 --- a/pipeline/feature_extractors.py +++ b/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.