nbv_reconstruction/app_generate_strategy.py

9 lines
323 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
2024-09-05 01:32:50 +08:00
@PytorchBootApplication("generate_strategy")
class DataGenerateApp:
2024-08-21 17:11:56 +08:00
@staticmethod
def start():
2024-10-17 11:07:29 +00:00
StrategyGenerator("configs/server/server_strategy_generate_config.yaml").run()
2024-08-30 19:21:18 +08:00