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

Gaussian Process Regression #41

Open
sourish-cmi opened this issue Sep 14, 2022 · 0 comments
Open

Gaussian Process Regression #41

sourish-cmi opened this issue Sep 14, 2022 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@sourish-cmi
Copy link
Collaborator

sourish-cmi commented Sep 14, 2022

Integrate GP Regression from GaussianProcesses.jl with CRRao.jl

Integrate GP Regression from GaussianProcesses.jl with CRRao.jl

Ref
[1] Fairbrother, Jamie etal, "GaussianProcesses. jl: A Nonparametric Bayes Package for the Julia Language", (2022) Journal of Statistical Software, 102, 1--36,

The possible solution would look like

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

Example

container = fit(y~x1+x2+x3,train_data,z,GaussianProcessRegression(),MeanZero(),Exponential())

Here we are trying to fit
y ~ GP(mu(x),Sigma(z)), where z is the index variable or distance would be estimated using z.

Spatial Statistics

container = fit(y~x1+x2+x3,train_data,s,GaussianProcessRegression(),MeanZero(),Exponential(),EarthDistance())

In the above code s contain lat and lon.

@sourish-cmi sourish-cmi added the enhancement New feature or request label Sep 14, 2022
@sourish-cmi sourish-cmi self-assigned this Sep 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant