new_nbv_rec/app_generate_strategy.py
2025-05-13 09:03:38 +08: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()