added option to change default tensor

This commit is contained in:
William Falcon 2019-05-13 20:41:23 -04:00
parent 4693276494
commit fecd6a00cb
1 changed files with 2 additions and 0 deletions

View File

@ -81,6 +81,8 @@ class Trainer(TrainerIO):
# apex test # apex test
use_amp = True use_amp = True
self.use_amp = use_amp and APEX_AVAILABLE self.use_amp = use_amp and APEX_AVAILABLE
if self.use_amp:
print('using 16bit precision')
def __determine_data_use_amount(self, train_percent_check, val_percent_check, test_percent_check, overfit_pct): def __determine_data_use_amount(self, train_percent_check, val_percent_check, test_percent_check, overfit_pct):
""" """