mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-26 13:18:31 +08:00
zipline.modelling.* -> zipline.pipeline.* zipline.data.ffc.loaders -> zipline.pipeline.loaders tests/modelling -> tests/pipeline
10 lines
97 B
Python
10 lines
97 B
Python
"""
|
|
classifier.py
|
|
"""
|
|
|
|
from zipline.pipeline.term import Term
|
|
|
|
|
|
class Classifier(Term):
|
|
pass
|