From bf1aac1cf634f536445624bfa0f2ba0f95e9b881 Mon Sep 17 00:00:00 2001 From: Marie Weiel <marie.weiel@kit.edu> Date: Mon, 18 Nov 2024 11:39:19 +0100 Subject: [PATCH] fix path --- 1_kmeans/solutions/A1/kmeans.py | 2 +- 1_kmeans/solutions/A2/kmeans_sample_parallel.py | 2 +- 1_kmeans/solutions/A2/kmeans_sample_parallel_allgatherv.py | 2 +- 1_kmeans/solutions/A3/kmeans_feature_parallel.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/1_kmeans/solutions/A1/kmeans.py b/1_kmeans/solutions/A1/kmeans.py index 5e279d1..6b68f4e 100755 --- a/1_kmeans/solutions/A1/kmeans.py +++ b/1_kmeans/solutions/A1/kmeans.py @@ -152,7 +152,7 @@ if __name__ == "__main__": "##############################" ) - data_path = "/pfs/work7/workspace/scratch/ku4408-VL_ScalableAI/data/cityscapes_300.h5" + data_path = "/pfs/work7/workspace/scratch/ku4408-VL-ScalableAI/data/cityscapes_300.h5" dataset = "cityscapes_data" device = torch.device( "cuda" if torch.cuda.is_available() else "cpu" diff --git a/1_kmeans/solutions/A2/kmeans_sample_parallel.py b/1_kmeans/solutions/A2/kmeans_sample_parallel.py index 5876433..c885bc1 100644 --- a/1_kmeans/solutions/A2/kmeans_sample_parallel.py +++ b/1_kmeans/solutions/A2/kmeans_sample_parallel.py @@ -213,7 +213,7 @@ if __name__ == "__main__": "##############################################" ) - data_path = "/pfs/work7/workspace/scratch/ku4408-VL_ScalableAI/data/cityscapes_300.h5" + data_path = "/pfs/work7/workspace/scratch/ku4408-VL-ScalableAI/data/cityscapes_300.h5" dataset = "cityscapes_data" if rank == 0: diff --git a/1_kmeans/solutions/A2/kmeans_sample_parallel_allgatherv.py b/1_kmeans/solutions/A2/kmeans_sample_parallel_allgatherv.py index 47bc44c..cddf78e 100644 --- a/1_kmeans/solutions/A2/kmeans_sample_parallel_allgatherv.py +++ b/1_kmeans/solutions/A2/kmeans_sample_parallel_allgatherv.py @@ -245,7 +245,7 @@ if __name__ == "__main__": "##############################################" ) - data_path = "/pfs/work7/workspace/scratch/ku4408-VL_ScalableAI/data/cityscapes_300.h5" + data_path = "/pfs/work7/workspace/scratch/ku4408-VL-ScalableAI/data/cityscapes_300.h5" dataset = "cityscapes_data" if rank == 0: diff --git a/1_kmeans/solutions/A3/kmeans_feature_parallel.py b/1_kmeans/solutions/A3/kmeans_feature_parallel.py index 4bf41a9..e68a263 100644 --- a/1_kmeans/solutions/A3/kmeans_feature_parallel.py +++ b/1_kmeans/solutions/A3/kmeans_feature_parallel.py @@ -199,7 +199,7 @@ if __name__ == "__main__": "###############################################" ) - data_path = "/pfs/work7/workspace/scratch/ku4408-VL_ScalableAI/data/cityscapes_300.h5" + data_path = "/pfs/work7/workspace/scratch/ku4408-VL-ScalableAI/data/cityscapes_300.h5" dataset = "cityscapes_data" if rank == 0: -- GitLab