From 7e8ddabf03ab29b3ffa1df5c62f62d9247be76d3 Mon Sep 17 00:00:00 2001 From: Christian Medina <37550954+cmedinasoriano@users.noreply.github.com> Date: Tue, 30 Jun 2026 17:11:29 -0400 Subject: [PATCH] fix: remove dataset download, it's already in repo --- train-on-this-server.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/train-on-this-server.sh b/train-on-this-server.sh index 26f20ff..7f46d79 100644 --- a/train-on-this-server.sh +++ b/train-on-this-server.sh @@ -51,8 +51,9 @@ echo "" echo "=== Dataset Preparation ===" echo "Checking for combined_20k.jsonl..." if [ ! -f "dataset/combined_20k.jsonl" ]; then - echo "Dataset not found. Downloading..." - curl -L -o dataset/combined_20k.jsonl https://gitea.cyaren.com/cmedina/agenx-lora-training/raw/branch/main/dataset/combined_20k.jsonl + echo "ERROR: Dataset not found!" + echo "The file should be in the repo at: dataset/combined_20k.jsonl" + exit 1 fi echo "Preparing dataset..."