JohnGoertz / Gumbi

Gaussian Process Model Building Interface
https://JohnGoertz.github.io/Gumbi/
Apache License 2.0
48 stars 1 forks source link

Allow UPArray to be constructed from an array #10

Open JohnGoertz opened 2 years ago

JohnGoertz commented 2 years ago

Current pattern:

gmb.uparray('y', μ=y_out.mean(axis=1), σ2=y_out.var(axis=1), stdzr=stdzr)

Desired pattern:

gmb.uparray(y=y_out, axis=1, stdzr=stdzr)