Update freqai-feature-engineering.md

It seems that the closing parenthesis ) is missing at the end of line 65 in the pipeline example
This commit is contained in:
Hom Bahrani
2023-07-17 13:59:09 +01:00
committed by GitHub
parent ca934c7568
commit 8738b8d551

View File

@@ -261,7 +261,7 @@ class MyFreqaiModel(BaseRegressionModel):
"""
feature_pipeline = Pipeline([
('qt', SKLearnWrapper(QuantileTransformer(output_distribution='normal'))),
('di', ds.DissimilarityIndex(di_threshold=1)
('di', ds.DissimilarityIndex(di_threshold=1))
])
return feature_pipeline