LLM4HEP / workflow /scores.smk
ho22joshua's picture
initial commit
cfcbbc8
raw
history blame contribute delete
524 Bytes
rule scores:
params:
max_iter = config.get('max_iterations', 3)
input:
[
"{BASE_DIR}/solution/arrays/bkgd.npy",
"{BASE_DIR}/solution/arrays/signal.npy"
]
output:
[
"{BASE_DIR}/arrays/bkgd_scores.npy",
"{BASE_DIR}/arrays/signal_scores.npy"
]
shell:
"python supervisor_coder.py --prompt scores --out_dir {BASE_DIR} --config {CONFIG} --input-files {input} --output-files {output} --max_iterations {params.max_iter}"