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 76ef40f commit 304b63eCopy full SHA for 304b63e
src/model.jl
@@ -1222,7 +1222,12 @@ function predict(model::Model, chain; include_all=false)
1222
return predict(Random.default_rng(), model, chain; include_all)
1223
end
1224
1225
-function predict(rng::Random.AbstractRNG, model::Model, varinfos::AbstractArray{<:AbstractVarInfo}; include_all=false)
+function predict(
1226
+ rng::Random.AbstractRNG,
1227
+ model::Model,
1228
+ varinfos::AbstractArray{<:AbstractVarInfo};
1229
+ include_all=false,
1230
+)
1231
predictive_samples = Array{PredictiveSample}(undef, size(varinfos))
1232
for i in eachindex(varinfos)
1233
model(rng, varinfos[i], SampleFromPrior())
0 commit comments