nbv_reconstruction/app_generate.py
2024-08-21 17:11:56 +08:00

8 lines
275 B
Python

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