This website works better with JavaScript.
Почетна
Преглед
Помоћ
Регистрација
Пријавите Се
bertieb
/
itproject-code
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
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…
Откажи
Сачувај