This website works better with JavaScript.
首頁
探索
說明
註冊
登入
bertieb
/
itproject-code
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
feat: add FeatureExtractor interface
or at least what passes for an interface in python
main
Rob Hallam
4 月之前
父節點
c2fb85dfcd
當前提交
5bcb115162
共有
1 個文件被更改
,包括
15 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
取消
儲存