From ef354723983cce89a44fd0146b10bebe3138251c Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Tue, 28 Jul 2026 05:42:05 +0000 Subject: [PATCH] Fix: OUTPUT_PATH de 03_build_replay.py apuntaba a /workspace/... (ruta de contenedor inexistente en el host) El script debe correr directo en el host de spark (sin contenedor), donde /workspace no existe. Corrige a la ruta real del repo en el NFS compartido: /mnt/docker-nas/projects/ai-projects/qwen3-6-lora/data/raw/replay.jsonl --- scripts/03_build_replay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/03_build_replay.py b/scripts/03_build_replay.py index e0b289e..c21b0eb 100644 --- a/scripts/03_build_replay.py +++ b/scripts/03_build_replay.py @@ -16,7 +16,7 @@ import urllib.request API_URL = "http://localhost:8000/v1/chat/completions" MODEL = "qwen3.6-35b" -OUTPUT_PATH = "/workspace/ai-projects/qwen3-6-lora/data/raw/replay.jsonl" +OUTPUT_PATH = "/mnt/docker-nas/projects/ai-projects/qwen3-6-lora/data/raw/replay.jsonl" MAX_TOKENS = 2048 TEMPERATURES = [0.3, 0.6, 0.9, 1.1] N_PASSES = 9 # 80 prompts semilla x 9 pasadas ~= 720, aprox. 700 objetivo