add debug message to timerange

This commit is contained in:
robcaulk 2022-06-03 17:14:07 +02:00
parent f2762e3b4b
commit e8c0dcf9f3

View File

@ -743,7 +743,7 @@ class FreqaiDataKitchen:
logger.warning('FreqAI could not detect max timeframe and therefore may not ' logger.warning('FreqAI could not detect max timeframe and therefore may not '
'download the proper amount of data for training') 'download the proper amount of data for training')
# logger.info(f'Extending data download by {additional_seconds/SECONDS_IN_DAY} days') logger.info(f'Extending data download by {additional_seconds/SECONDS_IN_DAY} days')
if trained_timestamp != 0: if trained_timestamp != 0:
elapsed_time = (time - trained_timestamp) / SECONDS_IN_DAY elapsed_time = (time - trained_timestamp) / SECONDS_IN_DAY
@ -770,6 +770,13 @@ class FreqaiDataKitchen:
data_load_timerange.stopts = int(time) data_load_timerange.stopts = int(time)
retrain = True retrain = True
logger.info(f'Total data download needed '
f'{(data_load_timerange.stopts - data_load_timerange.startts)/SECONDS_IN_DAY} '
' days')
logger.info(f'Total training timerange '
f'{(trained_timerange.stopts - trained_timerange.startts)/SECONDS_IN_DAY} '
' days')
# if retrain: # if retrain:
# coin, _ = metadata['pair'].split("/") # coin, _ = metadata['pair'].split("/")
# # set the new data_path # # set the new data_path