constructor

NeuralNetwork.constructor(gpgpu)
引数:
  • gpgpu (GPGPU) – GPGPUのオブジェクト

ソース

constructor(gpgpu) {
    net = this;
    WebGL2 = gpgpu;
    this.trainingCost = [];
    this.testCost = [];
    this.trainingAccuracy = [];
    this.testAccuracy = [];
}