Skip to content
Snippets Groups Projects
Commit 4a463a54 authored by Martin Beseda's avatar Martin Beseda
Browse files

ENH: Started to write serialization for NeuralNetwork class

parent f340b484
No related branches found
No related tags found
No related merge requests found
......@@ -614,4 +614,9 @@ void NeuralNetwork::print_weights() {
void NeuralNetwork::print_stats(){
printf("Number of neurons: %d, number of weights: %d\n", this->neurons->size(), this->n_weights);
}
void NeuralNetwork::store_text(std::string filepath) {
// TODO
return;
}
\ No newline at end of file
......@@ -240,6 +240,12 @@ public:
*
*/
void print_stats();
/**
*
* @param filepath
*/
void store_text(std::string filepath);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment