データをLSTMに合わせる 2017年12月28日 by 河副 太智 Leave a Comment データをLSTMで分析できるように形を整る [行数], [変数数], [カラム数(ルックバック数)]の形式に変換 trainX = numpy.reshape(trainX, (trainX.shape[0], 1, trainX.shape[1])) testX = numpy.reshape(testX, (testX.shape[0], 1, testX.shape[1])) 12 trainX = numpy.reshape(trainX, (trainX.shape[0], 1, trainX.shape[1]))testX = numpy.reshape(testX, (testX.shape[0], 1, testX.shape[1])) Tweet [`yahoo` not found]
コメントを残す