自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (9)
  • 收藏
  • 关注

原创 【机器学习】xgboost以及lightgbm资料汇总

GBM原文:Complete Guide to Parameter Tuning in Gradient Boosting (GBM) in Python GBM翻译:机器学习系列(11)_Python中Gradient Boosting Machine(GBM)调参方法详解 xgboost原文:Complete Guide to Parameter Tuning in XGBoost (w...

2018-03-28 15:38:16 856

原创 【Keras】使用数据生成器(data generators)解决训练数据内存问题

原文地址: A detailed example of how to use data generators with Keras引言在使用kears训练model的时候,一般会将所有的训练数据加载到内存中,然后喂给网络,但当内存有限,且数据量过大时,此方法则不再可用。此博客,将介绍如何在多核(多线程)上实时的生成数据,并立即的送入到模型当中训练。 工具为keras。Tu...

2018-03-27 18:16:46 46383 4

原创 【数据结构笔记】归并排序(merge_sort)+ 堆排序 -- python2.7

此处只有代码:def merge(li,left,mid,right): temp = [] i = left;j=mid+1 while i <= mid and j <= right: if li[i] < li[j]: temp.append(li[i]) i=i+1 ...

2018-03-27 11:21:21 188

原创 【数据结构笔记】快速排序(quickSort)和快速选择(findKthLargest)--Python3

要理解快排,可参考https://www.cnblogs.com/MOBIN/p/4681369.html,此处只有代码。快速排序复杂度分析:https://www.cnblogs.com/MOBIN/p/4681369.html 算法分析: 1.当分区选取的基准元素为待排序元素中的最大或最小值时,为最坏的情况,时间复杂度和直接插入排序的一样,移动次数达到最大值 ...

2018-03-26 20:09:33 1274

转载 【转】如何防止softmax函数上溢出(overflow)和下溢出(underflow)

转载出处 :https://www.codelast.com/《Deep Learning》(Ian Goodfellow & Yoshua Bengio & Aaron Courville)第四章「数值计算」中,谈到了上溢出(overflow)和下溢出(underflow)对数值计算的影响,并以softmax函数和log softmax函数为例进行了讲解。这里我再详细...

2018-03-25 15:07:02 8485

itksnap-3.8.0-20190612-MacOS-x86_64.dmg

itksnap-3.8.0-20190612-MacOS-x86_64.dmg mac端的标注工具,针对 nifty 和dicom

2019-12-04

MRIcroGL_windows.zip

MRIcroGL_macOS_dcm2niix , 支持 dcm 转 nifty , windows客户端,最新版本 https://github.com/rordenlab/dcm2niix;https://www.nitrc.org/plugins/mwiki/index.php/dcm2nii:MainPage

2019-12-03

MRIcroGL_macOS.dmg

MRIcroGL_macOS_dcm2niix , 支持 dcm 转 nifty ,mac客户端,最新版本 https://github.com/rordenlab/dcm2niix;https://www.nitrc.org/plugins/mwiki/index.php/dcm2nii:MainPage

2019-12-03

libcudnn7_7.6.2.24-1+cuda10.0_amd64.deb

Download cuDNN v7.6.2 (July 22, 2019), for CUDA 10.0 cuDNN Runtime Library for Ubuntu16.04 (Deb)

2019-10-10

MITK-2018.4.0-mac64.dmg

MITK-2018.4.0-mac64.dmg,,,,,,直接双击安装即可!

2019-03-04

The Intrinsic Dimensionality of Attractiveness: A Study in Face Profiles

The Intrinsic Dimensionality of Attractiveness: A Study in Face Profiles

2018-10-31

Computer analysis of face beauty: A survey.

Computer analysis of face beauty: A survey

2018-10-31

win10 64位 xgboost

win10 xgboost 64位系统,解压安进行安装。。。。。。。。。。。

2018-04-10

nvidia-diag-driver-local-repo-ubuntu1404-384.81_1.0-1_amd64.deb

文件为txt文件,中为百度云链接地址,打开地址即可下载,关于安装教程颗参考http://blog.csdn.net/u014595019/article/details/53732015

2017-12-10

空空如也

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

TA关注的人

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