- 博客(30)
- 收藏
- 关注
原创 资料
http://www.52caml.com/head_first_ml/ml-chapter9-factorization-family/ https://yxzf.github.io/2017/03/dnn-for-ctr/ http://www.52cs.org/?p=1046 https://tech.meituan.com/deep-understanding-of-ffm-princ
2017-07-14 17:36:25
449
原创 torch学习资料汇总(不断更新)
1利用torch搭建CNN和softmax完成图像分类,在CIFAR-10的分类例子和代码。 https://github.com/soumith/cvpr2015/blob/master/Deep%20Learning%20with%20Torch.ipynb http://blog.youkuaiyun.com/zackzhaoyang/article/details/51417705 深度学习
2016-09-27 15:36:45
695
原创 torch学习笔记一(基本语法)
一 Lua基本语法:1 变量: 1. 变量默认都是全局变量(一个文件中的变量所有的文件都可以访问),加上local变为局部变量,仅仅该文件可访问。 2. 变量类型:nil、Boolean、string、Number和table 。 在Lua中使用变量不需要提前声明,变量的类型决定于用户赋值的类型 。 可以使用 type()函数判断变量的类型。 3. 给一个变量赋值为nil,表示释放该变量。Boo
2016-09-27 15:31:31
4582
原创 torch学习笔记<一>
1 利用torch搭建CNN神经网络和softmax完成图像分类,在CIFAR-10的分类例子和代码。 参考:https://github.com/soumith/cvpr2015/blob/master/Deep%20Learning%20with%20Torch.ipynb http://blog.youkuaiyun.com/zackzhaoyang/article/detail
2016-06-24 11:20:41
670
原创 leetcode [python] 【144】 Binary Tree Preorder Traversal
思路一:递归方法# Definition for a binary tree node.# class TreeNode(object):# def __init__(self, x):# self.val = x# self.left = None# self.right = Noneclass Solution(obje
2016-04-07 16:58:09
477
原创 leetcode [python] 【206】Reverse Linked List
1 设置两个指针,记录当前结点和上一结点:# Definition for singly-linked list.# class ListNode(object):# def __init__(self, x):# self.val = x# self.next = Noneclass Solution(object): def reve
2016-03-30 16:22:06
359
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人