Skip to content
Snippets Groups Projects
Neuron.cpp 235 B
#include "NeuronSerialization.h"

BOOST_CLASS_EXPORT_IMPLEMENT(lib4neuro::Neuron);


namespace lib4neuro {

    Neuron::~Neuron() {

    }

    double Neuron::get_last_activation_value() {
        return this->activation_val;
    }

}