摘要: 特别说明: 0. Caffe 官网地址:http://caffe.berkeleyvision.org/ 1. 本文为作者亲自实验完成,但仅限用于学术交流使用,使用本指南造成的任何不良后果由使用者自行承担,与本文作者无关,谢谢!为保证及时更新,转载请标明出处,谢谢! 2. 本文旨在为新手提供一个参考 阅读全文
posted @ 2016-04-14 18:58 背锅侠 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: Introduction to debugging neural networks The following advice is targeted at beginners to neural networks, and is based on my experience giving advic 阅读全文
posted @ 2016-04-14 12:11 背锅侠 阅读(467) 评论(0) 推荐(0) 编辑
摘要: Faster R CNN教程 最后更新日期:2016年4月29日 本教程主要基于python版本的 "faster R CNN" ,因为python layer的使用,这个版本会比 "matlab" 的版本速度慢10%,但是准确率应该是差不多的。 目前已经实现的有两种方式: 1. Alternati 阅读全文
posted @ 2016-04-14 11:17 背锅侠 阅读(60826) 评论(17) 推荐(6) 编辑
摘要: 这是一道经典的动态规划题最长递增子序列问题:在一列数中寻找一些数,这些数满足:任意两个数a[i]和a[j],若i<j,必有a[i]<a[j],这样最长的子序列称为最长递增子序列。 设dp[i]表示以i为结尾的最长递增子序列的长度,则状态转移方程为:dp[i] = max{dp[j]+1}, 1<=j 阅读全文
posted @ 2016-04-13 21:44 背锅侠 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 321. Create Maximum Number 题目描述 Given two arrays of length and with digits representing two numbers. Create the maximum number of length `k maxArray(v 阅读全文
posted @ 2016-04-12 20:23 背锅侠 阅读(3216) 评论(1) 推荐(3) 编辑
摘要: Ubuntu安装opencv with cuda 为了运行dense flow真是折腾啊,下面网址是教程 http://blog.aicry.com/ubuntu 14 04 install opencv with cuda/ http://rolflussi.blogspot.com/2015/0 阅读全文
posted @ 2016-04-11 13:08 背锅侠 阅读(5448) 评论(1) 推荐(2) 编辑
摘要: 本文转自:http://www.cnblogs.com/TenosDoIt/p/3675788.html 题目链接 Given a string S, find the longest palindromic substring in S. You may assume that the maxim 阅读全文
posted @ 2016-04-03 20:49 背锅侠 阅读(314) 评论(0) 推荐(0) 编辑
摘要: Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. 阅读全文
posted @ 2016-03-30 14:08 背锅侠 阅读(204) 评论(0) 推荐(0) 编辑
摘要: You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins tha... 阅读全文
posted @ 2016-03-29 14:39 背锅侠 阅读(169) 评论(0) 推荐(0) 编辑
摘要: Sort a linked list in O(n log n) time using constant space complexity.排序一个链表可以类似于插入排序那样,这样需要每次都从头开始遍历找到插入位置,所以复杂度是O(n^2),所以这样是不行的,数组中的排序方法里快排... 阅读全文
posted @ 2016-03-23 22:35 背锅侠 阅读(242) 评论(0) 推荐(0) 编辑