constructor ====================== .. js:function:: FullyConnectedLayer.constructor(size, activation_function) :param int size: 出力のニューロンの数 :param int activation_function: 活性化関数のid ソース ^^^^^^ .. code-block:: js constructor(size, activation_function) { super(); this.unitSize = size; this.activationFunction = activation_function; this.params = {}; }