自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 使用自己的数据训练Faster-RCNN

1. 制作自己的数据1.1 文件夹格式保留py-faster-rcnn/data/VOCdevkit2007/VOC2007/下的Annotations,ImageSets和JPEGImages文件夹,但是需要删除其中的内容,并删除SegmenttationClass和SegmentationObject文件夹,其中Annotations保存标签txt转换的xml文件,ImageSet

2017-07-31 16:32:46 837 2

原创 Ubuntu14.04下配置Caffe+OpenCV2.4.10+CUDA7.5+cuDNN5.1.10

1. CUDA配置与Tensorflow,Keras等深度学习框架一样的配置方法,一次配置可以重用,其他基础软件和依赖项亦可参考:Caffe学习笔记2--Ubuntu 14.04 64bit 安装Caffe(GPU版本)Ubuntu 14.04 + Caffe + Cuda 7.5 + Opencv 3.0安装教程   Caffe + Ubuntu 14.04 64bit + CU

2017-07-29 09:52:56 389

原创 289. Game of Life

题目According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970."Given a board

2017-07-24 15:41:09 146

原创 647. Palindromic Substrings

题目Given a string, your task is to count how many palindromic substrings in this string.The substrings with different start indexes or end indexes are counted as different substrings even the

2017-07-23 16:24:56 157

原创 646. Maximum Length of Pair Chain

题目You are given n pairs of numbers. In every pair, the first number is always smaller than the second number.Now, we define a pair (c, d) can follow another pair (a, b) if and only if b

2017-07-23 15:51:46 202

原创 lung-segmentation-2d所需依赖项

1. scikit-imagesudo pip install scikit-image如果pip速度过慢,可更改为国内镜像源,参考:更改pip源至国内镜像,显著提升下载速度 其中可能在安装PyWavelets时出错,所以可以手动用pip安装一遍2. 缺少pydot和graphviz参考:keras可视化pydot graphviz问题 一定要注意安装顺序:graphviz

2017-07-22 21:15:40 461

原创 Ubuntu14.04下配置Keras2.0.4+Tensorflow1.1.0+CUDA7.5+cuDNN5.1.10

Tensorflow1.0以后的版本对于CUDA的默认要求是8.0,所以如果打算直接使用pip命令安装Tensorflow,需要检查CUDA是否匹配,如果匹配,可以使用命令进行安装:CPU版本:sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.1.0-cp27-

2017-07-22 17:14:28 2699

原创 116. Populating Next Right Pointers in Each Node

题目Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next pointer to point to its next righ

2017-07-10 20:24:39 173

原创 162. Find Peak Element

题目A peak element is an element that is greater than its neighbors.Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.The array may contain multiple pe

2017-07-10 10:21:40 177

原创 313. Super Ugly Number

题目Write a program to find the nth super ugly number.Super ugly numbers are positive numbers whose all prime factors are in the given prime list primes of size k. For example, [1, 2, 4, 7

2017-07-08 17:36:46 174

原创 121. Best Time to Buy and Sell Stock

题目Say you have an array for which the ith element is the price of a given stock on day i.If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the

2017-07-07 13:06:42 224

原创 75. Sort Colors

题目Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.Here, we will use the i

2017-07-07 11:00:08 160

原创 525. Contiguous Array

题目Given a binary array, find the maximum length of a contiguous subarray with equal number of 0 and 1.Example 1:Input: [0,1]Output: 2Explanation: [0, 1] is the longest contiguous subar

2017-07-04 16:30:40 302

原创 635. Design Log Storage System

题目You are given several logs that each log contains a unique id and timestamp. Timestamp is a string that has the following format: Year:Month:Day:Hour:Minute:Second, for example, 2017:01:01:2

2017-07-02 17:47:41 712

原创 633. Sum of Square Numbers

题目Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c.Example 1:Input: 5Output: TrueExplanation: 1 * 1 + 2 * 2 = 5

2017-07-02 17:28:44 1174

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除