This commit is contained in:
Matthias 2022-08-06 15:02:35 +02:00
parent b16f57cb0d
commit 47a30047eb
2 changed files with 2 additions and 2 deletions

View File

@ -230,7 +230,7 @@ class FreqaiDataDrawer:
# dynamic df returned to strategy and plotted in frequi # dynamic df returned to strategy and plotted in frequi
mrv_df = self.model_return_values[pair] = pd.DataFrame() mrv_df = self.model_return_values[pair] = pd.DataFrame()
# if user reused `idenfitier` in config and has historical predictions collected, loadthem # if user reused `identifier` in config and has historical predictions collected, load them
# so that frequi remains uninterrupted after a crash # so that frequi remains uninterrupted after a crash
hist_df = self.historic_predictions hist_df = self.historic_predictions
if pair in hist_df: if pair in hist_df:

View File

@ -526,7 +526,7 @@ class IFreqaiModel(ABC):
this function will not be called. In that case, "real" predictions this function will not be called. In that case, "real" predictions
will be appended to the loaded set of historic predictions. will be appended to the loaded set of historic predictions.
:param: df: DataFrame = the dataframe containing the training feature data :param: df: DataFrame = the dataframe containing the training feature data
:param: model: Any = A model which was `fit` using a common librariy such as :param: model: Any = A model which was `fit` using a common library such as
catboost or lightgbm catboost or lightgbm
:param: dk: FreqaiDataKitchen = object containing methods for data analysis :param: dk: FreqaiDataKitchen = object containing methods for data analysis
:param: pair: str = current pair :param: pair: str = current pair