We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3691fc0 commit 96a8ddfCopy full SHA for 96a8ddf
src/gp_mix.rs
@@ -273,19 +273,6 @@ impl Gpx {
273
self.0.predict(&x.as_array()).unwrap().into_pyarray(py)
274
}
275
276
- /// Predict output values at nsamples points.
277
- ///
278
- /// Parameters
279
- /// x (array[nsamples, nx])
280
- /// input values
281
282
- /// Returns
283
- /// the output values at nsamples x points (array[nsamples, 1])
284
285
- fn predict_values<'py>(&self, py: Python<'py>, x: PyReadonlyArray2<f64>) -> &'py PyArray2<f64> {
286
- self.0.predict(&x.as_array()).unwrap().into_pyarray(py)
287
- }
288
-
289
/// Predict variances at nsample points.
290
///
291
/// Parameters
0 commit comments