From d3321adc31aead6bc8bb8433868de31e56a425f7 Mon Sep 17 00:00:00 2001 From: Juri Papay <82206056+juripapay@users.noreply.github.com> Date: Fri, 17 Apr 2026 14:59:36 +0100 Subject: [PATCH] Change paths to relative in cloudMaskConfig.yaml Updated paths in cloudMaskConfig.yaml to use relative directories. --- benchmarks/cloudmask/cloudMaskConfig.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/benchmarks/cloudmask/cloudMaskConfig.yaml b/benchmarks/cloudmask/cloudMaskConfig.yaml index 808041e..40a6932 100644 --- a/benchmarks/cloudmask/cloudMaskConfig.yaml +++ b/benchmarks/cloudmask/cloudMaskConfig.yaml @@ -17,22 +17,22 @@ platform: nvidia gtx-2 accelerators_per_node: 16 # Training data -train_dir: ~/sciml_bench/datasets/cloud_slstr_ds1/one-day +train_dir: ./datasets/training # Inference data -inference_dir: ~/sciml_bench/datasets/cloud_slstr_ds1/ssts +inference_dir: ./datasets/inference # Model file -model_file : ~/sciml_bench/outputs/slstr_cloud/cloudModel.h5 +model_file : ./outputs/cloudModel.h5 # Output directory -output_dir : ~/sciml_bench/outputs/slstr_cloud +output_dir : ./outputs # Log file for recording runtimes -log_file: ./cloudMask_Log +log_file: ./outputs/cloudMask_Log # Log file for MLCommons logging -mlperf_logfile: ./mlperf_cloudmask.log +mlperf_logfile: ./outputs/mlperf_cloudmask.log # Size of each patch to feed to the network PATCH_SIZE: 256