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