nbv_reconstruction/app_generate.py

9 lines
296 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 GenerateApp:
2024-08-21 17:11:56 +08:00
@staticmethod
def start():
StrategyGenerator("configs/strategy_generate_config.yaml").run()
2024-08-30 19:21:18 +08:00