tensorflow函数总结

数值乘法mul

例如:a=3,b=3,a*b = 9

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.mul(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 3, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果:9.0

数值和add

例如: a = 3, b=3 ,a+b = 6

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.add(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 3, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果:6.0

数值减法sub

例如:a=3,b=3,a-b = 0

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.sub(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 3, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 0.0

数值除法div

例如: a=3,b=3,a/b = 1.0

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.div(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 3, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 1.0

数值取模mod

例如:a=3,b=3,a mod b = 0

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.mod(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 3, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 0.0

数值绝对值abs

例如:a=-3, abs (a) = 3

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.abs(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 3.0

数值非负值neg

例如:a=-3, neg (a) = 3

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.neg(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 3.0

数值符号函数sign

例如:a=-3, neg (a) = 3

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.neg(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 3.0

数值符号函数sign

例如: a=-3,sign(a) = -1

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.sign(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: -1.0

数值倒数inv

例如: a=-3,sign(a) = -1

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.sign(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: -1.0

数值平方square

例如: a=-3,square(a) = 9

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.square(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 9.0

数值最近的整数round

例如: a=-3.6,round(a) = -4.0

import tensorflow as tf
y = tf.round(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3.6}))
  • 1
  • 2
  • 3
  • 4

结果: -4.0

例如: a=-3.3,round(a) = -3.0

import tensorflow as tf
y = tf.round(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3.3}))
  • 1
  • 2
  • 3
  • 4

结果:-3.0

数值平方根sqrt

例如: a=4,sqrt(a) = 2

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.sqrt(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 4}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 2.0

数值幂次pow

例如: a=2,b=3,pow(a,b) = 8

import tensorflow as tf
a = tf.placeholder(tf.float64)
b = tf.placeholder(tf.float64)
y = tf.pow(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 2, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 8.0

数值最近的整数exp

例如: a=2,exp(a) = 7.38906

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.exp(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 2}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 7.38906

数值取对数log

例如: a=-3.6,round(a) = -4.0

import tensorflow as tf
a = tf.placeholder(tf.float32)
y = tf.log(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 2}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 0.69314718056

数值取最大值maximum

例如: a=-3.6, b = 2,maximum(a,b)=2

import tensorflow as tf
a = tf.placeholder(tf.float32)
b = tf.placeholder(tf.float32)
y = tf.maximum(a,b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: -3.6,b: 2}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 2.0

数值最小值minimum

例如: a=2,b=3minimum(a) = 3

import tensorflow as tf
a = tf.placeholder(tf.float64)
b = tf.placeholder(tf.float64)
y = tf.minimum(a, b)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 2, b: 3}))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

结果: 2.0

数值余弦函数cos

例如: a=2,cos(a) = -0.416146836547

import tensorflow as tf
a = tf.placeholder(tf.float64)
y = tf.cos(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 2}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: -0.416146836547

数值正弦函数sin

例如: a=2,sin(a) = -0.416146836547

import tensorflow as tf
a = tf.placeholder(tf.float64)
y = tf.sin(a)
sess = tf.Session() 
print (sess.run(y, feed_dict={a: 2}))
  • 1
  • 2
  • 3
  • 4
  • 5

结果: 0.909297426826

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值