Kommentare hinzugefügt

This commit is contained in:
Giorgi Kesidis 2025-11-17 20:54:50 +01:00
parent 7ae0fa1d4a
commit 6a254b9944

View File

@ -16,7 +16,9 @@ static void prepareNeuralNetworkFile(const char *path, const NeuralNetwork nn)
if (nn.numberOfLayers == 0) { if (nn.numberOfLayers == 0) {
fclose(f); fclose(f);
return; return;
} // Alle Tests prüfen } // In localmodel Struktur Testdateu aufruf:
// Header --> Input Dim --> Output Dim
// i. Layer weights --> biases --> nächste Dim
int input = nn.layers[0].weights.cols; int input = nn.layers[0].weights.cols;