nbv_reconstruction/app_generate.py

8 lines
275 B
Python
Raw Normal View History

2024-08-21 17:11:56 +08:00
from PytorchBoot.application import PytorchBootApplication
from runners.strategy_generator import StrategyGenerator
@PytorchBootApplication("generate")
class Generator:
@staticmethod
def start():
StrategyGenerator("configs\generate_config.yaml").run()