8 lines
277 B
Python
8 lines
277 B
Python
from PytorchBoot.application import PytorchBootApplication
|
|
from runners.strategy_generator import StrategyGenerator
|
|
|
|
@PytorchBootApplication("generate")
|
|
class GenerateApp:
|
|
@staticmethod
|
|
def start():
|
|
StrategyGenerator("configs\generate_config.yaml").run() |