Skip to content
Snippets Groups Projects
Commit 200b5208 authored by Ville Tanskanen's avatar Ville Tanskanen
Browse files

Modification of a path, and updating readme

parent c4f4d4b7
Branches master
No related tags found
No related merge requests found
......@@ -14,3 +14,9 @@ For python examples (Poisson regression):
- Numpy
- Matplotlib
- Jupyter Notebook
For R examples (R version 3.6.2):
- rstan (2.19.1)
- pracma
- ggplot2
- dplyr
......@@ -82,7 +82,7 @@ sigmasq = 40
K = cov_func(as.matrix(dist(X, method="euclidean")), l, sigmasq) + jitter * diag(nrow(X))
library(rstan)
options(mc.cores = parallel::detectCores()-1)
stan_mod = stan_model("positiveGPknownVariance.stan")
stan_mod = stan_model("../positiveGPknownVariance.stan")
samples = sampling(stan_mod, data = list(N=N,
K_chol = t(chol(K)),
Y = data_y,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment