nbv_reconstruction/app_generate_strategy.py
2024-10-23 02:58:58 -05:00

9 lines
315 B
Python

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