Qt Tensorflow中梯度裁剪
本文简单介绍梯度裁剪(gradient clipping)的方法及其作用,不管在RNN或者在其他网络都是可以使…
Tensorflow Tensorflow pipline 性能
输入管道性能指南 GPU 和 TPU 可以从根本上缩短执行单个训练步骤所需的时间。为了实现最佳性能的目的,我们…
Tensorflow tf.GraphKeys简介
GraphKeys tf.GraphKeys包含所有graph collection中的标准集合名,有点像Py…
leetcode 136.OJ-获取列表中仅出现一次的数字
给定一个非空的整数数组,除了一个元素外,每个元素都会出现两次。 找一个单一的。 Note: 您的算法应具有线性…
leetcode 123. 最佳时间买卖股票(仅限N次)
假设您有一个数组,其中第i个元素是第i天给定股票的价格。 设计算法以找到最大利润。 您最多可以完成两笔交易。 …
leetcode 121. Best Time to Buy and Sell Stock(最佳时间买卖)
假设您有一个数组,其中的ith元素是第i天给定股票的价格。 如果你只被允许完成至多一笔交易(即买一份,卖一份股…
leetcode 118. Pascal’s Triangle(帕斯卡三角形)
Given a non-negative integer numRows, generate the firs…
leetcode 112. Path Sum(路径求和)
给定一个二叉树和一个和,确定该树是否有一个根到叶的路径,以便将路径上的所有值相加等于给定的和。 注意:叶是没有…
leetcode 111. Minimum Depth of Binary Tree(二叉树最小深度)
Given a binary tree, find its minimum depth. The minimu…
leetcode 110. Balanced Binary Tree(平衡树判断)
Given a binary tree, determine if it is height-balanced…
Alg 浅谈机器学习共线性问题
这两天组里有同事在做特征分析这块的工作的时候其实会涉及到特征共线性问题,所以趁这个机会也去理解一下这个概念,说…
leetcode Convert Sorted Array to Binary Search Tree(有序列表转化为BST)
Given an array where elements are sorted in ascending o…
leetcode 107. Binary Tree Level Order Traversal II(二叉树分层排序)
Given a binary tree, return the bottom-up level order t…
leetcode 104. Maximum Depth of Binary Tree(二叉树深度-DFS方法)
Given a binary tree, find its maximum depth. The maximu…
leetcode 101. Symmetric Tree
Given a binary tree, check whether it is a mirror of it…
Alg rbm受限波兹曼算法理解
本文主要是参考了http://blog.echen.me/2011/07/18/introduction-to…