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
This commit is contained in:
@@ -16,7 +16,7 @@ import urllib.request
|
|||||||
|
|
||||||
API_URL = "http://localhost:8000/v1/chat/completions"
|
API_URL = "http://localhost:8000/v1/chat/completions"
|
||||||
MODEL = "qwen3.6-35b"
|
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
|
MAX_TOKENS = 2048
|
||||||
TEMPERATURES = [0.3, 0.6, 0.9, 1.1]
|
TEMPERATURES = [0.3, 0.6, 0.9, 1.1]
|
||||||
N_PASSES = 9 # 80 prompts semilla x 9 pasadas ~= 720, aprox. 700 objetivo
|
N_PASSES = 9 # 80 prompts semilla x 9 pasadas ~= 720, aprox. 700 objetivo
|
||||||
|
|||||||
Reference in New Issue
Block a user