ML_calculate_all_xy
[\(x_i^{(m,n)}\), \(y_i^{(m,n)}\)]
(all \(m\), \(n\), \(i\))
ML_x2y [\(y_j^{(m,n)}\)] (given \(m\), \(n\); all \(j\)) ML_y2x [\(x_j^{(m+1,n)}\)] (given \(m\), \(n\); all \(j\)) ML_cross_entropy [\(E\)] ML_cross_entropy_derivative [\(\partial E / \partial W_{j,i}^{(m)}\)] (all \(m\), \(j\), \(i\)) ML_calculate_all_Ej [\(E_j^{(m,n)}\)] (all \(m\), \(n\), \(j\)) ML_calculate_EjM [\(E_j^{(M,n)}\)] (given \(n\); all \(j\)) ML_calculate_Ej_recursive [\(E_j^{(m,n)}\)] (given \(m\)(<\(M\)), \(n\); all \(j\)) |
関数名 Function name |
機能・用途 Purpose |
ML_x2y 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
1つの層での変数\(X_i^{(m)}\)の値を与えて
その線形結合\(Y_j^{(m)}\)の値を計算する。
【特定の1つの\(m\)、全ての\(j\)】
Calculate the values of linear combinations \(Y_j^{(m)}\) given the values of variables \(X_i^{(m)}\) in a layer. [For a single \(m\) and for all \(j\)] |
ML_x2y_givenMemories 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
1つの層での変数\(X_i^{(m)}\)の値を与えて
その線形結合\(Y_j^{(m)}\)の値を計算する。
\(Y_j^{(m)}\)の動的メモリを前もって確保しておくバージョン。
【特定の1つの\(m\)、全ての\(j\)】
Calculate the values of linear combinations \(Y_j^{(m)}\) given the values of variables \(X_i^{(m)}\) in a layer; a version assuming that the dynamic memory for \(Y_j^{(m)}\) is allocated in advance to the function call. [For a single \(m\) and for all \(j\)] |
ML_y2x 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
1つの層での変数の線形結合\(Y_j^{(m)}\)の値を与えて
次の層の変数\(X_j^{(m+1)}\)の値を計算する。
【特定の1つの\(m\)、全ての\(j\)】
Calculate the values of variables \(X_j^{(m+1)}\) of a layer given the values of linear combinations, \(Y_j^{(m)}\), of the variables in the previous layer. [For a single \(m\) and for all \(j\)] |
ML_y2x_givenMemories 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
1つの層での変数の線形結合\(Y_j^{(m)}\)の値を与えて
次の層の変数\(X_j^{(m+1)}\)の値を計算する。
\(X_j^{(m+1)}\)の動的メモリを前もって確保しておくバージョン。
【特定の1つの\(m\)、全ての\(j\)】
Calculate the values of variables \(X_j^{(m+1)}\) of a layer given the values of linear combinations, \(Y_j^{(m)}\), of the variables in the previous layer; a version assuming that the dynamic memory for \(X_j^{(m+1)}\) is allocated in advance to the function call. [For a single \(m\) and for all \(j\)] |
ML_calculate_all_xy | 教師データにおける入力層の変数\(x_i^{(0,n)}\)の値を与えて
全ての層での変数\(x_i^{(m,n)}\)およびその線形結合\(y_i^{(m,n)}\)
の値を計算する。
【全ての\(m\), \(n\), \(i\)】
Calculate the values of variables \(x_i^{(m,n)}\) and their linear combinations \(y_i^{(m,n)}\) in all layers given the variables in the input layer \(x_i^{(0,n)}\) of the teaching data. [For all \(m\), \(n\), and \(i\)] |
ML_calculate_all_xy_givenMemories | 教師データにおける入力層の変数\(x_i^{(0,n)}\)の値を与えて
全ての層での変数\(x_i^{(m,n)}\)およびその線形結合\(y_i^{(m,n)}\)
の値を計算する。
\(x_i^{(m,n)}\), \(y_i^{(m,n)}\)の動的メモリを
前もって確保しておくバージョン。
【全ての\(m\), \(n\), \(i\)】
Calculate the values of variables \(x_i^{(m,n)}\) and their linear combinations \(y_i^{(m,n)}\) in all layers given the variables in the input layer \(x_i^{(0,n)}\) of the teaching data; a version assuming that the dynamic memories for \(x_i^{(m,n)}\) and \(y_i^{(m,n)}\) are allocated in advance to the function call. [For all \(m\), \(n\), and \(i\)] |
ML_cross_entropy | 交差エントロピー誤差を計算する。 Calculate a cross entropy error. |
ML_calculate_EjM 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差の微分の計算に登場する\(E_j^{(M,n)}\)を計算する。
【特定の1つの\(n\)、全ての\(j\)】
Calculate the values of \(E_j^{(M,n)}\) which appears in the formula of the derivative of the cross entropy error. [For a single \(n\) and for all \(j\)] |
ML_calculate_EjM_givenMemories 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差の微分の計算に登場する\(E_j^{(M,n)}\)を計算する。
\(E_j^{(M,n)}\)の動的メモリを前もって確保しておくバージョン。
【特定の1つの\(n\)、全ての\(j\)】
Calculate the values of \(E_j^{(M,n)}\) which appears in the formula of the derivative of the cross entropy error; a version assuming that the dynamic memories for \(E_j^{(M,n)}\) are allocated in advance to the function call. [For a single \(n\) and for all \(j\)] |
ML_calculate_Ej_recursive 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差の微分の計算に登場する\(E_j^{(m,n)}\)
\((m < M)\)を計算する。
【特定の1つの\(m\), \(n\)、全ての\(j\)】
Calculate the values of \(E_j^{(m,n)}\) \((m < M)\) which appears in the formula of the derivative of the cross entropy error. [For single \(m\) and \(n\) values and for all \(j\)] |
ML_calculate_Ej_recursive_givenMemories 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差の微分の計算に登場する\(E_j^{(m,n)}\)
\((m < M)\)を計算する。
\(E_j^{(m,n)}\)の動的メモリを前もって確保しておくバージョン。
【特定の1つの\(m\), \(n\)、全ての\(j\)】
Calculate the values of \(E_j^{(m,n)}\) \((m < M)\) which appears in the formula of the derivative of the cross entropy error; a version assuming that the dynamic memories for \(E_j^{(m,n)}\) are allocated in advance to the function call. [For single \(m\) and \(n\) values and for all \(j\)] |
ML_calculate_all_Ej 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差の微分の計算に登場する\(E_j^{(m,n)}\)を計算する。
【全ての\(m\), \(n\), \(j\)】
Calculate the values of \(E_j^{(m,n)}\) which appears in the formula of the derivative of the cross entropy error. [For all \(m\), \(n\), and \(j\)] |
ML_calculate_all_Ej_givenMemories 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差の微分の計算に登場する\(E_j^{(m,n)}\)を計算する。
\(E_j^{(m,n)}\)の動的メモリを前もって確保しておくバージョン。
【全ての\(m\), \(n\), \(j\)】
Calculate the values of \(E_j^{(m,n)}\) which appears in the formula of the derivative of the cross entropy error; a version assuming that the dynamic memories for \(E_j^{(m,n)}\) are allocated in advance to the function call. [For all \(m\), \(n\), and \(j\)] |
ML_cross_entropy_derivative 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差のモデルパラメータによる微分
\(\partial E / \partial W_{j,i}^{(m)}\)
を計算する。
【全ての\(m\), \(j\), \(i\)】
Calculate the derivatives of the cross entropy error by model parameters (\(\partial E / \partial W_{j,i}^{(m)}\)). [For all \(m\), \(j\), and \(i\)] |
ML_cross_entropy_derivative_givenMemories 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
交差エントロピー誤差のモデルパラメータによる微分
\(\partial E / \partial W_{j,i}^{(m)}\)
を計算する。
\(\partial E / \partial W_{j,i}^{(m)}\)および
計算過程で用いられる\(E_j^{(m,n)}\)の動的メモリを
前もって確保しておくバージョン。
【全ての\(m\), \(j\), \(i\)】
Calculate the derivatives of the cross entropy error by model parameters (\(\partial E / \partial W_{j,i}^{(m)}\)); a version assuming that the dynamic memories for \(\partial E / \partial W_{j,i}^{(m)}\), and for \(E_j^{(m,n)}\) used in the calculation, are allocated in advance to the function call. [For all \(m\), \(j\), and \(i\)] |