M | 中間層の数\(M\)。 The number, \(M\), of intermediate layers. |
N | 教師データ数\(N\)。 The number, \(N\), of teaching data. |
J | 各層における変数の個数を並べた要素数\(M+2\)の配列。
各mについてJ[m]\(=J^{(m)}\)とする。 An array of \(M+2\) components composed of the number of variables in each layer; J[m]\(=J^{(m)}\) for each \(m\). |
x0 | 教師データにおける入力層の変数の値を並べた\(N\times J^{(0)}\)の2次元配列。
各n,iについてx0[n][i]\(=x_i^{(0,n)}\)とする。 A 2-D array of \(N\times J^{(0)}\) composed of the values of variables of the teaching data in the input layer; x0[n][i]\(=x_i^{(0,n)}\) for each n and i. |
W | 各層における線形結合の係数の値のリスト。
サイズの異なる\(M+1\)個の2次元配列W[m] (\(m=0,\cdots,M\))
を並べた「配列の配列」であり、
各W[m]は\(J^{(m+1)}\times [J^{(m)}+1]\)の2次元配列である。
各m,j,iについてW[m][j][i]\(=W_{j,i}^{(m)}\)とする。 A list of the coefficients of linear combinations in each layer, given as an “array of array”, composed of \(M+1\) sub-arrays W[m] (\(m = 0, \cdots, M\)) of mutually different size; each W[m] is a 2-D array of \(J^{(m+1)}\times [J^{(m)}+1]\). The value of each array component is given as W[m][j][i]\(=W_{j,i}^{(m)}\) for each m, j, and i. |
func_name | 各層における変数の線形結合を用いて次の層の変数を計算する際に用いる数学関数の名前
を並べた要素数\(M+1\)の文字列配列。
各mについてfunc_name[m]は\(f_j^{(m)}\)の関数名を表す。 An array composed of \(M+1\) strings; each array component (string) represents the name of a mathematical function used for the calculation of the variables in each layer from the linear combinations of the previous layer. The value of func_name[m] for each m is a function name of \(f_j^{(m)}\). |
x | 各層における変数の値の代入先。
宣言しただけのdouble ∗∗∗型変数に&を付けて与える。
関数内で配列の動的メモリが確保され、配列要素の値が設定される。
作成される配列はサイズの異なる\(M+2\)個の2次元配列
(∗x)[m] (\(m=0,\cdots,M+1\))
を並べた「配列の配列」であり、
各(∗x)[m]は\(N\times J^{(m)}\)の2次元配列である。
各m,n,iについて(∗x)[m][n][i]\(=x_i^{(m,n)}\)となる。 Memory into which the values of variables in each layer are to be inserted. Give an empty double ∗∗∗-type variable with &. Within the function, the dynamic memory for an array is allocated and the values of the array components are inserted. The array to be created is an “array of array”, composed of \(M+2\) sub-arrays (∗x)[m] (\(m = 0,\cdots,M+1\)) of mutually different size; each (∗x)[m] is a 2-D array of \(N\times J^{(m)}\). The value of each array component is given as (∗x)[m][n][i]\(=x_i^{(m,n)}\) for each m, n, and i. |
y | 各層における変数の線形結合の値の代入先。
宣言しただけのdouble ∗∗∗型変数に&を付けて与える。
関数内で配列の動的メモリが確保され、配列要素の値が設定される。
作成される配列はサイズの異なる\(M+1\)個の2次元配列
(∗y)[m] (\(m=0,\cdots,M\))
を並べた「配列の配列」であり、
各(∗y)[m]は\(N\times J^{(m+1)}\)の2次元配列である。
各m,n,jについて(∗y)[m][n][j]\(=y_j^{(m,n)}\)となる。 Memory into which the values of the linear combinations of variables in each layer are to be inserted. Give an empty double ∗∗∗-type variable with &. Within the function, the dynamic memory for an array is allocated and the values of the array components are inserted. The array to be created is an “array of array”, composed of \(M+1\) sub-arrays (∗y)[m] (\(m = 0,\cdots,M\)) of mutually different size; each (∗y)[m] is a 2-D array of \(N\times J^{(m+1)}\). The value of each array component is given as (∗y)[m][n][j]\(=y_j^{(m,n)}\) for each m, n, and j. |