Logarithm::ConcurrentInferenceEngine
Concurrent inference engine for model predictions.
This class provides concurrent model inference using a pool of workers to maximize throughput for anomaly detection.
Example usage:
engine = ConcurrentInferenceEngine.new(model, workers: 4)
engine.start
results = engine.predict_batch(log_vectors)
Constructors
Instance methods
Submit multiple batches for concurrent processing.
workers
Source