katielink's picture
deterministic retrain benchmark and add link
f0039cf
raw
history blame contribute delete
No virus
1.47 kB
{
"validate#dataset#cache_rate": 0,
"validate#postprocessing": {
"_target_": "Compose",
"transforms": [
{
"_target_": "Activationsd",
"keys": "pred",
"sigmoid": true
},
{
"_target_": "AsDiscreted",
"keys": "pred",
"threshold": 0.5
},
{
"_target_": "SaveImaged",
"_disabled_": true,
"keys": "pred",
"meta_keys": "pred_meta_dict",
"output_dir": "@output_dir",
"output_ext": ".png"
}
]
},
"validate#handlers": [
{
"_target_": "CheckpointLoader",
"load_path": "$@ckpt_dir + '/model.pt'",
"load_dict": {
"model": "@network"
}
},
{
"_target_": "StatsHandler",
"iteration_log": false
},
{
"_target_": "MetricsSaver",
"save_dir": "@output_dir",
"metrics": [
"val_mean_dice",
"val_accuracy"
],
"metric_details": [
"val_mean_dice"
],
"batch_transform": "$monai.handlers.from_engine(['image_meta_dict'])",
"summary_ops": "*"
}
],
"run": [
"$@validate#evaluator.run()"
]
}