GCC gives me an 'Initialization from incompatible pointer type' warning when I use the following code.
#include "mnist.h"
#include <stdio.h>
int main(void)
{
double** inputLayer = train_image;
}
train_image is a bidimensional array given by mnist header file that according to the autor is like that
- train image : train_image[60000][784] (type: double, normalized, flattened);