24 template <
typename AReal>
33 for (
size_t i = 0; i <
m; i++) {
34 for (
size_t j = 0; j <
n; j++) {
35 AReal dY = (Y(i,j) -
output(i,j));
36 result += weights(i, 0) * dY * dY;
39 result /=
static_cast<AReal
>(m *
n);
44 template <
typename AReal>
53 dY *= -2.0 /
static_cast<AReal
>(m *
n);
55 for (
size_t i = 0; i <
m; i++) {
56 for (
size_t j = 0; j <
n; j++) {
57 dY(i, j) *= weights(i, 0);
63 template <
typename AReal>
72 for (
size_t i = 0; i <
m; i++) {
73 AReal w = weights(i, 0);
74 for (
size_t j = 0; j <
n; j++) {
76 result += w * (Y(i, j) *
std::log(sig) + (1.0 - Y(i, j)) *
std::log(1.0 - sig));
79 result /= -
static_cast<AReal
>(m *
n);
84 template <
typename AReal>
92 AReal norm = 1.0 /
static_cast<AReal
>(m *
n);
93 for (
size_t i = 0; i <
m; i++)
95 AReal w = weights(i, 0);
96 for (
size_t j = 0; j <
n; j++)
100 dY(i, j) = norm * w * (sig -
y);
106 template <
typename AReal>
115 for (
size_t i = 0; i <
m; i++) {
117 AReal w = weights(i, 0);
118 for (
size_t j = 0; j <
n; j++) {
121 for (
size_t j = 0; j <
n; j++) {
125 result /= -
static_cast<AReal
>(
m);
130 template <
typename AReal>
137 AReal norm = 1.0 /
m ;
139 for (
size_t i = 0; i <
m; i++)
143 AReal w = weights(i, 0);
144 for (
size_t j = 0; j <
n; j++) {
148 for (
size_t j = 0; j <
n; j++) {
149 dY(i, j) = w * norm * (
exp(
output(i, j)) / sum * sumY - Y(i, j));
static long int sum(long int i)
static AReal SoftmaxCrossEntropy(const TMatrixT< AReal > &Y, const TMatrixT< AReal > &output, const TMatrixT< AReal > &weights)
Softmax transformation is implicitly applied, thus output should hold the linear activations of the l...
static AReal CrossEntropy(const TMatrixT< AReal > &Y, const TMatrixT< AReal > &output, const TMatrixT< AReal > &weights)
Sigmoid transformation is implicitly applied, thus output should hold the linear activations of the l...
void Minus(const TMatrixT< Element > &a, const TMatrixT< Element > &b)
General matrix summation. Create a matrix C such that C = A - B.
static void SoftmaxCrossEntropyGradients(TMatrixT< AReal > &dY, const TMatrixT< AReal > &Y, const TMatrixT< AReal > &output, const TMatrixT< AReal > &weights)
static void CrossEntropyGradients(TMatrixT< AReal > &dY, const TMatrixT< AReal > &Y, const TMatrixT< AReal > &output, const TMatrixT< AReal > &weights)
Abstract ClassifierFactory template that handles arbitrary types.
static void MeanSquaredErrorGradients(TMatrixT< AReal > &dY, const TMatrixT< AReal > &Y, const TMatrixT< AReal > &output, const TMatrixT< AReal > &weights)
static AReal MeanSquaredError(const TMatrixT< AReal > &Y, const TMatrixT< AReal > &output, const TMatrixT< AReal > &weights)