自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (1)
  • 收藏
  • 关注

翻译 conda的简单使用

1、默认已经安装了Anaconda去官网下载即可,注意不要使用游览器自带的下载器下载,用迅雷或者其他的下载软件,不然下载速度很慢。2、启动conda在windows电脑上,搜索Anaconda Prompt,这是conda命令的终端。3、管理conda一、查看conda版本:二、更新conda:4、管理环境...

2018-06-27 11:23:05 252

原创 python装饰器log例子

from functools import reducedef log(f): def fn(x): print('call' + f.__name__+ '()...') return f(x) return fn@logdef factorial(n): return reduce(lambda x,y:x*y,range(1,...

2018-05-24 19:28:41 1175

转载 如何利用python中的filter()函数过滤1~100中平方根是整数的数,并将其输出

代码如下:import mathdef is_sqr(x): r = int(math.sqrt(x)) return r*r == xprint filter(is_sqr, range(1, 101))

2018-05-24 18:27:10 3097

支持向量机在文献分类中的应用

Given the common use of acronyms and initialisms in the health sciences, searchers may be entering these abbreviated terms rather than full phrases when searching online systems. The purpose of this study is to evaluate how various MEDLINE Medical Subject Headings (MeSH) interfaces map acronyms and initialisms to the MeSH vocabulary.

2018-03-15

空空如也

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

TA关注的人

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