import tensorflow as tf import numpy as np a = np.random.random([2, 6]) b = np.random.random([6, 3]) ta = tf.Variable(a) tb = tf.Variable(b) multiply = tf.matmul(ta, tb) init_op = tf.global_variables_initializer() s = tf.InteractiveSession() s.run(init_op) s.run(multiply)
100 TensorFlow系列 | Demo
博文推荐
2
蒙特卡洛树搜索
5
RTA
7
模型的可训练性
10
RIG(相对信息增益)
11
工业界推荐系统
12
Hinge Loss
15
Pretext task
16
聚类和矩阵分解
17
置信度
18
nginx开机启动
20
强化学习教程