9 lines
258 B
Python
9 lines
258 B
Python
from PytorchBoot.application import PytorchBootApplication
|
|
from runners.cad_strategy import CADStrategyRunner
|
|
|
|
@PytorchBootApplication("cad")
|
|
class AppCAD:
|
|
@staticmethod
|
|
def start():
|
|
CADStrategyRunner("configs/cad_config.yaml").run()
|
|
|