fix return type in BaseTensorFlowModel
This commit is contained in:
parent
ad25a4cb56
commit
3f149c4067
@ -1,5 +1,5 @@
|
||||
import logging
|
||||
from typing import Tuple
|
||||
from typing import Any
|
||||
|
||||
from pandas import DataFrame
|
||||
|
||||
@ -27,7 +27,7 @@ class BaseTensorFlowModel(IFreqaiModel):
|
||||
|
||||
def train(
|
||||
self, unfiltered_dataframe: DataFrame, pair: str, dk: FreqaiDataKitchen
|
||||
) -> Tuple[DataFrame, DataFrame]:
|
||||
) -> Any:
|
||||
"""
|
||||
Filter the training data and train a model to it. Train makes heavy use of the datakitchen
|
||||
for storing, saving, loading, and analyzing the data.
|
||||
|
Loading…
Reference in New Issue
Block a user