信頼できるソースからの回答を見たことはありませんが、簡単な例を使って(現在の知識で)これに自分で答えようとします。
一般に、逆伝播を使用したMLPのトレーニングは通常、行列で実装されることに注意してください。
行列乗算の時間の複雑さ
Mij∗Mjkの行列乗算の時間計算量は単純にO(i∗j∗k)です。
ここでは、最も単純な乗算アルゴリズムを想定していることに注意してください。時間の複雑さがいくらか改善された他のアルゴリズムがいくつか存在します。
フィードフォワードパスアルゴリズム
フィードフォワード伝播アルゴリズムは次のとおりです。
まず、レイヤーiからjに移動するには、次のようにします。
Sj=Wji∗Zi
次に、アクティベーション機能を適用します
Zj=f(Sj)
我々が持っている場合はN(入力と出力層を含む)層を、これが実行されますN−1回。
例
例として、4層のMLPのフォワードパスアルゴリズムの時間計算量を計算してみましょう。ここで、iは入力層のノード数、jは2番目の層のノード数、kはノードのノード数3番目の層とlは出力層のノードの数です。
4レイヤーがあるため、これらのレイヤー間の重みを表すには3マトリックスが必要です。Wji、Wkj、Wlkでそれらを示しましょう。ここで、Wjiはj行i列の行列です(したがって、Wjiにはレイヤーiからレイヤーjへの重みが含まれます)。
あなたが持っていると仮定t訓練例を。レイヤーiからj伝播するには、最初に
Sjt=Wji∗Zit
そして、この操作(すなわち、行列の乗算)は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)ます。
In total, the time complexity for feedforward propagation will be
O(j∗i∗t+k∗j∗t+l∗k∗t)=O(t∗(ij+jk+kl))
I'm not sure if this can be simplified further or not. Maybe it's just O(t∗i∗j∗k∗l), but I'm not sure.
Back-propagation algorithm
逆伝播アルゴリズムは次のように進みます。出力層から開始l→k、我々は、エラー信号、計算Elt、層のノードのための誤差信号を含むマトリックスl
Elt=f′(Slt)⊙(Zlt−Olt)
どこ⊙要素毎の乗算を意味します。Eltはl行とt列があることに注意してください。各列がトレーニング例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