2019年5月19日

Tensorflow_入门学习_2_一个神经网络栗子

摘要: 3.0 A Neural Network Example 载入数据: ont_hot:将数据集的标签转换为ont-hot编码, i.e. “4”:[0, 0, 0, 0, 1, 0, 0, 0, 0, 0]。 3.1 Setting things up 1.为训练数据创建placeholder变量 阅读全文

posted @ 2019-05-19 21:16 JASONlee3 阅读(197) 评论(0) 推荐(0) 编辑

Tensorflow_入门学习_1

摘要: 1.0 TensorFlow graphs Tensorflow是基于graph based computation: 如: a=(b+c)∗(c+2) 可分解为 d=b+c e=c+2 a=d∗e 这样做的目的在于,d=b+c,e=c+2,这两个式子就可以并行地计算。 2.0 A Simple T 阅读全文

posted @ 2019-05-19 19:35 JASONlee3 阅读(170) 评论(0) 推荐(0) 编辑

leetcode_1049. Last Stone Weight II_[DP]

摘要: 1049. Last Stone Weight II https://leetcode.com/problems/last-stone-weight-ii/ 题意:从一堆石头里任选两个石头s1,s2,若s1==s2,则两个石头都被销毁,否则加入s1<s2,剩下一块重量为s2-s1的石头。重复上面的操 阅读全文

posted @ 2019-05-19 18:08 JASONlee3 阅读(774) 评论(0) 推荐(0) 编辑

leetcode_1048. Longest String Chain_[DP,动态规划,记忆化搜索]

摘要: 1048. Longest String Chain https://leetcode.com/problems/longest-string-chain/ Let's say word1 is a predecessor of word2 if and only if we can add exa 阅读全文

posted @ 2019-05-19 13:22 JASONlee3 阅读(200) 评论(0) 推荐(0) 编辑

导航