nbv_reconstruction/app_generate.py

8 lines
277 B
Python

from PytorchBoot.application import PytorchBootApplication
from runners.strategy_generator import StrategyGenerator
@PytorchBootApplication("generate")
class GenerateApp:
@staticmethod
def start():
StrategyGenerator("configs\generate_config.yaml").run()