nbv_rec_control/app_cad.py
2024-10-07 16:20:56 +08:00

9 lines
258 B
Python

from PytorchBoot.application import PytorchBootApplication
from runners.cad_strategy import CADStrategyRunner
@PytorchBootApplication("cad")
class AppCAD:
@staticmethod
def start():
CADStrategyRunner("configs/cad_config.yaml").run()