nbv_reconstruction/app_split.py
2024-09-02 18:21:38 +08:00

9 lines
273 B
Python

from PytorchBoot.application import PytorchBootApplication
from runners.data_splitor import DataSplitor
@PytorchBootApplication("split")
class DataSplitApp:
@staticmethod
def start():
DataSplitor(r"configs\split_dataset_config.yaml").run()