Skip to content

Commit c1bf024

Browse files
authored
Use GPLikelihoods.jl (#108)
* Adding GPLikelihodos support * ADding more fixes * Removing T parametrization * Small fixes * Made necessary changes * Patch bump * Just use RegressionLikelihood * Fix in tests * Probably AGP missing * Remove T need * Fix small issues * Cancel concurrent jobs * Fixing the tests_likelihood * Modify the init_local_vars and add tests for MOVGP * Fixed predictions for multi-output * Add formatting * Might fix the user guide * Fixed on mean prior and heteroscedastic issues * Fixed prior tests * Adds examples for heteroscedastic * Small but necessary changes! * Various fixes * Everything should work?
1 parent 9189c3b commit c1bf024

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1381
-790
lines changed

.github/workflows/ci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ on:
44
branches:
55
- master
66
pull_request:
7+
8+
concurrency:
9+
# Skip intermediate builds: always.
10+
# Cancel intermediate builds: only if it is a pull request build.
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13+
714
jobs:
815
test:
916
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
*.info
66
Manifest.toml
77

8+
.vscode
9+
810
#Do not save checkpoints and testpoints
911
examples/.ipynb_checkpoints/*
1012
test/main_testing.jl

Project.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
name = "AugmentedGaussianProcesses"
22
uuid = "38eea1fd-7d7d-5162-9d08-f89d0f2e271e"
33
authors = ["Theo Galy-Fajou <[email protected]>"]
4-
version = "0.11.0"
4+
version = "0.11.1"
55

66
[deps]
77
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
88
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
99
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
1010
FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838"
1111
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
12+
GPLikelihoods = "6031954c-0455-49d7-b3b9-3e1c99afaf40"
1213
InducingPoints = "b4bd816d-b975-4295-ac05-5f2992945579"
1314
KernelFunctions = "ec8451be-7e33-11e9-00cf-bbf324bd1392"
1415
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -30,6 +31,7 @@ ChainRulesCore = "0.9, 1"
3031
Distributions = "0.21.5, 0.22, 0.23, 0.24, 0.25"
3132
FastGaussQuadrature = "0.4"
3233
ForwardDiff = "0.10"
34+
GPLikelihoods = "0.2"
3335
InducingPoints = "0.2"
3436
KernelFunctions = "0.8, 0.9, 0.10"
3537
Optimisers = "0.1"

0 commit comments

Comments
 (0)