tipe/src/cnn/neuron_io.c

275 lines
9.0 KiB
C
Raw Normal View History

2022-09-23 14:25:56 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include "include/neuron_io.h"
#include "include/struct.h"
2022-09-23 16:03:53 +02:00
#define MAGIC_NUMBER 1012
2022-09-23 14:25:56 +02:00
2022-09-28 12:42:44 +02:00
#define bufferAdd(val) {buffer[indice_buffer] = val; indice_buffer++;}
2022-09-23 14:25:56 +02:00
void write_network(char* filename, Network* network) {
FILE *ptr;
int size = network->size;
int type_couche[size];
2022-09-28 12:42:44 +02:00
int indice_buffer = 0;
2022-09-23 14:25:56 +02:00
ptr = fopen(filename, "wb");
uint32_t buffer[(network->size)*3+4];
2022-09-28 12:42:44 +02:00
bufferAdd(MAGIC_NUMBER);
bufferAdd(size);
bufferAdd(network->initialisation);
bufferAdd(network->dropout);
2022-09-23 14:25:56 +02:00
2022-09-25 11:52:36 +02:00
// Écriture du header
2022-09-23 14:25:56 +02:00
for (int i=0; i < size; i++) {
2022-09-28 12:42:44 +02:00
bufferAdd(network->width[i]);
bufferAdd(network->depth[i]);
2022-09-23 14:25:56 +02:00
}
for (int i=0; i < size; i++) {
if ((!network->kernel[i]->cnn)&&(!network->kernel[i]->nn)) {
type_couche[i] = 2;
} else if (!network->kernel[i]->cnn) {
type_couche[i] = 1;
} else {
type_couche[i] = 0;
}
2022-09-28 12:42:44 +02:00
bufferAdd(type_couche[i]);
2022-09-23 14:25:56 +02:00
}
fwrite(buffer, sizeof(buffer), 1, ptr);
2022-09-25 11:52:36 +02:00
// Écriture du pré-corps et corps
2022-09-23 14:25:56 +02:00
for (int i=0; i < size; i++) {
write_couche(network->kernel[i], type_couche[i], ptr);
}
fclose(ptr);
}
void write_couche(Kernel* kernel, int type_couche, FILE* ptr) {
2022-09-28 12:42:44 +02:00
int indice_buffer = 0;
2022-09-25 11:52:36 +02:00
if (type_couche == 0) { // Cas du CNN
Kernel_cnn* cnn = kernel->cnn;
2022-09-23 14:25:56 +02:00
2022-09-25 11:52:36 +02:00
// Écriture du pré-corps
uint32_t pre_buffer[4];
pre_buffer[0] = kernel->activation;
pre_buffer[1] = cnn->k_size;
pre_buffer[2] = cnn->rows;
pre_buffer[3] = cnn->columns;
fwrite(pre_buffer, sizeof(pre_buffer), 1, ptr);
2022-09-23 14:25:56 +02:00
2022-09-25 11:52:36 +02:00
// Écriture du corps
2022-09-28 12:42:44 +02:00
float buffer[cnn->k_size*cnn->k_size*cnn->columns*(cnn->rows+1)];
2022-09-23 14:25:56 +02:00
for (int i=0; i < cnn->columns; i++) {
for (int j=0; j < cnn->k_size; j++) {
for (int k=0; k < cnn->k_size; k++) {
2022-09-28 12:42:44 +02:00
bufferAdd(cnn->bias[i][j][k]);
2022-09-23 14:25:56 +02:00
}
}
}
for (int i=0; i < cnn->rows; i++) {
for (int j=0; j < cnn->columns; j++) {
for (int k=0; k < cnn->k_size; k++) {
for (int l=0; l < cnn->k_size; l++) {
2022-09-28 12:42:44 +02:00
bufferAdd(cnn->w[i][j][k][l]);
2022-09-23 14:25:56 +02:00
}
}
}
}
fwrite(buffer, sizeof(buffer), 1, ptr);
2022-09-25 11:52:36 +02:00
} else if (type_couche == 1) { // Cas du NN
2022-09-23 14:25:56 +02:00
Kernel_nn* nn = kernel->nn;
2022-09-25 11:52:36 +02:00
// Écriture du pré-corps
uint32_t pre_buffer[3];
pre_buffer[0] = kernel->activation;
pre_buffer[1] = nn->input_units;
pre_buffer[2] = nn->output_units;
fwrite(pre_buffer, sizeof(pre_buffer), 1, ptr);
// Écriture du corps
2022-09-23 14:25:56 +02:00
float buffer[(1+nn->input_units)*nn->output_units];
for (int i=0; i < nn->output_units; i++) {
2022-09-28 12:42:44 +02:00
bufferAdd(nn->bias[i]);
2022-09-23 14:25:56 +02:00
}
for (int i=0; i < nn->input_units; i++) {
for (int j=0; j < nn->output_units; j++) {
2022-09-28 12:42:44 +02:00
bufferAdd(nn->weights[i][j]);
2022-09-23 14:25:56 +02:00
}
}
fwrite(buffer, sizeof(buffer), 1, ptr);
2022-09-25 11:52:36 +02:00
} else if (type_couche == 2) { // Cas du Pooling Layer
uint32_t pre_buffer[1];
pre_buffer[0] = kernel->activation; // Variable du pooling
fwrite(pre_buffer, sizeof(pre_buffer), 1, ptr);
2022-09-23 14:25:56 +02:00
}
2022-09-23 16:03:53 +02:00
}
Network* read_network(char* filename) {
FILE *ptr;
Network* network = (Network*)malloc(sizeof(Network));
// TODO: malloc pour network -> input
2022-09-28 10:20:08 +02:00
printf_warning("Chargement depuis un fichier, network->input ne sera pas alloué\n");
2022-09-23 16:03:53 +02:00
ptr = fopen(filename, "rb");
uint32_t magic;
uint32_t size;
uint32_t initialisation;
uint32_t dropout;
uint32_t tmp;
fread(&magic, sizeof(uint32_t), 1, ptr);
if (magic != MAGIC_NUMBER) {
printf("Incorrect magic number !\n");
exit(1);
}
// Lecture des constantes du réseau
fread(&size, sizeof(uint32_t), 1, ptr);
network->size = size;
2022-09-28 12:42:44 +02:00
network->max_size = size;
2022-09-23 16:03:53 +02:00
fread(&initialisation, sizeof(uint32_t), 1, ptr);
network->initialisation = initialisation;
fread(&dropout, sizeof(uint32_t), 1, ptr);
network->dropout = dropout;
// Lecture de la taille de l'entrée des différentes matrices
network->width = (int*)malloc(sizeof(int)*size);
network->depth = (int*)malloc(sizeof(int)*size);
for (int i=0; i < (int)size; i++) {
2022-09-28 12:42:44 +02:00
fread(&tmp, sizeof(uint32_t), 1, ptr);
2022-09-23 16:03:53 +02:00
network->width[i] = tmp;
2022-09-28 12:42:44 +02:00
fread(&tmp, sizeof(uint32_t), 1, ptr);
network->depth[i] = tmp;
2022-09-23 16:03:53 +02:00
}
// Lecture du type de chaque couche
uint32_t type_couche[size];
for (int i=0; i < (int)size; i++) {
fread(&tmp, sizeof(tmp), 1, ptr);
type_couche[i] = tmp;
}
// Lecture de chaque couche
network->kernel = (Kernel**)malloc(sizeof(Kernel*)*size);
for (int i=0; i < (int)size; i++) {
network->kernel[i] = read_kernel(type_couche[i], ptr);
}
fclose(ptr);
return network;
}
Kernel* read_kernel(int type_couche, FILE* ptr) {
Kernel* kernel = (Kernel*)malloc(sizeof(Kernel));
2022-09-25 11:52:36 +02:00
if (type_couche == 0) { // Cas du CNN
// Lecture du "Pré-corps"
kernel->cnn = (Kernel_cnn*)malloc(sizeof(Kernel_cnn));
kernel->nn = NULL;
uint32_t buffer[4];
fread(&buffer, sizeof(buffer), 1, ptr);
kernel->activation = buffer[0];
2022-09-28 12:42:44 +02:00
kernel->linearisation = 0;
2022-09-25 11:52:36 +02:00
kernel->cnn->k_size = buffer[1];
kernel->cnn->rows = buffer[2];
kernel->cnn->columns = buffer[3];
// Lecture du corps
Kernel_cnn* cnn = kernel->cnn;
float tmp;
cnn->bias = (float***)malloc(sizeof(float**)*cnn->columns);
cnn->d_bias = (float***)malloc(sizeof(float**)*cnn->columns);
for (int i=0; i < cnn->columns; i++) {
cnn->bias[i] = (float**)malloc(sizeof(float*)*cnn->k_size);
cnn->d_bias[i] = (float**)malloc(sizeof(float*)*cnn->k_size);
for (int j=0; j < cnn->k_size; j++) {
cnn->bias[i][j] = (float*)malloc(sizeof(float)*cnn->k_size);
cnn->d_bias[i][j] = (float*)malloc(sizeof(float)*cnn->k_size);
for (int k=0; k < cnn->k_size; k++) {
fread(&tmp, sizeof(tmp), 1, ptr);
cnn->bias[i][j][k] = tmp;
cnn->d_bias[i][j][k] = 0.;
}
}
}
cnn->w = (float****)malloc(sizeof(float***)*cnn->rows);
cnn->d_w = (float****)malloc(sizeof(float***)*cnn->rows);
for (int i=0; i < cnn->rows; i++) {
cnn->w[i] = (float***)malloc(sizeof(float**)*cnn->columns);
cnn->d_w[i] = (float***)malloc(sizeof(float**)*cnn->columns);
for (int j=0; j < cnn->columns; j++) {
cnn->w[i][j] = (float**)malloc(sizeof(float*)*cnn->k_size);
cnn->d_w[i][j] = (float**)malloc(sizeof(float*)*cnn->k_size);
for (int k=0; k < cnn->k_size; k++) {
cnn->w[i][j][k] = (float*)malloc(sizeof(float)*cnn->k_size);
cnn->d_w[i][j][k] = (float*)malloc(sizeof(float)*cnn->k_size);
for (int l=0; l < cnn->k_size; l++) {
fread(&tmp, sizeof(tmp), 1, ptr);
cnn->w[i][j][k][l] = tmp;
cnn->d_w[i][j][k][l] = 0.;
}
}
}
}
} else if (type_couche == 1) { // Cas du NN
// Lecture du "Pré-corps"
kernel->nn = (Kernel_nn*)malloc(sizeof(Kernel_nn));
kernel->cnn = NULL;
uint32_t buffer[3];
fread(&buffer, sizeof(buffer), 1, ptr);
kernel->activation = buffer[0];
kernel->nn->input_units = buffer[1];
kernel->nn->output_units = buffer[2];
// Lecture du corps
Kernel_nn* nn = kernel->nn;
float tmp;
nn->bias = (float*)malloc(sizeof(float)*nn->output_units);
nn->d_bias = (float*)malloc(sizeof(float)*nn->output_units);
for (int i=0; i < nn->output_units; i++) {
fread(&tmp, sizeof(tmp), 1, ptr);
nn->bias[i] = tmp;
nn->d_bias[i] = 0.;
}
nn->weights = (float**)malloc(sizeof(float*)*nn->input_units);
nn->d_weights = (float**)malloc(sizeof(float*)*nn->input_units);
for (int i=0; i < nn->input_units; i++) {
nn->weights[i] = malloc(sizeof(float)*nn->output_units);
nn->d_weights[i] = malloc(sizeof(float)*nn->output_units);
for (int j=0; j < nn->output_units; j++) {
fread(&tmp, sizeof(tmp), 1, ptr);
nn->weights[i][j] = tmp;
nn->d_weights[i][j] = 0.;
}
}
} else if (type_couche == 2) { // Cas du Pooling Layer
2022-09-23 16:03:53 +02:00
uint32_t pooling;
fread(&pooling, sizeof(pooling), 1, ptr);
kernel->cnn = NULL;
kernel->nn = NULL;
kernel->activation = pooling;
kernel->linearisation = pooling; // TODO: mettre à 0 la variable inutile
}
return kernel;
2022-09-23 14:25:56 +02:00
}