আমি কোনও বিশ্বস্ত উত্স থেকে উত্তর দেখিনি, তবে আমি নিজেই এর উত্তর দেওয়ার চেষ্টা করব, একটি সাধারণ উদাহরণ দিয়ে (আমার বর্তমান জ্ঞান দিয়ে)।
সাধারণভাবে, লক্ষ্য করুন যে ব্যাক-প্রসারণ ব্যবহার করে একটি এমএলপি প্রশিক্ষণ সাধারণত ম্যাট্রিক্স দিয়ে প্রয়োগ করা হয়।
ম্যাট্রিক্সের গুণনের সময় জটিলতা
জন্য ম্যাট্রিক্স গুণনের সময় জটিলতা কেবল ।Mij∗MjkO(i∗j∗k)
লক্ষ্য করুন যে আমরা এখানে সর্বাধিক গুনীকরণ অ্যালগরিদম ধরে নিচ্ছি: কিছুটা ভাল সময় জটিলতার সাথে আরও কিছু অ্যালগরিদম রয়েছে।
ফিডফোর্ড পাসের অ্যালগরিদম
ফিডফোর্ড প্রচারের অ্যালগরিদম নিম্নরূপ।
প্রথমত, স্তর থেকে যেতে করতে , আপনি কিij
Sj=Wji∗Zi
তারপরে আপনি অ্যাক্টিভেশন ফাংশনটি প্রয়োগ করেন
Zj=f(Sj)
আমাদের যদি স্তর থাকে (ইনপুট এবং আউটপুট স্তর সহ), এটি বার চলবে ।NN−1
উদাহরণ
উদাহরণস্বরূপ, চলুন একটি এমএলপি জন্য স্তর সহ ফরওয়ার্ড পাস অ্যালগরিদমের সময় জটিলতা গণনা করা যাক , যেখানে ইনপুট স্তরটির নোডের সংখ্যা বোঝায়, দ্বিতীয় স্তরের নোডের সংখ্যা , এর নোডের সংখ্যা তৃতীয় স্তর এবং আউটপুট স্তরে নোড সংখ্যা।4ijkl
যেহেতু স্তর রয়েছে তাই এই স্তরগুলির মধ্যে ওজন উপস্থাপন করার জন্য আপনার ম্যাট্রিকের প্রয়োজন । আসুন সেগুলিকে , এবং by দ্বারা বোঝান , যেখানে সারি এবং কলামগুলির একটি ম্যাট্রিক্স ( এভাবে স্তর থেকে স্তর ওজন ধারণ করে ) ।43WjiWkjWlkWjijiWjiij
মনে করুন আপনি আছে প্রশিক্ষণ উদাহরণ। স্তর থেকে প্রচার করার জন্য আমাদের প্রথমটি রয়েছেtij
Sjt=Wji∗Zit
এবং এই ক্রিয়াকলাপের (অর্থাত্ ম্যাট্রিক্স গুণিতকরণ) complex ম্যাথ্যাকাল সময়ের জটিলতা রয়েছে। তারপরে আমরা অ্যাক্টিভেশন ফাংশনটি প্রয়োগ করিO(j∗i∗t)
Zjt=f(Sjt)
এবং এই আছে O(j∗t) সময় জটিলতা, কারণ এটি একটি উপাদান-অনুযায়ী অপারেশন হয়।
সুতরাং, মোট, আমাদের আছে
O(j∗i∗t+j∗t)=O(j∗t∗(t+1))=O(j∗i∗t)
যাওয়ার জন্য, একই যুক্তি ব্যবহার করে j→k , আমরা O(k∗j∗t) , এবং, জন্য k→l , আমরা O(l∗k∗t) ।
মোট, ফিডফোর্ড প্রচারের জন্য সময় জটিলতা হবে
O(j∗i∗t+k∗j∗t+l∗k∗t)=O(t∗(ij+jk+kl))
আমি আরও নিশ্চিত নই যে এটিকে আরও সরল করা যায় কিনা। সম্ভবত এটি কেবল O(t∗i∗j∗k∗l) , তবে আমি নিশ্চিত নই।
পিছনে প্রচারের অ্যালগরিদম
The back-propagation algorithm proceeds as follows. Starting from the output layer l→k, we compute the error signal, Elt, a matrix containing the error signals for nodes at layer l
Elt=f′(Slt)⊙(Zlt−Olt)
where ⊙ means element-wise multiplication. Note that Elt has l rows and t columns: it simply means each column is the error signal for training example t.
We then compute the "delta weights", Dlk∈Rl×k (between layer l and layer k)
Dlk=Elt∗Ztk
where Ztk is the transpose of Zkt.
We then adjust the weights
Wlk=Wlk−Dlk
For l→k, we thus have the time complexity O(lt+lt+ltk+lk)=O(l∗t∗k).
Now, going back from k→j. We first have
Ekt=f′(Skt)⊙(Wkl∗Elt)
Then
Dkj=Ekt∗Ztj
And then
Wkj=Wkj−Dkj
where Wkl is the transpose of Wlk. For k→j, we have the time complexity O(kt+klt+ktj+kj)=O(k∗t(l+j)).
And finally, for j→i, we have O(j∗t(k+i)). In total, we have
O(ltk+tk(l+j)+tj(k+i))=O(t∗(lk+kj+ji))
which is same as feedforward pass algorithm. Since they are same, the total time complexity for one epoch will be O(t∗(ij+jk+kl)).
This time complexity is then multiplied by number of iterations (epochs). So, we have O(n∗t∗(ij+jk+kl)),
where n is number of iterations.
Notes
Note that these matrix operations can greatly be paralelized by GPUs.
Conclusion
We tried to find the time complexity for training a neural network that has 4 layers with respectively i, j, k and l nodes, with t training examples and n epochs. The result was O(nt∗(ij+jk+kl)).
We assumed the simplest form of matrix multiplication that has cubic time complexity. We used batch gradient descent algorithm. The results for stochastic and mini-batch gradient descent should be same. (Let me know if you think the otherwise: note that batch gradient descent is the general form, with little modification, it becomes stochastic or mini-batch)
Also, if you use momentum optimization, you will have same time complexity, because the extra matrix operations required are all element-wise operations, hence they will not affect the time complexity of the algorithm.
I'm not sure what the results would be using other optimizers such as RMSprop.
Sources
The following article http://briandolhansky.com/blog/2014/10/30/artificial-neural-networks-matrix-form-part-5 describes an implementation using matrices. Although this implementation is using "row major", the time complexity is not affected by this.
If you're not familiar with back-propagation, check this article:
http://briandolhansky.com/blog/2013/9/27/artificial-neural-networks-backpropagation-part-4