| 查看: 755 | 回复: 0 | ||
| 【悬赏金币】回答本帖问题,作者yang_12345将赠送您 5 个金币 | ||
[求助]
Tensorflow自伴特征分解不成功,输入可能无效
|
||
|
Self-adjoint eigen decomposition was not successful. The input might not be valid(Tensorflow自伴特征分解不成功,输入可能无效) def cca_loss(outdim_size, use_all_singular_values): def inner_cca_objective(y_true, y_pred): r1 = 1e-4 r2 = 1e-4 eps = 1e-12 print("y_pred:",y_pred.shape[1]) o1 = o2 = int(y_pred.shape[1] // 2) print(y_pred) print("aaaa",o1,o2) # unpack (separate) the output of networks for view 1 and view 2 H1 = tf.transpose(y_pred[:, 0 1])H2 = tf.transpose(y_pred[:, o1 1 + o2])m = tf.shape(H1)[1] H1bar = H1 - tf.cast(tf.divide(1, m), tf.float32) * tf.matmul(H1, tf.ones([m, m])) H2bar = H2 - tf.cast(tf.divide(1, m), tf.float32) * tf.matmul(H2, tf.ones([m, m])) SigmaHat12 = tf.cast(tf.divide(1, m - 1), tf.float32) * tf.matmul(H1bar, H2bar, transpose_b=True) # [dim, dim] SigmaHat11 = tf.cast(tf.divide(1, m - 1), tf.float32) * tf.matmul(H1bar, H1bar, transpose_b=True) + r1 * tf.eye( o1) SigmaHat22 = tf.cast(tf.divide(1, m - 1), tf.float32) * tf.matmul(H2bar, H2bar, transpose_b=True) + r2 * tf.eye( o2) D1, V1 = tf.self_adjoint_eig(SigmaHat11) #求特征值 特征向量 D2, V2 = tf.self_adjoint_eig(SigmaHat22) # Added to increase stability posInd1 = tf.where(tf.greater(D1, eps)) D1 = tf.gather_nd(D1, posInd1) # get eigen values that are larger than eps 选出大于eps的特征值 V1 = tf.transpose(tf.nn.embedding_lookup(tf.transpose(V1), tf.squeeze(posInd1))) posInd2 = tf.where(tf.greater(D2, eps)) D2 = tf.gather_nd(D2, posInd2) V2 = tf.transpose(tf.nn.embedding_lookup(tf.transpose(V2), tf.squeeze(posInd2))) SigmaHat11RootInv = tf.matmul(tf.matmul(V1, tf.diag(D1 ** -0.5)), V1, transpose_b=True) # [dim, dim] SigmaHat22RootInv = tf.matmul(tf.matmul(V2, tf.diag(D2 ** -0.5)), V2, transpose_b=True) Tval = tf.matmul(tf.matmul(SigmaHat11RootInv, SigmaHat12), SigmaHat22RootInv) print("use_all_singular_values",use_all_singular_values) if use_all_singular_values: corr = tf.sqrt(tf.trace(tf.matmul(Tval, Tval, transpose_a=True))) else: [U, V] = tf.self_adjoint_eig(tf.matmul(Tval, Tval, transpose_a=True)) U = tf.gather_nd(U, tf.where(tf.greater(U, eps))) kk = tf.reshape(tf.cast(tf.shape(U), tf.int32), []) K = tf.minimum(kk, outdim_size) w, _ = tf.nn.top_k(U, k=K) corr = tf.reduce_sum(tf.sqrt(w)) print("corr:",corr) return -corr return inner_cca_objective |
» 猜你喜欢
化工调剂303分,过四级
已经有5人回复
071000生物学调剂
已经有3人回复
一志愿华东理工大学,080500学硕,317分,求调剂
已经有10人回复
327求调剂
已经有9人回复
0856初试324分求调剂
已经有6人回复
08开头看过来!!!
已经有6人回复
材料调剂
已经有7人回复
一志愿北京科技大学085601材料工程英一数二初试总分335求调剂
已经有8人回复
085900土木水利336分求调剂
已经有6人回复
319求调剂
已经有13人回复














1])
回复此楼