nbv_reconstruction/app_generate.py

9 lines
296 B
Python

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