Hey, would it be possible to add support for an offset or fixed-coefficient parameter to LogisticRegression? This issue on Python's sklearn is exactly what I'm trying to do.
The API could look something like this:
// Pass a precomputed offset term per observation
// log_odds = offset[i] + β₀ + β₁·x[i]
let model = LogisticRegression::default()
.alpha(1.0)
.offset(offset_array) // Array1<f64>, one value per training sample
.fit(&dataset)?;