8 lines
262 B
Python
8 lines
262 B
Python
|
from PytorchBoot.application import PytorchBootApplication
|
||
|
from runners.heuristic import Heuristic
|
||
|
|
||
|
@PytorchBootApplication("exp_heuristic")
|
||
|
class ExpHeuristic:
|
||
|
@staticmethod
|
||
|
def start():
|
||
|
Heuristic("configs/local/heuristic_exp_config.yaml").run()
|