nbv_rec_franka_control/app_inference.py

8 lines
260 B
Python
Raw Normal View History

2025-01-15 14:42:54 +08:00
from PytorchBoot.application import PytorchBootApplication
from runners.inference import InferenceRunner
@PytorchBootApplication("inference")
class AppInference:
@staticmethod
def start():
InferenceRunner("configs/inference_config.yaml").run()