add a warning to __init__ for get_corr_dataframes

This commit is contained in:
robcaulk 2022-10-31 18:18:00 +01:00
parent e6a70d95df
commit 97df232ac6
1 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,8 @@ class IFreqaiModel(ABC):
self.continual_learning = self.freqai_info.get('continual_learning', False)
self.plot_features = self.ft_params.get("plot_feature_importances", 0)
self.corr_dataframes: Dict[str, DataFrame] = {}
# get_corr_dataframes is controlling the caching of corr_dataframes
# for improved performance. Careful with this boolean.
self.get_corr_dataframes: bool = True
self._threads: List[threading.Thread] = []