parzen 0.2.0

High-performance Tree-structured Parzen Estimator for Bayesian optimization
Documentation
1
2
3
4
5
6
7
8
9
// Copyright 2026 Thomas Santerre and Moderately AI Inc.
//
// SPDX-License-Identifier: MIT OR Apache-2.0

#[derive(Default)]
pub(crate) struct AcquisitionWorkspace {
    pub good_scores: Vec<f64>,
    pub bad_scores: Vec<f64>,
}