psemek/libs/ml/source/neural_net/activation.cpp

11 lines
178 B
C++

#include <psemek/ml/neural_net/activation.hpp>
namespace psemek::ml
{
char const * unknown_activation_type::what() const noexcept
{
return "unknown activation type";
}
}