Makes predictions for new data from the fitted model. Model have already been fit to at least 1 batch of data.
# S3 method for stoch_logistic
predict(object, newdata, type = "prob", ...)
A `stoch_logistic` object as output by function `stochastic.logistic.regression`.
New data on which to make predictions.
Type of prediction to make. Can pass `prob` to get probabilities for the positive class, or `class` to get the predicted class.
Not used.
A vector with the predicted classes or probabilities for `newdata`.