mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-21 17:03:00 +00:00
dlr: fix another crash
This commit is contained in:
parent
3e42972fb0
commit
3be38823db
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ if PATH_CHECKPOINT is None:
|
|||
logger.info(">>> Plotting graphs")
|
||||
|
||||
plot_metric(history.history["loss"], history.history["val_loss"], "loss", DIR_OUTPUT)
|
||||
plot_metric(history.history["acc"], history.history["val_acc"], "accuracy", DIR_OUTPUT)
|
||||
plot_metric(history.history["accuracy"], history.history["val_accuracy"], "accuracy", DIR_OUTPUT)
|
||||
plot_metric(history.history["metric_dice_coefficient"], history.history["val_metric_dice_coefficient"], "dice", DIR_OUTPUT)
|
||||
plot_metric(history.history["one_hot_mean_iou"], history.history["val_one_hot_mean_iou"], "mean iou", DIR_OUTPUT)
|
||||
plot_metric(history.history["sensitivity"], history.history["val_sensitivity"], "sensitivity", DIR_OUTPUT)
|
||||
|
|
Loading…
Reference in a new issue