2024-08-21 17:11:56 +08:00
|
|
|
from PytorchBoot.application import PytorchBootApplication
|
|
|
|
from runners.strategy_generator import StrategyGenerator
|
|
|
|
|
2024-09-05 01:32:50 +08:00
|
|
|
@PytorchBootApplication("generate_strategy")
|
|
|
|
class DataGenerateApp:
|
2024-08-21 17:11:56 +08:00
|
|
|
@staticmethod
|
|
|
|
def start():
|
2024-10-23 02:58:58 -05:00
|
|
|
StrategyGenerator("configs/local/strategy_generate_config.yaml").run()
|
2024-08-30 19:21:18 +08:00
|
|
|
|