You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently create the GP with a prediction_type in the constructor of the GPObj constructor in GPEmulator.jl
Though a prediction type should be specified by the user - it should be done at runtime of the GPObj.predict function. We want it defined at run time because the GP training is independent of the prediction type, and the same trained GP can be used for both types of prediction Ytype and Ftype. Furthermore the type of prediction shouldn't be stored for these same reasons.
The text was updated successfully, but these errors were encountered:
We currently create the GP with a
prediction_type
in the constructor of theGPObj
constructor inGPEmulator.jl
Though a prediction type should be specified by the user - it should be done at runtime of the
GPObj.predict
function. We want it defined at run time because the GP training is independent of the prediction type, and the same trained GP can be used for both types of predictionYtype
andFtype
. Furthermore the type of prediction shouldn't be stored for these same reasons.The text was updated successfully, but these errors were encountered: