목록케라스 (2)
IT_World
ModuleNotFoundError: No module named 'tensorboard' 에러 발생 환경 os : Ubuntu 18.64 Tensorflow Keras 가장 먼저 텐서보드 설치 pip install tensorboard #tensorboard --logdir=runs 예시 코드 #1. 데이터 import numpy as np dataset = np.array(range(1,101)) size = 5 #데이터 전처리 def split_x(seq, size): aaa = [] #는 테스트 for i in range(len(seq)-size+1): subset = seq[i:(i+size)] # aaa.append([item for item in subset]) aaa.append(subse..
지난 예측 프로그램을 가지고 종가 예측해볼 것이다. import numpy as np import pandas as pd kospi = np.load('/kospi.npy') samsung = np.load('./samsung.npy') print(kospi) print(samsung) print(kospi.shape) print(samsung.shape) def split_xy5(dataset, time_steps, y_column): x, y = list(), list() for i in range(len(dataset)): x_end_number = i + time_steps y_end_number = x_end_number + y_column if y_end_number > len(dataset)..