Skip to content

Commit

Permalink
Change loss measure unit to ratios.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannis-vm committed Dec 11, 2024
1 parent f07d978 commit ccdf72e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def eda():
description = row.Description

# loss function information
ys = ', '.join([str(x) for x in row[ft_cols].to_list()])
ys = ', '.join([f'{x/100.00:.3f}' for x in row[ft_cols].to_list()])
xs = ', '.join([str(x) for x in ft_values.tolist()])
lf_str = f'{ys}|{xs}'

Expand Down

0 comments on commit ccdf72e

Please sign in to comment.