科学网

 找回密码
  注册
Atom如何使用go to definition
高琳琳 2019-5-16 12:23
安装三个包:symbol-gen, symbols-view与goto-definition 重启atom https://blog.csdn.net/wowotuo/article/details/78447704
个人分类: DeepLearning|2677 次阅读|没有评论
[转载]__getitem__ in python
高琳琳 2019-5-15 19:06
1. 首先说一下私有变量 (private variable) a name prefixed with an underscore (e.g. _spam ) should be treated as a non-public part of the API (whether it is a function, a method or a data member). __getitem__ is used to impleme ...
个人分类: Python|1415 次阅读|没有评论
DICOM & its operation with python
高琳琳 2019-5-7 13:20
we define the standard DICOM patient-based coordinate system: x, y and z axes. If Anatomical Orientation Type is absent, the x-axis is increasing to the left hand side of the patient. The y-axis is increasing to the posterior side of the patient. The z-axis is increasing toward the head of the p ...
个人分类: Python|1753 次阅读|没有评论
[转载][Python] 异常try-except-else,try-finally,raise
高琳琳 2019-5-6 19:43
一、try-except-else 使用except而不带任何异常类型 你可以不带任何异常类型使用except,如下实例: try: 正常的操作 ...................... except: 发生异常,执行这块代码 ...................... else: ...
个人分类: Python|2068 次阅读|没有评论
[转载]Anaconda installation and path configuration on windows
高琳琳 2019-4-29 21:41
Download Anaconda from the official website Select the default options Check whether Jupyter can be run successfully by entering jupyter notebook 4. If you didn’t check the add Anaconda to path argument during the installation process, you will have to add python and conda t ...
个人分类: DeepLearning|1802 次阅读|没有评论
[转载]Residual blocks--Building blocks of ResNet
高琳琳 2019-4-28 21:15
Understanding a residual block is quite easy. In traditional neural networks, each layer feeds into the next layer. In a network with residual blocks, each layer feeds into the next layer and directly into the layers about 2–3 hops away. That’s it. But understanding the intuition behind why it w ...
个人分类: DeepLearning|2376 次阅读|没有评论
common usage of Pandas
高琳琳 2019-4-5 16:05
read_csv(filepath, usecols) e.g., subnames_no_MPR = pd.read_csv(filepath, delimiter=',', usecols = ); usecols: Return a subset of the columns. If list-like, all elements must either be positional (i.e. integer indices into the document columns) or strings that correspond to col ...
个人分类: Python|1438 次阅读|没有评论
Keyboard shortcuts for the Jupyter Notebook
高琳琳 2019-4-3 17:38
Ctrl+Enter: run the script Alt+Enter: run yourcell block and add a new cell below Scroll up and down your cells with your Up and Down keys
个人分类: Python|1547 次阅读|没有评论

本页有 2 篇博文因作者的隐私设置或未通过审核而隐藏

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-26 21:07

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部