Skip to content

Commit 96a8ddf

Browse files
committed
Remove predict_values from Python API
1 parent 3691fc0 commit 96a8ddf

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/gp_mix.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -273,19 +273,6 @@ impl Gpx {
273273
self.0.predict(&x.as_array()).unwrap().into_pyarray(py)
274274
}
275275

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-
289276
/// Predict variances at nsample points.
290277
///
291278
/// Parameters

0 commit comments

Comments
 (0)