From 3f0b7a07ae5594e5c201549e0c62981ae3f077ce Mon Sep 17 00:00:00 2001 From: Jorge Martinez-Gil <34342266+jorge-martinez-gil@users.noreply.github.com> Date: Thu, 5 Jun 2025 15:13:18 +0200 Subject: [PATCH] Fix dataset path in training script --- fine-tunning-graphcodebert-karnalim-with-features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fine-tunning-graphcodebert-karnalim-with-features.py b/fine-tunning-graphcodebert-karnalim-with-features.py index 3ceee29..5d0c900 100644 --- a/fine-tunning-graphcodebert-karnalim-with-features.py +++ b/fine-tunning-graphcodebert-karnalim-with-features.py @@ -126,7 +126,7 @@ def main(): tokenizer = AutoTokenizer.from_pretrained('microsoft/graphcodebert-base') # Path to the dataset file - dataset_path = 'data\data2.json' # Your dataset path + dataset_path = 'data/data2.json' # Path to the dataset file # Load the dataset full_dataset = CodePairDataset(file_path=dataset_path, tokenizer=tokenizer)