mirror of https://github.com/glouw/tinn
176 lines
4.5 KiB
C
176 lines
4.5 KiB
C
#include "Tinn.h"
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
// Computs error.
|
|
static float err(const float a, const float b)
|
|
{
|
|
return 0.5f * (a - b) * (a - b);
|
|
}
|
|
|
|
// Returns partial derivative of error function.
|
|
static float pderr(const float a, const float b)
|
|
{
|
|
return a - b;
|
|
}
|
|
|
|
// Computes total error of target to output.
|
|
static float toterr(const float* const tg, const float* const o, const int size)
|
|
{
|
|
float sum = 0.0f;
|
|
for(int i = 0; i < size; i++)
|
|
sum += err(tg[i], o[i]);
|
|
return sum;
|
|
}
|
|
|
|
// Activation function.
|
|
static float act(const float a)
|
|
{
|
|
return 1.0f / (1.0f + expf(-a));
|
|
}
|
|
|
|
// Returns partial derivative of activation function.
|
|
static float pdact(const float a)
|
|
{
|
|
return a * (1.0f - a);
|
|
}
|
|
|
|
// Returns floating point random from 0.0 - 1.0.
|
|
static float frand()
|
|
{
|
|
return rand() / (float) RAND_MAX;
|
|
}
|
|
|
|
// Performs back propagation.
|
|
static void bprop(const Tinn t, const float* const in, const float* const tg, float rate)
|
|
{
|
|
for(int i = 0; i < t.nhid; i++)
|
|
{
|
|
float sum = 0.0f;
|
|
// Calculate total error change with respect to output.
|
|
for(int j = 0; j < t.nops; j++)
|
|
{
|
|
const float a = pderr(t.o[j], tg[j]);
|
|
const float b = pdact(t.o[j]);
|
|
sum += a * b * t.x[j * t.nhid + i];
|
|
// Correct weights in hidden to output layer.
|
|
t.x[j * t.nhid + i] -= rate * a * b * t.h[i];
|
|
}
|
|
// Correct weights in input to hidden layer.
|
|
for(int j = 0; j < t.nips; j++)
|
|
t.w[i * t.nips + j] -= rate * sum * pdact(t.h[i]) * in[j];
|
|
}
|
|
}
|
|
|
|
// Performs forward propagation.
|
|
static void fprop(const Tinn t, const float* const in)
|
|
{
|
|
// Calculate hidden layer neuron values.
|
|
for(int i = 0; i < t.nhid; i++)
|
|
{
|
|
float sum = 0.0f;
|
|
for(int j = 0; j < t.nips; j++)
|
|
sum += in[j] * t.w[i * t.nips + j];
|
|
t.h[i] = act(sum + t.b[0]);
|
|
}
|
|
// Calculate output layer neuron values.
|
|
for(int i = 0; i < t.nops; i++)
|
|
{
|
|
float sum = 0.0f;
|
|
for(int j = 0; j < t.nhid; j++)
|
|
sum += t.h[j] * t.x[i * t.nhid + j];
|
|
t.o[i] = act(sum + t.b[1]);
|
|
}
|
|
}
|
|
|
|
// Randomizes tinn weights and biases.
|
|
static void twrand(const Tinn t)
|
|
{
|
|
for(int i = 0; i < t.nw; i++) t.w[i] = frand() - 0.5f;
|
|
for(int i = 0; i < t.nb; i++) t.b[i] = frand() - 0.5f;
|
|
}
|
|
|
|
// Returns an output prediction given an input.
|
|
float* xtpredict(const Tinn t, const float* const in)
|
|
{
|
|
fprop(t, in);
|
|
return t.o;
|
|
}
|
|
|
|
// Trains a tinn with an input and target output with a learning rate. Returns target to output error.
|
|
float xttrain(const Tinn t, const float* const in, const float* const tg, float rate)
|
|
{
|
|
fprop(t, in);
|
|
bprop(t, in, tg, rate);
|
|
return toterr(tg, t.o, t.nops);
|
|
}
|
|
|
|
// Constructs a tinn with number of inputs, number of hidden neurons, and number of outputs
|
|
Tinn xtbuild(const int nips, const int nhid, const int nops)
|
|
{
|
|
Tinn t;
|
|
// Tinn only supports one hidden layer so there are two biases.
|
|
t.nb = 2;
|
|
t.nw = nhid * (nips + nops);
|
|
t.w = (float*) calloc(t.nw, sizeof(*t.w));
|
|
t.x = t.w + nhid * nips;
|
|
t.b = (float*) calloc(t.nb, sizeof(*t.b));
|
|
t.h = (float*) calloc(nhid, sizeof(*t.h));
|
|
t.o = (float*) calloc(nops, sizeof(*t.o));
|
|
t.nips = nips;
|
|
t.nhid = nhid;
|
|
t.nops = nops;
|
|
twrand(t);
|
|
return t;
|
|
}
|
|
|
|
// Saves a tinn to disk.
|
|
void xtsave(const Tinn t, const char* const path)
|
|
{
|
|
FILE* const file = fopen(path, "w");
|
|
// Save header.
|
|
fprintf(file, "%d %d %d\n", t.nips, t.nhid, t.nops);
|
|
// Save biases and weights.
|
|
for(int i = 0; i < t.nb; i++) fprintf(file, "%f\n", (double) t.b[i]);
|
|
for(int i = 0; i < t.nw; i++) fprintf(file, "%f\n", (double) t.w[i]);
|
|
fclose(file);
|
|
}
|
|
|
|
// Loads a tinn from disk.
|
|
Tinn xtload(const char* const path)
|
|
{
|
|
FILE* const file = fopen(path, "r");
|
|
int nips = 0;
|
|
int nhid = 0;
|
|
int nops = 0;
|
|
// Load header.
|
|
fscanf(file, "%d %d %d\n", &nips, &nhid, &nops);
|
|
// Build a new tinn.
|
|
const Tinn t = xtbuild(nips, nhid, nops);
|
|
// Load biaes and weights.
|
|
for(int i = 0; i < t.nb; i++) fscanf(file, "%f\n", &t.b[i]);
|
|
for(int i = 0; i < t.nw; i++) fscanf(file, "%f\n", &t.w[i]);
|
|
fclose(file);
|
|
return t;
|
|
}
|
|
|
|
// Frees object from heap.
|
|
void xtfree(const Tinn t)
|
|
{
|
|
free(t.w);
|
|
free(t.b);
|
|
free(t.h);
|
|
free(t.o);
|
|
}
|
|
|
|
// Prints an array of floats. Useful for printing predictions.
|
|
void xtprint(const float* arr, const int size)
|
|
{
|
|
for(int i = 0; i < size; i++)
|
|
printf("%f ", (double) arr[i]);
|
|
printf("\n");
|
|
}
|