9#ifdef MOOSE_LIBTORCH_ENABLED
24 "Evaluates a GP surrogate model, determines its prediction quality, "
25 "launches full model if GP prediction is inadequate, and retrains GP.");
26 MooseEnum learning_function(
"Ufunction COV");
28 "learning_function", learning_function,
"The learning function for active learning.");
29 params.
addRequiredParam<Real>(
"learning_function_threshold",
"The learning function threshold.");
30 params.
addParam<Real>(
"learning_function_parameter",
31 std::numeric_limits<Real>::max(),
32 "The learning function parameter.");
33 params.
addRequiredParam<UserObjectName>(
"al_gp",
"Active learning GP trainer.");
34 params.
addRequiredParam<UserObjectName>(
"gp_evaluator",
"Evaluate the trained GP.");
36 params.
addParam<ReporterValueName>(
"flag_sample",
"flag_sample",
"Flag samples.");
38 params.
addParam<ReporterValueName>(
"inputs",
"inputs",
"The inputs.");
39 params.
addParam<ReporterValueName>(
"gp_mean",
"gp_mean",
"The GP mean prediction.");
40 params.
addParam<ReporterValueName>(
"gp_std",
"gp_std",
"The GP standard deviation.");
47 _learning_function(getParam<
MooseEnum>(
"learning_function")),
48 _learning_function_threshold(getParam<Real>(
"learning_function_threshold")),
49 _learning_function_parameter(getParam<Real>(
"learning_function_parameter")),
52 _flag_sample(declareValue<
std::vector<bool>>(
53 "flag_sample",
std::vector<bool>(sampler().getNumberOfRows(), false))),
54 _n_train(getParam<
int>(
"n_train")),
55 _inputs(declareValue<
std::vector<
std::vector<Real>>>(
57 std::vector<
std::vector<Real>>(sampler().getNumberOfRows(),
58 std::vector<Real>(sampler().getNumberOfCols())))),
60 declareValue<
std::vector<Real>>(
"gp_mean",
std::vector<Real>(sampler().getNumberOfRows()))),
62 declareValue<
std::vector<Real>>(
"gp_std",
std::vector<Real>(sampler().getNumberOfRows()))),
64 _inputs_global(getGlobalInputData()),
65 _outputs_global(getGlobalOutputData())
70 "The Ufunction requires the model failure threshold ('learning_function_parameter') "
89 const std::vector<Real> & outputs)
98 for (dof_id_type i = 0; i <
_inputs.size(); ++i)
135 dof_id_type global_ind,
registerMooseObject("StochasticToolsApp", ActiveLearningGPDecision)
void ErrorVector unsigned int
ActiveLearningGPDecision(const InputParameters ¶meters)
const MooseEnum & _learning_function
The learning function for active learning.
std::vector< bool > & _flag_sample
Flag samples when the GP fails.
const int _n_train
Number of initial training points for GP.
const std::vector< std::vector< Real > > & _inputs_global
Reference to global input data requested from base class.
std::vector< Real > & _gp_std
Broadcast the GP standard deviation to JSON.
virtual bool facilitateDecision()
Make decisions whether to call the full model or not based on GP prediction and uncertainty.
virtual bool needSample(const std::vector< Real > &row, dof_id_type local_ind, dof_id_type global_ind, Real &val) override
Based on the computations in preNeedSample, the decision to get more data is passed and results from ...
const std::vector< Real > & _outputs_global
Reference to global output data requested from base class.
bool _decision
GP pass/fail decision.
std::vector< Real > _outputs_batch
Store all the outputs used for training.
const SurrogateModel & _gp_eval
The GP evaluator object that permits re-evaluations.
virtual void setupData(const std::vector< std::vector< Real > > &inputs, const std::vector< Real > &outputs)
This sets up data for re-training the GP.
virtual void preNeedSample() override
This is where most of the computations happen:
static InputParameters validParams()
std::vector< std::vector< Real > > & _inputs
Storage for the input vectors to be transferred to the output file.
std::vector< std::vector< Real > > _inputs_batch
Store all the input vectors used for training.
const Real & _learning_function_parameter
The learning function parameter.
const ActiveLearningGaussianProcess & _al_gp
The active learning GP trainer that permits re-training.
std::vector< Real > & _gp_mean
Broadcast the GP mean prediciton to JSON.
const Real & _learning_function_threshold
The learning function threshold.
bool learningFunction(const Real &gp_mean, const Real &gp_std) const
This method evaluates the active learning acquisition function and returns bool that indicates whethe...
virtual void reTrain(const std::vector< std::vector< Real > > &inputs, const std::vector< Real > &outputs) const final
This is a base class for performing active learning routines, meant to be used in conjunction with Sa...
static InputParameters validParams()
const InputParameters & parameters() const
void paramError(const std::string ¶m, Args... args) const
void mooseError(Args &&... args) const
Interface for objects that need to use samplers.
virtual Real evaluate(const std::vector< Real > &x) const
Evaluate surrogate model given a row of parameters.