瀏覽代碼

feat: add FeatureExtractor interface

or at least what passes for an interface in python
main
Rob Hallam 3 月之前
父節點
當前提交
5bcb115162
共有 1 個文件被更改,包括 15 次插入0 次删除
  1. +15
    -0
      pipeline/feature_extractors.py

+ 15
- 0
pipeline/feature_extractors.py 查看文件

@@ -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

Loading…
取消
儲存