/// ================================================= /// <summary> /// Returns some 1D float array with the weight and bias /// </summary> /// <returns></returns> public float[] GetGenes() { float[] fullValues = Genome.Concatenate(this.weights.Values, this.bias.Values); return(fullValues); }