nbv_reconstruction/app_sim.py

9 lines
268 B
Python
Raw Normal View History

2025-03-13 14:48:15 +08:00
from PytorchBoot.application import PytorchBootApplication
from runners.simulator import Simulator
@PytorchBootApplication("sim")
class SimulateApp:
@staticmethod
def start():
Simulator("configs/server/server_split_dataset_config.yaml").run()