nbv_reconstruction/app_split.py

9 lines
277 B
Python
Raw Normal View History

2024-09-02 18:21:38 +08:00
from PytorchBoot.application import PytorchBootApplication
from runners.data_spliter import DataSpliter
2024-09-02 18:21:38 +08:00
2024-09-05 01:32:50 +08:00
@PytorchBootApplication("split_data")
2024-09-02 18:21:38 +08:00
class DataSplitApp:
@staticmethod
def start():
2024-09-12 15:11:09 +08:00
DataSpliter("configs/split_dataset_config.yaml").run()
2024-09-02 18:21:38 +08:00