摘要:
import numpy as np import tensorflow as tf y_pred = np.array([[1], [2], [3]],dtype=np.float32) y_real = np.array([[1], [1], [1]]) bias = np.array([1,2 阅读全文
posted @ 2018-10-06 23:53 wzd321 阅读(2072) 评论(0) 推荐(0)
|
|
|
|
摘要:
import numpy as np import tensorflow as tf y_pred = np.array([[1], [2], [3]],dtype=np.float32) y_real = np.array([[1], [1], [1]]) bias = np.array([1,2 阅读全文
posted @ 2018-10-06 23:53 wzd321 阅读(2072) 评论(0) 推荐(0)
摘要:
tf.matmul(a,b,transpose_a=False,transpose_b=False, adjoint_a=False, adjoint_b=False, a_is_sparse=False, b_is_sparse=False, name=None) 参数: a,b的维数必须相同 i 阅读全文
posted @ 2018-10-06 23:13 wzd321 阅读(3499) 评论(0) 推荐(0)
摘要:
import seaborn as sn sn.heatmap(trainX.corr(),vmax=1,square=True) 阅读全文
posted @ 2018-10-06 21:54 wzd321 阅读(447) 评论(0) 推荐(0) |
|