tipe/test/mnist_data_io.c

52 lines
1.3 KiB
C
Raw Normal View History

2022-04-02 16:15:27 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
2022-09-30 15:44:28 +02:00
#include "../src/mnist/include/mnist.h"
2022-04-02 16:15:27 +02:00
2022-04-25 14:39:45 +02:00
void read_test(int nb_images, int width, int height, int*** images, unsigned int* labels) {
2022-04-02 16:15:27 +02:00
printf("\tLecture des labels\n");
for (int i=0; i < nb_images; i++) {
(void)labels[i];
}
printf("\tOK\n");
printf("\tLecture des images\n");
for (int i=0; i < nb_images; i++) {
for (int j=0; j < height; j++) {
for (int k=0; k < width; k++) {
(void)images[i][j][k];
}
}
}
printf("\tOK\n");
}
int main() {
2022-04-03 21:44:15 +02:00
char* image_file = "data/mnist/t10k-images-idx3-ubyte";
char* labels_file = "data/mnist/t10k-labels-idx1-ubyte";
2022-04-02 16:15:27 +02:00
printf("Chargement des paramètres\n");
int* parameters = read_mnist_images_parameters(image_file);
int nb_images = parameters[0];
int height = parameters[1];
int width = parameters[2];
printf("OK\n");
printf("Chargement des images\n");
int*** images = read_mnist_images(image_file);
printf("OK\n");
printf("Chargement des labels\n");
unsigned int* labels = read_mnist_labels(labels_file);
printf("OK\n");
printf("Vérification de l'accès en lecture\n");
2022-04-25 14:39:45 +02:00
read_test(nb_images, width, height, images, labels);
2022-04-02 16:15:27 +02:00
printf("OK\n");
2022-05-14 16:04:35 +02:00
return 0;
2022-04-02 16:15:27 +02:00
}