本文首发于个人博客https://kezunlin.me/post/281dd8cd/,欢迎阅读! guide to compile and install poco cpp library on ubuntu 16.04 Series guide to compile and install poco cpp library on windows guide to compile and install poco cpp library on ubuntu 16.04 Guide apt-ge…
本文首发于个人博客https://kezunlin.me/post/9587bb47/,欢迎阅读! compile and install poco cpp library on windows Series guide to compile and install poco cpp library on windows guide to compile and install poco cpp library on ubuntu 16.04 Guide download wget https:…
2018 年 2 月 6 日,Think with Google 年度峰会在北京召开.在本次峰会上,我们分享了 Google 和我们的合作伙伴在 AI (人工智能) 方面取得的成绩,探讨如何利用人工智能促进科技公司.市场营销和文化艺术领域的发展,以及我们能为中国市场做些什么? 在本次峰会上,京东副总裁翁志为我们介绍了京东是如何使用 TensorFlow 应用在图像审核.文字识别硬件和广告等业务上的.…
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…