|
OpenNN
2.2
Open Neural Networks Library
|
#include <random_search.h>
Public Member Functions | |
| RandomSearchResults (void) | |
| RandomSearchResults (RandomSearch *new_random_search_pointer) | |
| virtual | ~RandomSearchResults (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 | |
| RandomSearch * | random_search_pointer |
| Vector< Vector< double > > | parameters_history |
| Vector< double > | parameters_norm_history |
| Vector< double > | performance_history |
| Vector< double > | generalization_performance_history |
| Vector< Vector< double > > | training_direction_history |
| Vector< double > | training_direction_norm_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_training_direction |
| double | final_training_rate |
| double | elapsed_time |
| size_t | iterations_number |
This structure contains the training results for the random search.
Definition at line 75 of file random_search.h.
| void OpenNN::RandomSearch::RandomSearchResults::resize_training_history | ( | const size_t & | new_size | ) |
Resizes all the training history variables.
| new_size | Size of training history variables. |
Definition at line 702 of file random_search.cpp.
1.8.9.1