From a8375f58d36f85191d881819c1459ee3d58711ca Mon Sep 17 00:00:00 2001 From: Carlos Gutierrez Date: Tue, 18 Nov 2025 23:29:05 -0500 Subject: [PATCH] Adding paper --- benchmark_batch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/benchmark_batch.py b/benchmark_batch.py index ad8848d..b6cb9ac 100755 --- a/benchmark_batch.py +++ b/benchmark_batch.py @@ -6,6 +6,7 @@ Collects data across multiple prompts for research analysis. import subprocess import argparse import json +import sys from pathlib import Path import time from typing import List @@ -22,7 +23,7 @@ def run_benchmark( ): """Run a single benchmark.""" cmd = [ - 'python', 'inference.py', + sys.executable, 'inference.py', '--checkpoint', checkpoint, '--prompt', prompt, '--max-length', str(max_length),