Skip to content
New issue

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

Design for Gaussian Process #37

Open
sourish-cmi opened this issue Sep 8, 2022 · 1 comment
Open

Design for Gaussian Process #37

sourish-cmi opened this issue Sep 8, 2022 · 1 comment
Assignees
Labels
documentation Improvements or additions to documentation enhancement New feature or request

Comments

@sourish-cmi
Copy link
Collaborator

Initiating the discussion for Gaussian Process regression

@sourish-cmi sourish-cmi added documentation Improvements or additions to documentation enhancement New feature or request labels Sep 8, 2022
@sourish-cmi sourish-cmi self-assigned this Sep 8, 2022
@sourish-cmi
Copy link
Collaborator Author

sourish-cmi commented Sep 11, 2022

I am thinking about the design for GP Regression could be performed something like this:

container = fit(Formula, data::DataFrame, modelClass::GaussianProcessRegression,MeanFunction::MeanZero,kernelClass::Exponential)

For example,

container = fit(y~x1+x2+x3,train_data,GaussianProcessRegression(),MeanZero(),Exponential())
  • This could implement the default as MLE through Optimize using the 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)

For example,

container = fit(y~x1+x2+x3,train_data,GaussianProcessRegression(),Exponential(),Prior_Cauchy(),10000)
  • This could be implemented using the HMC or MCMC using the Turing.jl.

@ajaynshah @ayushpatnaikgit @codetalker7 @ShouvikGhosh2048

@sourish-cmi sourish-cmi changed the title Design for Gaussian Process Regression Design for Gaussian Process Sep 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant