Update scripts/hf_runner.py
Browse files- scripts/hf_runner.py +2 -2
scripts/hf_runner.py
CHANGED
|
@@ -24,9 +24,9 @@ def main():
|
|
| 24 |
print(f"Failed to create/check repo: {e}")
|
| 25 |
|
| 26 |
# 2. Run the heavy pipeline
|
| 27 |
-
print("\n--- STARTING DAHS PIPELINE ---")
|
| 28 |
# Using subprocess to run the pipeline exactly as you would locally
|
| 29 |
-
result = subprocess.run(["python", "scripts/run_pipeline.py"])
|
| 30 |
|
| 31 |
if result.returncode != 0:
|
| 32 |
print("\nPipeline failed! Aborting upload.")
|
|
|
|
| 24 |
print(f"Failed to create/check repo: {e}")
|
| 25 |
|
| 26 |
# 2. Run the heavy pipeline
|
| 27 |
+
print("\n--- STARTING DAHS PIPELINE (3000 Scenarios) ---")
|
| 28 |
# Using subprocess to run the pipeline exactly as you would locally
|
| 29 |
+
result = subprocess.run(["python", "scripts/run_pipeline.py", "--scenarios", "3000"])
|
| 30 |
|
| 31 |
if result.returncode != 0:
|
| 32 |
print("\nPipeline failed! Aborting upload.")
|