阿丁不是小朋友

导航

2018年7月9日 #

【leetcode198 解题思路】动态规划

摘要: 动态规划 https://blog.csdn.net/so_geili/article/details/53639920 最长公共子序列 https://blog.csdn.net/so_geili/article/details/53737001#comments 阅读全文

posted @ 2018-07-09 20:03 阿丁不是小朋友 阅读(133) 评论(0) 推荐(0) 编辑

2018年3月22日 #

某次笔试在线编程心得

摘要: class solution(object): def __init__(self): self.sum = 0 self.count = 1 self.S = raw_input('s=') self.T = raw_input('t=') def difference(self): s = li 阅读全文

posted @ 2018-03-22 22:28 阿丁不是小朋友 阅读(89) 评论(0) 推荐(0) 编辑

2018年3月1日 #

[Deep Learning] mini-batch

摘要: 转自 http://hp.stuhome.net/index.php/2016/09/20/tensorflow_batch_minibatch/ 深度学习的优化算法,说白了就是梯度下降。每次的参数更新有两种方式。 第一种,遍历全部数据集算一次损失函数,然后算函数对各个参数的梯度,更新梯度。这种方法 阅读全文

posted @ 2018-03-01 10:25 阿丁不是小朋友 阅读(135) 评论(0) 推荐(0) 编辑