11 lines
178 B
C++
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";
|
|
}
|
|
|
|
}
|