Documentation / Manuel développeur
Modules disponibles
Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,  ![]() |
Uranie / Modeler
v4.10.0
|
Description of the class TGPLooCostFunction. More...
#include <TGPLooCostFunction.h>


Public Member Functions | |
virtual URANIE::Relauncher::TEval * | rebuild (int rank, Bool_t chef=kTRUE) |
virtual Bool_t | unbuild () |
Constructor and Destructor | |
TGPLooCostFunction (TGPBuilder *gpb) | |
Standard constructor. More... | |
virtual | ~TGPLooCostFunction () |
Default destructor. More... | |
Estimate | |
virtual Int_t | eval (Double_t *theta, Double_t *res, int=0) |
Evaluate the cost function. More... | |
virtual Int_t | eval (vector< URANIE::DataServer::UEntry *> *, vector< URANIE::DataServer::UEntry *> *, int=0) |
![]() | |
TGPCostFunction (TGPBuilder *gpb) | |
Standard constructor. More... | |
virtual | ~TGPCostFunction () |
Default destructor. More... | |
TGPBuilder * | getBuilder () |
Return a pointer to the GP Builder. More... | |
Double_t * | getCovarianceMatrix () |
Return a pointer to the GP Builder covariance matrix. More... | |
Double_t * | getCorrelationMatrix () |
Return a pointer to the GP Builder correlation matrix. More... | |
Double_t * | getObservationVector () |
Return a pointer to the observations outputs. More... | |
Int_t | getNObs () |
Return the number of observations. More... | |
void | setBuilder (TGPBuilder *gpb) |
void | setLog () |
void | unsetLog () |
void | changeLog () |
Bool_t | getLog () |
virtual void | printLog (Option_t *option="") |
Private Attributes | |
Double_t * | _BetaPrior |
pointer to the a priori means of the deterministic trend parameters (size: _n * _p) More... | |
Double_t * | _QPrior |
pointer to the a priori covariance matrix of the deterministic trend parameters (size: _n * _n) More... | |
Additional Inherited Members | |
![]() | |
Bool_t | _blog |
Boolean to decide if the log information is shown or not. More... | |
TGPBuilder * | gpBuilder |
pointer to a gaussian process builder object. More... | |
![]() | |
Double_t * | _H |
pointer to the deterministic trend matrix (size: _n * _p) More... | |
Double_t * | _K |
pointer to the covariance matrix (size: _n * _n) More... | |
Double_t * | _C |
pointer to the correlation matrix (size: _n * _n) More... | |
Double_t * | _yObs |
pointer to the vector of observations outputs (size: _n) More... | |
Int_t | _n |
number of observations More... | |
Int_t | _p |
number of deterministic trend coefficients More... | |
Detailed Description
Description of the class TGPLooCostFunction.
This class defines a Leave One Out cost function used to select the optimal hyper-parameters of a Gaussian Process. It is a wrapper to the gpLoo0, gpLooh and gpLoohBayes cost functions provided by the "gaussian process Library" (gpLib), by Jean-Marc Martinez.
Constructor & Destructor Documentation
◆ TGPLooCostFunction()
URANIE::Modeler::TGPLooCostFunction::TGPLooCostFunction | ( | TGPBuilder * | gpb | ) |
Standard constructor.
A TGPLooCostFunction object need to be associated with a TGPBuilder object which will provide the covariance matrix and the observations.
- Parameters
-
gpb (TGPBuilder*): pointer to a Gaussian Process Builder object.
◆ ~TGPLooCostFunction()
|
virtual |
Default destructor.
Member Function Documentation
◆ eval() [1/2]
|
virtual |
Evaluate the cost function.
This function provides compatibility with the Relauncher module. It takes two arrays of double and returns an integer: 1 if all went well, 0 otherwise.
- Parameters
-
theta (Double_t*): a single set of parameters to optimise. res (Double_t*): output of the cost function.
- Warning
- If a measurement error is taken into account and its variance is provided by the user, the last element of the array "theta" is the GP variance. If the measurement error variance exists but is unknown, the last element of "theta" is the value of the parameter alpha.
Implements URANIE::Modeler::TGPCostFunction.
◆ eval() [2/2]
|
virtual |
◆ rebuild()
|
virtual |
◆ unbuild()
|
virtual |
Member Data Documentation
◆ _BetaPrior
|
private |
pointer to the a priori means of the deterministic trend parameters (size: _n * _p)
◆ _QPrior
|
private |
pointer to the a priori covariance matrix of the deterministic trend parameters (size: _n * _n)