nbv_reconstruction/app_heuristic.py

8 lines
262 B
Python
Raw Permalink Normal View History

2024-12-02 19:09:56 +08:00
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()