nbv_reconstruction/app_heuristic.py
2024-12-02 19:09:56 +08:00

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()