自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 数字序列中某一位的数字

""" 012345678910...序列中,第n位数"""def solution(n): if n < 0: return -1 if n < 10: return n i = 2 # 确定是第几位数 sums = 10 ret = 0 while True: # 一位...

2019-06-28 20:58:45 124

原创 1. ubuntu16.04 安装cudnn7.0+cuda9.0环境

1.  机器配置      机器是DELL precision 5820,显卡是GTX1080      (安装之前记得先进入bios 把boot secure disable掉 )      系统安装可以参考ubuntu 14 (16.04一样的)2、NVIDIA显卡安装     NVIDIA 根据显卡型号下载显卡驱动,记得不要下载最新的版本,下载390的任意一个小版本均可(...

2018-12-25 18:31:25 487

原创 leetCode之Longest Substring Without Repeating Characters实现

3 Longest Substring Without Repeating Characters要求: Given a string, find the length of the longest substring without repeating characters. Examples: Given “abcabcbb”, the answer is “abc”, which the

2017-11-15 22:43:44 176

原创 leetCode之Add Two Numbers python实现

2 Add Two Numbers要求: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the tw

2017-11-15 22:18:53 296

原创 leetCode之Two Sum python实现

1. Two Sum要求: Given an array of integers, return indices of the two numbers such that they add up to a specific target。 You may assume that each input would have exactly one solution, and you may no

2017-11-15 21:52:58 970

转载 RELU 激活函数及其他相关的函数

偶然看到一篇讲解激活函数的博客,讲的很详细,转载一下,方便自己以后学习。链接:http://blog.csdn.net/cyh_24/article/details/50593400日常 coding 中,我们会很自然的使用一些激活函数,比如:sigmoid、ReLU等等。不过好像忘了问自己一(n)件事:为什么需要激活函数?激活函数都有哪些?都长什么样?有哪些优缺点?怎么选用激

2017-10-27 09:35:27 776

原创 监督学习之线性回归

由于研究项目需要,这周开始学习机器学习有关的知识,接下来尽量坚持每周写一次博客,总结一下自己的学习内容,方便以后查阅。如果自己笔记中有错误的地方,还请大家能够帮忙纠正,共同进步!

2017-10-13 19:37:22 610

空空如也

空空如也

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

TA关注的人

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