码迷,mamicode.com
首页 > 其他好文 > 详细

tensorflow-矩阵乘法

时间:2018-12-13 13:50:26      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:乘法   var   ESS   val   ted   author   create   eval   variables   

#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Wed Dec 12 18:18:06 2018 @author: myhaspl """ import tensorflow as tf w1=tf.Variable(tf.random_normal([2,5],mean=1.0,stddev=1.0)) w2=tf.Variable(tf.random_normal([5,1],mean=1.0,stddev=1.0)) x=tf.constant([[0.9,2.8]]) y1=tf.matmul(x,w1) y2=tf.matmul(y1,w2) with tf.Session() as ess: tf.global_variables_initializer().run() print(y2.eval())

[[16.396265]]

tensorflow-矩阵乘法

标签:乘法   var   ESS   val   ted   author   create   eval   variables   

原文地址:http://blog.51cto.com/13959448/2329916

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!