mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-06 09:44:28 +00:00
Fix model weights export
This commit is contained in:
@@ -43,6 +43,7 @@ float* Model::predict(const float* input) {
|
||||
float* d_input = inputLayer->forward(input);
|
||||
|
||||
for (auto& layer : layers) {
|
||||
std::cout << layer << std::endl;
|
||||
d_input = layer->forward(d_input);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user