no mongo
All checks were successful
s434749-training/pipeline/head This commit looks good

This commit is contained in:
Alagris 2021-05-10 12:00:34 +02:00
parent 16db0c341e
commit 638e8e92ea

View File

@ -22,11 +22,11 @@ import traceback
ex = Experiment("CNN") ex = Experiment("CNN")
ex.observers.append(FileStorageObserver('sacred_file_observer')) ex.observers.append(FileStorageObserver('sacred_file_observer'))
try: # try:
ex.observers.append(MongoObserver(url='mongodb://mongo_user:mongo_password_IUM_2021@localhost:27017', # ex.observers.append(MongoObserver(url='mongodb://mongo_user:mongo_password_IUM_2021@localhost:27017',
db_name='sacred')) # db_name='sacred'))
except Exception as e: # except Exception as e:
traceback.print_exc() # traceback.print_exc()
device = torch.device('cuda:0') if torch.cuda.is_available() else torch.device('cpu') device = torch.device('cuda:0') if torch.cuda.is_available() else torch.device('cpu')