You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from abc import ABC
- import logging
- logger = logging.getLogger(__name__)
-
- class FeatureExtractor(ABC):
- """Feature extractor interface."""
- # TODO: #API -- decide if .features will be a member variable
- def setup(self):
- pass
-
- def run(self):
- pass
-
- def teardown(self):
- pass
|