mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-23 07:48:09 +00:00
feat(Models): added StaticAverageModel for average ensembling & StaticNaiveModel (#64)
* feat(Models): added StaticAverageModel for average ensembling * feat(Models): made sure we only pipe in predictions to StaticAverageModel, added StaticNaiveModel as potential baseline * chore(Models): removed unnecessary commented out code
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ class StaticMomentumModel(Model):
|
||||
Model that uses only one feature: momentum. It's positive if momentum is greater than 0, otherwise it's negative.
|
||||
'''
|
||||
|
||||
data_format = 'dataframe'
|
||||
# data_format = 'dataframe'
|
||||
data_scaling = 'unscaled'
|
||||
only_column = 'mom'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user