本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
註冊
登入
bertieb
/
itproject-code
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
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…
取消
儲存