gpt4 book ai didi

python - 如何使用 TensorFlow 计算矩阵运算?

转载 作者:行者123 更新时间:2023-11-30 22:59:30 32 4
gpt4 key购买 nike

我有一个 pandas 数据框,其中包含从 0 到 1 的 float 。
我想对该矩阵求一定的幂(例如 6)。

我开始使用 scipy 但对于我的 7000x7000 矩阵来说,该操作花费了非常非常长的时间,所以我认为这将是测试 tensorflow 的绝佳机会

如果符号是关于迷幻的,我很抱歉,我认为我输入的一切都是正确的。我想使用 placeholderfeed。我的函数 exp_corr 输入一个 pandas 数据帧对象,然后对矩阵求幂到某个整数的幂。

如何将占位符与 feed_dict 一起使用?

这是我的代码:

#Example DataFrame
L_test = [[0.999999999999999,
0.374449352805868,
0.000347439531148995,
0.00103026903356954,
0.0011830950375467401],
[0.374449352805868,
1.0,
1.17392596672424e-05,
1.49428208843456e-07,
1.216664263989e-06],
[0.000347439531148995,
1.17392596672424e-05,
1.0,
0.17452569907144502,
0.238497202355299],
[0.00103026903356954,
1.49428208843456e-07,
0.17452569907144502,
1.0,
0.7557000865939779],
[0.0011830950375467401,
1.216664263989e-06,
0.238497202355299,
0.7557000865939779,
1.0]]
labels = ['AF001', 'AF002', 'AF003', 'AF004', 'AF005']
DF_corr = pd.DataFrame(L_test,columns=labels,index=labels)
DF_signed = np.tril(np.ones(DF_corr.shape)) * DF_corr

数据框看起来像:

              AF001         AF002     AF003   AF004  AF005
AF001 1.000000 0.000000e+00 0.000000 0.0000 0
AF002 0.374449 1.000000e+00 0.000000 0.0000 0
AF003 0.000347 1.173926e-05 1.000000 0.0000 0
AF004 0.001030 1.494282e-07 0.174526 1.0000 0
AF005 0.001183 1.216664e-06 0.238497 0.7557 1

我尝试过的矩阵指数函数:

#TensorFlow Computation
def exp_corr(DF_var,exp=6):
# T_feed = tf.placeholder("float", DF_var.shape) ?
T_con = tf.constant(DF_var.as_matrix(),dtype="float")
T_exp = tf.pow(T_con, exp)

#Initiate
init = tf.initialize_all_variables()
sess = tf.Session()
DF_exp = pd.DataFrame(sess.run(T_exp))
DF_exp.columns = DF_var.column; DF_exp.index = DF_var.index
sess.close()
return(DF_exp)

DF_exp = exp_corr(DF_signed)

最佳答案

编辑:问题已更新以删除错误消息。您已经非常接近能够将矩阵输入到您的程序中了。以下版本的 exp_corr() 函数应该可以解决问题:

def exp_corr(DF_var,exp=6):
T_feed = tf.placeholder(tf.float32, DF_var.shape)
T_exp = tf.pow(T_feed, exp)

sess = tf.Session()

# Use the `feed_dict` argument to specify feeds.
DF_exp = pd.DataFrame(sess.run(T_exp, feed_dict={T_feed: DF_var.as_matrix()}))
DF_exp.columns = DF_var.column; DF_exp.index = DF_var.index

sess.close()

return DF_exp
<小时/>

您的程序的原始问题在错误消息中:

Node 'Input Dataframe': Node name contains invalid characters

特别是,TensorFlow op 构造函数的 name 参数(例如 tf.constant()tf.pow())必须是一个不包含空格的字符串。

节点名称的语法定义为 here 。节点名称必须与以下正则表达式匹配(基本上是字母数字,加上 ._/,但不以 开头_/):

[A-Za-z0-9.][A-Za-z0-9_./]*

关于python - 如何使用 TensorFlow 计算矩阵运算?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35736722/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com