2018 年 2 月 6 日,Think with Google 年度峰会在北京召开.在本次峰会上,我们分享了 Google 和我们的合作伙伴在 AI (人工智能) 方面取得的成绩,探讨如何利用人工智能促进科技公司.市场营销和文化艺术领域的发展,以及我们能为中国市场做些什么? 在本次峰会上,京东副总裁翁志为我们介绍了京东是如何使用 TensorFlow 应用在图像审核.文字识别硬件和广告等业务上的.…
Windows上TensorFlow的安装和环境搭建: 1.安装Python 3.5.2 2.通过Pip3安装TensorFlow CPU版 https://www.tensorflow.org/install/install_windows 3.VisualStudio2015 Python Project中加入SitePackages中的tensorFlow项目 Find the location of site-packages: Then add the tensorflow folde…
import tensorflow as tf a = tf.constant([1.0, 2.0], name="a") b = tf.constant([2.0, 3.0], name="b") result = a + b print(result) import tensorflow as tf g1 = tf.Graph() with g1.as_default(): v = tf.get_variable("v", [1], init…