コード例 #1
0
IndependentParametersError::IndependentParametersError(const tinyxml2::XMLDocument& independent_parameters_error_document)
 : PerformanceTerm(independent_parameters_error_document)
{
   construct_numerical_differentiation();

   set_default();
}
コード例 #2
0
IndependentParametersError::IndependentParametersError(NeuralNetwork* new_neural_network_pointer)
: PerformanceTerm(new_neural_network_pointer)
{
   construct_numerical_differentiation();

   set_default();
}
コード例 #3
0
ファイル: solutions_error.cpp プロジェクト: Artelnics/OpenNN
SolutionsError::SolutionsError(NeuralNetwork* new_neural_network_pointer, MathematicalModel* new_mathematical_model_pointer)
 : PerformanceTerm(new_neural_network_pointer, new_mathematical_model_pointer)
{
   construct_numerical_differentiation();

   set_default();
}
コード例 #4
0
IndependentParametersError::IndependentParametersError(void) 
 : PerformanceTerm()
{
   construct_numerical_differentiation();

   set_default();
}
コード例 #5
0
ファイル: solutions_error.cpp プロジェクト: Artelnics/OpenNN
SolutionsError::SolutionsError(void) : PerformanceTerm()
{
   construct_numerical_differentiation();

   set_default();
}