Why array isnt updating? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why array isnt updating?

Hello everyone! I am doing my first neural network on c++. And I have my array with weights - W0[3][2] I updated it while machine learning, but after that I cant get new values of this array. They are like before machine learning. What am I doing wrong? Thanks. P.s. sorry for my bad eng

26th Jun 2019, 6:13 PM
ПризракTM
ПризракTM - avatar
3 Answers
+ 1
Thank you very very much for your reply! I will try to solve this problem with array sizes
27th Jun 2019, 8:22 AM
ПризракTM
ПризракTM - avatar
+ 1
I have done some experiments with this. And you are right. X_size is always 1 and y_size is always 2. I rewrited code and now it works fine! Thanks a lot! :-)
27th Jun 2019, 9:12 AM
ПризракTM
ПризракTM - avatar
0
Okey (sorry for some mess in my code) First of neuron network functions: void forwards(float Li[][2], float Lo[] [2], float w[][2]) { int x_size = sizeof Li/sizeof Li[0]; int y_size = sizeof Li[0]/sizeof Li[0][0]; int y=0; while (y<y_size) { Lo[y][0]=0; int x=0; while (x<x_size) { Lo[y][0] = Lo[y][0] + Li[x][0] * w[x][y]; x = x+1; } float exp = 2.718; float minus = -1* Lo[y][0]; float poww = pow(exp, minus); Lo[y][0] = 1/(1 + poww); y=y+1; } } And some parts of Main() float N0[3][2]; float N1[2][2]; float N2[2][2]; float W0[3][2]; float W1[2][2]; float IDL[2][2]; Now I generate random weights (-1...1). And after that I am calling functions many times for machine learning. So now my net is working and I need to save results, but when I take W0[0][0], for example, I have that random weight value, but why, I have already done learning.. Sorry for my eng..
26th Jun 2019, 10:40 PM
ПризракTM
ПризракTM - avatar