Skip to content
Snippets Groups Projects
Commit 27ee849d authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Fixed typo.

parent b49f54e0
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,7 @@ class EoDataset(torch.utils.data.Dataset): ...@@ -136,7 +136,7 @@ class EoDataset(torch.utils.data.Dataset):
state_file = '_'.join([state_file, repr(loss).strip('()')]) state_file = '_'.join([state_file, repr(loss).strip('()')])
# add suffix for weight decay values # add suffix for weight decay values
state_file = (''.join([state_file, 'd{:.0e}'.format(decay)]) if decay state_file = ('_'.join([state_file, 'd{:.0e}'.format(decay)]) if decay
is not None else state_file) is not None else state_file)
# add suffix for training with anomalies # add suffix for training with anomalies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment