- 博客(13)
- 收藏
- 关注
原创 逻辑回归LR推导(sigmoid,损失函数,梯度,参数更新公式)
主要参考文献:The equivalence of logistic regression and maximum entropy models,John Mount 一、声明x(1),x(2),...,x(m) x(1),x(2),...,x(m) 表示 n 维空间的一个样本,x(i)x(i) 表示第i个样本,x(i)jx(i)_j 表示第i个样本的第j维的数据(因为xx是一个n维向量)。
2017-06-13 17:16:31 16554
原创 用SSD训练自己的数据集(VOC2007格式)
用SSD训练自己的数据集(VOC2007格式)一. 配置caffe环境ubunt16.04下caffe环境安装二. 下载,编译及测试ssd源码(一)下载源码github链接或者执行 git clone https://github.com/weiliu89/caffe.git(二)编译源码编译过程中可能会出现缺失一些python模块,按提示安装(1)修改Markfile配置参考ubunt16.04下
2017-06-13 17:11:21 11598 2
原创 用faster-rcnn训练自己的数据集(VOC2007格式,python版)
用faster-rcnn训练自己的数据集(VOC2007格式,python版)一. 配置caffe环境ubunt16.04下caffe环境安装二. 下载,编译及测试py-faster-rcnn源码(一)下载源码github链接或者执行 git clone –recursive https://github.com/rbgirshick/py-faster-rcnn.git注意加上–recursive
2017-06-13 17:10:37 8307 14
原创 制作自己的图片数据集(VOC2007格式)
制作自己的图片数据集(VOC2007格式),用于训练需要的模型,用于faster-rcnn,YOLO等一. 获取数据(自行拍照或爬虫下载,不详述)Get data(telephone or spam,No more details)二. 标注图片数据(Label Image Data)rename_images.py create_trainval.py delete_file_firstRow.p
2017-06-13 17:08:56 5747
原创 用YOLOv2训练自己的数据集
一. 系统初始环境系统:Ubuntu16.04: ubuntu-16.04-desktop-amd64.isocuda安装文件: cuda-repo-ubuntu1604-8-0-local_8.0.44-1_amd64.deb.44-1_amd64-deb,下载链接点击, linux-x86架构-ubuntu-16.04-deb(local) cudnn安装文件: cudnn-8.0-lin
2017-06-13 17:08:01 5155
原创 ubunt16.04下caffe环境安装
一. 系统初始环境系统:Ubuntu16.04: ubuntu-16.04-desktop-amd64.isocuda安装文件: cuda-repo-ubuntu1604-8-0-local_8.0.44-1_amd64.deb.44-1_amd64-deb,下载链接点击, linux-x86架构-ubuntu-16.04-deb(local) cudnn安装文件: cudnn-8.0-linu
2017-06-13 17:04:02 1460
原创 算法练习7. Reverse Integer 把整数反向输出
7. Reverse Integerhttps://leetcode.com/problems/reverse-integer/Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321把整数反向输出:class Solution
2016-05-09 22:45:08 554
原创 算法练习6. ZigZag Conversion 把一串字符反N方向n行排列
6. ZigZag Conversion 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 legibi
2016-05-09 22:22:03 308
原创 算法练习5. Longest Palindromic Substring 最长回文子字符串(Manacher算法)
5. Longest Palindromic Substringhttps://leetcode.com/problems/longest-palindromic-substring/Given a string S, find the longest palindromic substring in S. You may assume that the maximum len
2016-05-09 22:18:13 520
原创 算法练习4.Median of Two Sorted Arrays两个有序数组的中位数(递归、分治)
4. Median of Two Sorted Arrayshttps://leetcode.com/problems/median-of-two-sorted-arrays/There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the t
2016-05-09 22:12:17 290
原创 算法练习3.Longest Substring Without Repeating Characters 最长不重复子字符串(map)
3. Longest Substring Without Repeating Charactershttps://leetcode.com/problems/longest-substring-without-repeating-characters/ Examples:Given "abcabcbb", the answer is "abc",whic
2016-04-30 09:30:34 351
原创 算法练习2.Add Two Numbers 反向小数链表表示相加
2. Add Two Numbershttps://leetcode.com/problems/add-two-numbers/You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their
2016-04-30 09:23:45 445
原创 算法练习1.Two Sum 数组两个和为目标值的下标(map)
Two Sum给定一个目标整数target,找出数组中和为target的两个数的下标C++:class Solution {public: vector twoSum(vector& nums, int target) { vector solve; for(int i = 0 ; i { for(i
2016-04-30 09:18:35 619
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人