fix overlap bug

This commit is contained in:
2024-12-02 19:09:56 +08:00
parent be835aded4
commit a40712af22
6 changed files with 511 additions and 2 deletions

8
app_heuristic.py Normal file
View File

@@ -0,0 +1,8 @@
from PytorchBoot.application import PytorchBootApplication
from runners.heuristic import Heuristic
@PytorchBootApplication("exp_heuristic")
class ExpHeuristic:
@staticmethod
def start():
Heuristic("configs/local/heuristic_exp_config.yaml").run()