Skip to content

Commit

Permalink
latest mcmc and work on gp2Scale update
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusMNoack committed Feb 14, 2024
1 parent 34b2b85 commit c7e0f0b
Show file tree
Hide file tree
Showing 6 changed files with 205 additions and 120 deletions.
6 changes: 0 additions & 6 deletions fvgp/fvgp.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,6 @@ class provides all the methods described for the GP class.
If ``gp_noise_function'' is provided but no gradient function,
a finite-difference approximation will be used.
The same rules regarding ram economy as for the kernel definition apply here.
normalize_y : bool, optional
If True, the data values ``y_data'' will be normalized to max(y_data) = 1, min(y_data) = 0.
The default is False.
Variances will be updated accordingly.
gp2Scale: bool, optional
Turns on gp2Scale. This will distribute the covariance computations across multiple workers.
This is an advanced feature for HPC GPs up to 10
Expand Down Expand Up @@ -230,7 +226,6 @@ def __init__(
gp2Scale=False,
gp2Scale_dask_client=None,
gp2Scale_batch_size=10000,
normalize_y=False,
store_inv=True,
ram_economy=False,
args=None,
Expand Down Expand Up @@ -307,7 +302,6 @@ def __init__(
gp2Scale_dask_client=gp2Scale_dask_client,
gp2Scale_batch_size=gp2Scale_batch_size,
store_inv=store_inv,
normalize_y=normalize_y,
ram_economy=ram_economy,
args=args,
info=info)
Expand Down

0 comments on commit c7e0f0b

Please sign in to comment.