chainer.functions.
linear
(x, W, b=None)[source]¶
線形関数、もしくはアフィン変換。
引数を2つか3つ受け入れます。すなわち入力ミニバッチ x
、荷重行列 W
, そしてオプションとして
バイアスベクトル b
。
Parameters: |
|
---|---|
Returns: |
出力値。 shape が \((s_B, M)\)であるfloat配列。 |
Return type: |
Example
>>> x = np.random.uniform(0, 1, (3, 4)).astype('f')
>>> W = np.random.uniform(0, 1, (5, 4)).astype('f')
>>> b = np.random.uniform(0, 1, (5,)).astype('f')
>>> y = F.linear(x, W, b)
>>> y.shape
(3, 5)