mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 02:33:55 +00:00
15 lines
493 B
Python
15 lines
493 B
Python
# ensure users can still use a non-torch freqai version
|
|
try:
|
|
from freqtrade.freqai.tensorboard import TensorBoardCallback, TensorboardLogger
|
|
TBLogger = TensorboardLogger
|
|
TBCallback = TensorBoardCallback
|
|
except ModuleNotFoundError:
|
|
from freqtrade.freqai.tensorboard import BaseTensorBoardCallback, BaseTensorboardLogger
|
|
TBLogger = BaseTensorboardLogger # type: ignore
|
|
TBCallback = BaseTensorBoardCallback # type: ignore
|
|
|
|
__all__ = (
|
|
"TBLogger",
|
|
"TBCallback"
|
|
)
|