We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initiating the discussion for Gaussian Process regression
The text was updated successfully, but these errors were encountered:
I am thinking about the design for GP Regression could be performed something like this:
GP Regression
container = fit(Formula, data::DataFrame, modelClass::GaussianProcessRegression,MeanFunction::MeanZero,kernelClass::Exponential)
For example,
container = fit(y~x1+x2+x3,train_data,GaussianProcessRegression(),MeanZero(),Exponential())
Optimize
GaussianProcess.jl
The Bayesian method can be implemented using the following way:
container = fit(meanFun::Formula, kernelFun::Formula, data::DataFrame, modelClass::GaussianProcessRegression,kernelClass::Exponential ,prior::Prior_Normal(),sim_size::Int64)
container = fit(y~x1+x2+x3,train_data,GaussianProcessRegression(),Exponential(),Prior_Cauchy(),10000)
HMC
MCMC
Turing.jl
@ajaynshah @ayushpatnaikgit @codetalker7 @ShouvikGhosh2048
Sorry, something went wrong.
sourish-cmi
No branches or pull requests
Initiating the discussion for Gaussian Process regression
The text was updated successfully, but these errors were encountered: