You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot be compiled with MSVC. Fix: variable length arrays declared on stack can be replaced with memory allocation using alloca(), e.g. Matrix* errori[network->numLayers];
declaration in batchGradientDescent() (optimizer.h) can be replaced by Matrix** errori = (Matrix**)alloca(network->numLayers * sizeof(Matrix*));
The text was updated successfully, but these errors were encountered:
Cannot be compiled with MSVC. Fix: variable length arrays declared on stack can be replaced with memory allocation using alloca(), e.g.
Matrix* errori[network->numLayers];
declaration in batchGradientDescent() (optimizer.h) can be replaced by
Matrix** errori = (Matrix**)alloca(network->numLayers * sizeof(Matrix*));
The text was updated successfully, but these errors were encountered: