2024-08-21 17:11:56 +08:00
|
|
|
from PytorchBoot.application import PytorchBootApplication
|
|
|
|
from runners.strategy_generator import StrategyGenerator
|
|
|
|
|
|
|
|
@PytorchBootApplication("generate")
|
2024-08-29 13:54:13 -05:00
|
|
|
class GenerateApp:
|
2024-08-21 17:11:56 +08:00
|
|
|
@staticmethod
|
|
|
|
def start():
|
2024-08-30 16:49:21 +08:00
|
|
|
StrategyGenerator("configs/strategy_generate_config.yaml").run()
|
2024-08-30 19:21:18 +08:00
|
|
|
|