18 lines
465 B
Python
18 lines
465 B
Python
|
|
"""Run optimization for training data export test."""
|
||
|
|
import sys
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
# Add parent directory to path
|
||
|
|
sys.path.insert(0, str(Path(__file__).parent.parent.parent))
|
||
|
|
|
||
|
|
from optimization_engine.runner import OptimizationRunner
|
||
|
|
|
||
|
|
def main():
|
||
|
|
"""Run the optimization."""
|
||
|
|
config_path = Path(__file__).parent / "1_setup" / "workflow_config.json"
|
||
|
|
runner = OptimizationRunner(config_path)
|
||
|
|
runner.run()
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|