9 lines
273 B
Python
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()
|
|
|