mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-23 23:26:25 +01:00
23 lines
600 B
C
23 lines
600 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <inttypes.h>
|
|
|
|
#include "../src/dense/include/neural_network.h"
|
|
#include "../src/dense/include/neuron_io.h"
|
|
#include "../src/common/include/colors.h"
|
|
|
|
int main() {
|
|
printf("Création du réseau\n");
|
|
Network* network = (Network*)malloc(sizeof(Network));
|
|
int tab[5] = {30, 25, 20, 15, 10};
|
|
network_creation(network, tab, 5);
|
|
printf(GREEN "OK\n" RESET);
|
|
|
|
printf("Initialisation du réseau\n");
|
|
network_initialisation(network);
|
|
printf(GREEN "OK\n" RESET);
|
|
|
|
deletion_of_network(network);
|
|
return 0;
|
|
} |