Upload eval_runner.py
Browse files- eval_runner.py +4 -0
eval_runner.py
CHANGED
|
@@ -2,9 +2,13 @@
|
|
| 2 |
|
| 3 |
import argparse
|
| 4 |
import json
|
|
|
|
| 5 |
from datetime import datetime
|
| 6 |
from pathlib import Path
|
| 7 |
|
|
|
|
|
|
|
|
|
|
| 8 |
from aco.benchmarks.benchmark_suite import BenchmarkSuite
|
| 9 |
from aco.config import ACOConfig
|
| 10 |
|
|
|
|
| 2 |
|
| 3 |
import argparse
|
| 4 |
import json
|
| 5 |
+
import sys
|
| 6 |
from datetime import datetime
|
| 7 |
from pathlib import Path
|
| 8 |
|
| 9 |
+
# Ensure aco package is importable
|
| 10 |
+
sys.path.insert(0, str(Path(__file__).parent))
|
| 11 |
+
|
| 12 |
from aco.benchmarks.benchmark_suite import BenchmarkSuite
|
| 13 |
from aco.config import ACOConfig
|
| 14 |
|