-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_and_run.bat
More file actions
34 lines (31 loc) · 1022 Bytes
/
Copy pathsetup_and_run.bat
File metadata and controls
34 lines (31 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
echo ============================================================
echo AutoFE-ShiftBench — One-Command Setup and Run
echo ============================================================
echo.
REM Step 1: Install dependencies
echo [1/3] Installing Python dependencies...
pip install -r requirements.txt
if errorlevel 1 (
echo ERROR: Failed to install dependencies.
pause
exit /b 1
)
echo.
REM Step 2: Download datasets
echo [2/3] Downloading datasets from OpenML...
python -c "from src.data_loader import download_datasets_from_list; download_datasets_from_list()"
if errorlevel 1 (
echo ERROR: Failed to download datasets.
pause
exit /b 1
)
echo.
REM Step 3: Run the benchmark
echo [3/3] Starting benchmark with full parallelization...
python -m src.pipeline_runner
echo.
echo ============================================================
echo Benchmark complete! Results in reports/tables/results_stream.jsonl
echo ============================================================
pause