compute_metrics_reloaded.py
- consider other output type than CSV
#51
Labels
compute_metrics_reloaded.py
- consider other output type than CSV
#51
The
compute_metrics_reloaded.py
script currently outputs the segmentation performance metrics into CSV files:utilities/compute_metrics/compute_metrics_reloaded.py
Lines 254 to 262 in 1e72f5d
The CSV files might be tricky to read in the terminal (due to CSV formatting).
A possible solution is to use a workaround such as
function column_csv { column -t -s $';' ${1} }
, followed bycolumn_csv <file.csv>
. But this does not work well if the CSV file has a lot of columns.--> we can explore other ways how to save the metrics, such as pandas.DataFrame.to_markdown.
The text was updated successfully, but these errors were encountered: