|
OpenNN
2.2
Open Neural Networks Library
|
#include <newton_method.h>
Public Member Functions | |
| NewtonMethodResults (void) | |
| NewtonMethodResults (NewtonMethod *new_Newton_method_pointer) | |
| virtual | ~NewtonMethodResults (void) |
| void | resize_training_history (const size_t &) |
| std::string | to_string (void) const |
| Matrix< std::string > | write_final_results (const size_t &precision=3) const |
Public Attributes | |
| NewtonMethod * | Newton_method_pointer |
| Vector< Vector< double > > | parameters_history |
| Vector< double > | parameters_norm_history |
| Vector< double > | performance_history |
| Vector< double > | generalization_performance_history |
| Vector< Vector< double > > | gradient_history |
| Vector< double > | gradient_norm_history |
| Vector< Matrix< double > > | inverse_Hessian_history |
| Vector< Vector< double > > | training_direction_history |
| Vector< double > | training_rate_history |
| Vector< double > | elapsed_time_history |
| Vector< double > | final_parameters |
| double | final_parameters_norm |
| double | final_performance |
| double | final_generalization_performance |
| Vector< double > | final_gradient |
| double | final_gradient_norm |
| Vector< double > | final_training_direction |
| double | final_training_rate |
| double | elapsed_time |
| size_t | iterations_number |
This structure contains the training results for the Newton method.
Definition at line 74 of file newton_method.h.
| void OpenNN::NewtonMethod::NewtonMethodResults::resize_training_history | ( | const size_t & | new_size | ) |
Resizes all the training history variables.
| new_size | Size of training history variables. |
Definition at line 942 of file newton_method.cpp.
1.8.9.1