自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(29)
  • 资源 (7)
  • 收藏
  • 关注

原创 阅读笔记:Image Style Transfer Using Convolutional Neural Networks

引用文献:Image Style Transfer Using Convolutional Neural Networks 注:本文所有内容均出自原文,仅处于学习研究目的,感谢原作者,侵删    这是关于深度学习进行图像渲染的读书报告的第一篇。既然是第一篇,那么当然要首先介绍一下使用卷积神经网络进行风格传递的鼻祖论文,也就是标题所述论文。论文的渲染流程图如图1所示,其可以用一句话进行概括:使用任一...

2018-04-20 00:12:06 2550 1

原创 ubuntu 16.04 -- dlib安装与简单使用:人脸特征点标定/图像语义分割

安装环境:-ubuntu 16.04-opencv 2.4.13.4(理论上说是2.4.13.x都可以才对)-cuda 8.0-与cuda版本对应的cudnn源码:https://github.com/davisking/dlib安装步骤:1.安装好所需的opencv, cuda, cudnn。安装过程详见百度。2.从源码地址下载源代码

2018-02-02 22:25:43 809

转载 关于Make File 看了这两篇博客就足够了!

1.make file各种知识简介:该篇文章为转载,是对原作者系列文章的总汇加上标注。支持原创,请移步陈浩大神博客:http://blog.csdn.net/haoel/article/details/28862.对于新手而言,make file 常常出现undefined refference error,并且mac 的make fil

2017-07-07 21:48:50 303

原创 算法第十九周--NP问题证明

问题描述:8.15.证明:show that the following problem is NP-Complete.MAXIMUM COMMON SUBGRAPHInput:two graph G1 = (V1, E1) and G2= (V2, E2)output:two set of nodes of G1 and G2, represented by G1' and

2017-07-04 19:29:36 1375

原创 leetcode 第十三周算法报告

Remove Duplicates from Sorted ArrayGiven a sorted array, remove the duplicates in place such that each element appear only once and return the new length.For example,Given input array nums

2017-06-29 00:56:22 173

原创 leetcode十二周解题报告

547. Friend CirclesThere are N students in a class. Some of them are friends, while some are not. Their friendship is transitive in nature. For example, if A is a direct friend of B, and B is a 

2017-06-27 22:55:37 204

原创 leetcode 十一周解题报告

75. Sort ColorsGiven 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 w

2017-06-27 22:52:07 170

原创 算法十七周解题报告

50. Pow(x, n)Implement pow(x, n)解题思路:用分治的方法,每个自问题是求pow(x, n / 2), 可以讲算法复杂度降至 Ologn不过题目非常狗血的考虑了负数边界这个问题,所以单独拿出来讨论即可。代码:class Solution {public: double getPow(double x, signed

2017-06-27 01:29:11 202

原创 leetcode十八周解题报告

43..Multiply StringsGiven two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2.Note:The length of both num1 and num2 is Both num1 and

2017-06-27 00:44:06 158

原创 算法第十四周解题报告

问题描述:Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) an

2017-06-14 19:45:49 207

原创 算法第十五周解题报告

问题描述:The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)解题思路:用状态机模拟放置字符串,最后

2017-06-12 10:33:46 217

原创 leetcode 第十六周解题报告

问题描述:Given an integer, write an algorithm to convert it to hexadecimal. For negative integer, two’s complement method is used.Note:All letters in hexadecimal (a-f) must be in lowercase

2017-06-11 23:42:48 182

原创 算法第十周解题

