This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
bertieb
/
itproject-code
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
feat: add FeatureExtractor interface
or at least what passes for an interface in python
main
Rob Hallam
4 months ago
parent
c2fb85dfcd
commit
5bcb115162
1 changed files
with
15 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
pipeline/feature_extractors.py
+ 15
- 0
pipeline/feature_extractors.py
View File
@@ -0,0 +1,15 @@
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
Write
Preview
Loading…
Cancel
Save