nbv_reconstruction/app_generate_strategy.py
2024-09-05 01:32:50 +08:00

9 lines
309 B
Python

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