108. Convert Sorted Array to Binary Search TreeGiven an array where elements are sorted in ascending order, convert it to a height balanced BST.解题思路:  int mid = (begin + end) / 2;/**

2017-05-07 18:28:26 207

原创 算法第九周解题报告

Convert Sorted List to Binary Search Tree问题描述:Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.解题思路:先将链表复制到一个数组里,再对数组使用二分查找作为子

2017-04-23 20:28:07 288

原创 [TesserAct学习笔记1]TesserAct的安装、训练、使用

TesserAct安装:https://github.com/tesseract-ocr/tesseract/wiki用于编辑TesserAct训练数据的可视化工具 jtessboxEditor : https://sourceforge.net/projects/vietocr/files/jTessBoxEditor/1.TesserAct的简单使用如果不打算自己训练,想直

2017-04-18 11:35:01 1002

原创 算法第八周解题报告

98. Validate Binary Search TreeGiven a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtree of a node contains only nodes

2017-04-16 21:54:32 219

原创 caffe+ubantu16.04+opencv3+pycaffe配置指南

1.opencv3配置详见blog.csdn.net/PiaoLiangHXD/article/details/52693568?locationNum=22.caffe配置详见blog.csdn.net/u013915633/article/details/498679473.一些配置时会出现的问题:a.hdf5无法找到:blog.csdn.net/xue_wenyuan

2017-04-10 10:53:42 400

原创 leetcode第七周解题报告

137. Single Number II问题描述:Given an array of integers, every element appears three times except for one, which appears exactly once. Find that single one.解题思路:  int 数据共有32位,可以用32变量存储 这 N

2017-04-09 20:28:45 245

原创 leetcode第六周解题报告

136. Single Number题目描述:Given an array of integers, every element appears twice except for one. Find that single one.解题思路:按位异或运算代码如下:class Solution {public: int singleNumber(vector

2017-04-08 15:15:09 249

原创 ATLAS安装配置指南

#请注意,本ATLAS配置只配置了C接口而没有配置Fortran接口(疑似没有找到合适的Fortran编译器或者没有配置好config)一.首先需要关闭cpu throtting,不然将无法生成MAKE.INC导致安装失败1. Edit /etc/default/grub2. Find line with: GRUB_CMDLINE_LINUX_DEFAULT3. Appe

2017-04-07 14:34:11 986

原创 [tensorflow学习笔记]tensor.eval

1.tensor.eval()重点有三:    1.eval取得的是在tesnor.eval()之前对tensor所做的所有操作的最后结果。    2.eval()不会累加计算,{tensor.eval()} 与{tensor.eval();tensor.eval()}的返回的numpy 类型的ndarray是相同的    3.eval() 与 sess.run()的结果是完全一致

2017-04-06 15:47:28 1147

转载 [TensorFlow学习笔记3]构建简单的卷积神经网路&one-hot编码

# -*- coding: UTF-8 -*-#!/usr/bin/python#搭建一个简易的卷积神经网络,其结构为:# 输入->卷积->maxpooling->卷积->maxpooling->FCN->softMax#用Minist训练并预测#从网上download到mnist相关的数据以及处理函数import input_datamnist = input_data.rea

2017-04-06 15:25:37 966

原创 [TensorFlow学习笔记2]构建训练softmax分类器

# -*- coding: UTF-8 -*-#!/usr/bin/python#从网上download到minist相关的数据以及处理函数import input_datamnist = input_data.read_data_sets("/tmp/data/", one_hot=True)import tensorflow as tf#a classifier with

2017-04-01 14:44:14 2571 1

转载 [TensorFlow学习笔记1]TensorFLow的基本概念和基本使用

这里先给出参考链接:https://github.com/jikexueyuanwiki/tensorflow-zh/blob/master/SOURCE/get_started/basic_usage.mdblog.csdn.net/yhl_leo/article/details/50619029www.tuicool.com/articles/aqAZviu使用Tens

2017-04-01 11:12:56 318

原创 算法第五周解题报告

21. Merge Two Sorted Lists问题描述:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.解题思路:简单题,设置两个指针再链表上移

2017-03-26 16:56:07 233

原创 leetcode第四周解题报告

7. Reverse Integer题目描述:Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.Note:The input is assumed to be a 32-bit

2017-03-22 11:58:06 210

原创 算法第三周解题报告

题目名称:Valid Number题目描述:Validate if a given string is numeric.Some examples:"0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => trueNote: It is intended for the p

2017-03-13 22:07:06 216

原创 算法第二周解题报告

8. String to Integer (atoi)问题描述:Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yoursel

2017-03-05 17:46:21 181

原创 算法第一周LeetCode解题报告

第一周算法报告

2017-02-26 15:21:44 241

头发检测C++实现

C++ opencv实现的头发代码检测,证件照有极高准确率,在高噪声环境下也有一定准确度

2016-10-30

头发检测C++代码

头发检测C++代码,在简单背景及证件照下具有很高准确率,在复杂背景下仍存在一定准确度,可以适用于头发提取

2016-10-30

python爬虫

python 3.x版本的爬虫, 可以从百度图片根据关键词爬取图片

2016-10-05

卷积神经网络C++实现

卷积神经网络的C++实现,附实现用的文档资源链接。 架构好,有注释,minitest手写数据集上的识别率0.98 可供参考

2015-08-07

随机森林C++实现

随机森林的C++实现,附实现PPT和实验报告声明

2015-07-03

DecistionTree and randomforest

决策树C++实现 ,内附GBDT ADABOOST 随机森林的实现方法(其实这三个方法只是在决策树外部加几层循环即可实现,代码不超过30行)

2015-06-25

BP神经网络matlab实现

这是一个由matlab实现的BP神经网络,经过了简单的测试,zip包里附上了简单的实现教程,希望能够对大家有用!

2015-06-11

空空如也

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

TA关注的人

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