# -*- encoding:utf-8 -*- import numpy as np from keras.models import load_model import joblib def read_data(path): lines = [] with open(path) as f: for line in f.readlines()[:]: line = eval(line.strip()) lines.append(line) size = len(lines[0]) train_x=[s[:size - 2] for s in lines] train_y=[s[size-1] for s in lines] return np.array(train_x, dtype=np.float32),np.array(train_y, dtype=np.float32),lines def _score(fact, line): up_right = 0 up_error = 0 if fact[0] == 1: up_right = up_right + 1.05 elif fact[1] == 1: up_error = up_error + 0.3 up_right = up_right + 1.02 elif fact[2] == 1: up_error = up_error + 0.6 up_right = up_right + 0.98 else: up_error = up_error + 1 up_right = up_right + 0.95 return up_right,up_error def predict(file_path='', model_path='15min_dnn_seq.h5', idx=-1, row=18, col=20): test_x,test_y,lines=read_data(file_path) test_x_a = test_x[:,:row*col] test_x_a = test_x_a.reshape(test_x.shape[0], row, col, 1) # test_x_b = test_x[:, row*col:row*col+18*2] # test_x_b = test_x_b.reshape(test_x.shape[0], 18, 2, 1) test_x_c = test_x[:,row*col:] model=load_model(model_path) score = model.evaluate([test_x_c, test_x_a, ], test_y) print('MIX', score) up_num = 0 up_error = 0 up_right = 0 down_num = 0 down_error = 0 down_right = 0 i = 0 result = model.predict([test_x_c, test_x_a, ]) win_dnn = [] for r in result: fact = test_y[i] if idx in [-2]: if r[0] > 0.5 or r[1] > 0.5: pass else: if r[0] > 0.5 or r[1] > 0.5: tmp_right,tmp_error = _score(fact, lines[i]) up_right = tmp_right + up_right up_error = tmp_error + up_error up_num = up_num + 1 elif r[2] > 0.5 or r[3] > 0.5: if fact[0] == 1: down_error = down_error + 1 down_right = down_right + 1.05 elif fact[1] == 1: down_error = down_error + 0.5 down_right = down_right + 1.02 elif fact[2] == 1: down_right = down_right + 0.98 else: down_right = down_right + 0.95 down_num = down_num + 1 i = i + 1 if up_num == 0: up_num = 1 if down_num == 0: down_num = 1 print('MIX', up_right, up_num, up_right/up_num, up_error/up_num, down_right/down_num, down_error/down_num) return win_dnn,up_right/up_num,down_right/down_num if __name__ == '__main__': predict(file_path='D:\\data\\quantization\\industry\\stock13_10d_3D_train3.log', model_path='107_10d_mix_3D_s_seq.h5', row=10, col=8)