perf(fill): skip feature extraction without an angle model

This commit is contained in:
aj
2026-09-26 10:02:15 -04:00
parent d70505b7c0
commit 1e8e532063
9 changed files with 869 additions and 42 deletions
+31 -3
View File
@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
@@ -10,6 +11,29 @@ namespace OpenNest.Engine.Fill
public class AngleCandidateBuilder
{
private readonly HashSet<double> knownGoodAngles = new();
private readonly Func<bool> isPredictionAvailable;
private readonly Func<Drawing, bool, PartFeatures> extractFeatures;
private readonly Func<PartFeatures, double, double, List<double>> predictAngles;
public AngleCandidateBuilder()
: this(
() => AnglePredictor.IsAvailable,
FeatureExtractor.Extract,
(features, width, height) => AnglePredictor.PredictAngles(features, width, height)
)
{ }
// Per-instance dependencies keep tests independent of the process-wide ONNX session.
internal AngleCandidateBuilder(
Func<bool> isPredictionAvailable,
Func<Drawing, bool, PartFeatures> extractFeatures,
Func<PartFeatures, double, double, List<double>> predictAngles
)
{
this.isPredictionAvailable = isPredictionAvailable;
this.extractFeatures = extractFeatures;
this.predictAngles = predictAngles;
}
public bool ForceFullSweep { get; set; }
@@ -87,18 +111,22 @@ namespace OpenNest.Engine.Fill
}
}
private static List<double> ApplyMlPrediction(
private List<double> ApplyMlPrediction(
NestItem item,
Box workArea,
double[] baseAngles,
List<double> fallback
)
{
var features = FeatureExtractor.Extract(item.Drawing);
if (!isPredictionAvailable())
return fallback;
// Inference needs only scalar features, never the training bitmap.
var features = extractFeatures(item.Drawing, false);
if (features == null)
return fallback;
var predicted = AnglePredictor.PredictAngles(features, workArea.Width, workArea.Length);
var predicted = predictAngles(features, workArea.Width, workArea.Length);
if (predicted == null)
return fallback;
+44 -20
View File
@@ -11,9 +11,9 @@ namespace OpenNest.Engine.ML
{
public static class AnglePredictor
{
private static InferenceSession _session;
private static volatile bool _loadAttempted;
private static readonly object _lock = new();
private static readonly SingleAttemptLoader<InferenceSession> SessionLoader = new(LoadSession);
internal static bool IsAvailable => GetSession() != null;
public static List<double> PredictAngles(
PartFeatures features,
@@ -84,38 +84,62 @@ namespace OpenNest.Engine.ML
}
}
private static InferenceSession GetSession()
private static InferenceSession GetSession() => SessionLoader.GetValue();
private static InferenceSession LoadSession()
{
var dir = Path.GetDirectoryName(typeof(AnglePredictor).Assembly.Location);
var modelPath = Path.Combine(dir, "Models", "angle_predictor.onnx");
if (!File.Exists(modelPath))
{
Debug.WriteLine($"[AnglePredictor] Model not found: {modelPath}");
return null;
}
var session = new InferenceSession(modelPath);
Debug.WriteLine("[AnglePredictor] Model loaded successfully");
return session;
}
}
// One process-lifetime attempt, including missing/failed loads. Generic only so the
// publication contract can be tested with reference objects instead of real ONNX files.
internal sealed class SingleAttemptLoader<T> where T : class
{
private readonly Func<T> _load;
private readonly object _lock = new();
private T _value;
private volatile bool _loadAttempted;
internal SingleAttemptLoader(Func<T> load) => _load = load;
internal T GetValue()
{
if (_loadAttempted)
return _session;
return _value;
lock (_lock)
{
if (_loadAttempted)
return _session;
_loadAttempted = true;
return _value;
try
{
var dir = Path.GetDirectoryName(typeof(AnglePredictor).Assembly.Location);
var modelPath = Path.Combine(dir, "Models", "angle_predictor.onnx");
if (!File.Exists(modelPath))
{
Debug.WriteLine($"[AnglePredictor] Model not found: {modelPath}");
return null;
}
_session = new InferenceSession(modelPath);
Debug.WriteLine("[AnglePredictor] Model loaded successfully");
_value = _load();
}
catch (Exception ex)
{
Debug.WriteLine($"[AnglePredictor] Failed to load model: {ex.Message}");
}
finally
{
// Publish only after assignment or definitive failure. A concurrent
// caller must wait on the lock, not observe a transient null session.
_loadAttempted = true;
}
return _session;
return _value;
}
}
}