- 博客(7)
- 资源 (1)
- 收藏
- 关注
原创 pytorch学习记录
pytorch 官方文档: https://pytorch.org/docs/master/torch.html pytorch 中文文档: https://pytorch-cn.readthedocs.io/zh/latest/
2019-03-07 21:51:39
123
转载 ROI Pooling 和 ROI Align
参考:https://www.cnblogs.com/wangyong/p/8523814.html
2019-03-05 16:53:46
171
转载 为什么Batch Normalization那么有用?
参考:https://mp.weixin.qq.com/s/laj9ZFq29db3iykU9Y56Tg
2019-03-04 21:54:36
326
原创 563. 二叉树的坡度
一、 class Solution: def findTilt(self, root): """ :type root: TreeNode :rtype: int """ self.ans = 0 def subTreeSum(root
2019-03-04 21:47:11
146
原创 二叉树前序、中序和后序遍历
Binary Tree Inorder Traversal 二叉树的中序遍历 解法一:递归 // Recursion class Solution { public: vector inorderTraversal(TreeNode *root) { vector res; inorder(root, res); return res; } void inorder(TreeNode *root...
2019-03-03 10:19:41
132
原创 tensorflow学习笔记
1、训练 loss = tf.nn.softmax_cross_entropy_with_logits(y, labels=labels) cost = tf.reduce_sum(loss) # global_steps = tf.Variable(0) # learning_rate = tf.train.exponential_decay(learning_rate_orig, global...
2018-10-22 19:27:43
183
原创 LeetCode206 反转一个单链表
LeetCode206 反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL 算法: 遍历链表,更改当前Node->next为前一个Node的地址(更改前进行保存)。 /** * Definition for singly-linked list. * stru...
2018-09-22 20:33:50
310
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人