
TensorFlow
aidem_brown
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TensorFlow numpy等基础运算
import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np import sklearn import pandas as pd import os import sys import time import tensorflow as tf from tensorflow import keras p...原创 2020-01-30 21:07:49 · 366 阅读 · 0 评论 -
TensorFlow tf.control_dependencies
import tensorflow as tf a_1 = tf.Variable(1) b_1 = tf.Variable(2) update_op1 = tf.assign(a_1, 10) add = tf.add(a_1, b_1) a_2 = tf.Variable(1) b_2 = tf.Variable(2) update_op2 = tf.assign(a_2, 10) wit...原创 2020-01-16 11:23:57 · 216 阅读 · 0 评论