This commit is contained in:
2025-06-12 14:31:41 +08:00
parent c0c4f9b610
commit 6cb1368ffa
14 changed files with 9353 additions and 26 deletions

View File

@@ -6,6 +6,7 @@ from runners.inference_server import InferencerServer
from runners.evaluate_uncertainty_guide import EvaluateUncertaintyGuide
from runners.evaluate_pbnbv import EvaluatePBNBV
from runners.evaluate_heuristic import Heuristic
from runners.pb_global_points_inferencer import PBGlobalPointsInferencer
@PytorchBootApplication("global_points_inference")
class GlobalPointsInferenceApp:
@@ -109,3 +110,9 @@ class EvaluateHeuristicApp:
@staticmethod
def start():
Heuristic("./configs/local/heuristic_evaluation.yaml").run()
@PytorchBootApplication("pb_global_points_inference")
class PBGlobalPointsInferenceApp:
@staticmethod
def start():
PBGlobalPointsInferencer("./configs/local/global_only_inference_config.yaml").run()