Skip to content

Commit

Permalink
cleaned up the names
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkokotila committed Aug 22, 2018
1 parent 698e56a commit 89a7b66
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions talos/metrics/names.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ def metric_names():
'''These are used as a shorthand for filtering out columns
that should not be included as depedent variables for optimizing.'''

return ['round_epochs', 'val_loss', 'val_acc', 'val_fmeasure_acc',
'val_recall', 'val_precision', 'val_matthews_correlation',
'loss', 'acc', 'fmeasure_acc', 'recall', 'precision',
'matthews_correlation']
return ['round_epochs',
'loss',
'val_loss',
'acc',
'val_acc',
'fmeasure_acc'
'val_fmeasure_acc',
'recall_acc'
'val_recall_acc',
'precision_acc',
'val_precision_acc',
'matthews_correlation_acc',
'val_matthews_correlation_acc'
]

0 comments on commit 89a7b66

Please sign in to comment.