摘要:
PCA The PCA package from sklearn can be used. Create the pca package and save it. from sklearn.decomposition import PCA from sklearn.externals import 阅读全文
摘要:
Torch skills create patches and transform patches back to the original one x = torch.rand(1,1,1000,480,480) c = x.unfold(0,1,1).unfold(1,1,1).unfold(2 阅读全文
摘要:
cls 阅读全文
摘要:
linux下查看和添加PATH环境变量 $PATH:决定了shell将到哪些目录中寻找命令或程序,PATH的值是一系列目录,当您运行一个程序时,Linux在这些目录下进行搜寻编译链接。 可用 export 命令查看PATH值 export 单独查看PATH环境变量,可用: echo $PATH 添加 阅读全文
摘要:
Python模块之 __future__ 按照官方的解释,至少确保在2.1之前版本的Python可以正常运行一些新的语言特性,需要使用语句 'from future import *'。 from __future__ import print_function print('# of entrie 阅读全文
摘要:
单引号,双引号,3个单引号及3个双引号的区别 单引号和双引号的作用相同,但是如果字符串里面有单引号存在,外面使用双引号可以避免转义字符的出现,同理,字符串里面有双引号存在,外面使用单引号可以避免转义字符的出现。 阅读全文
摘要:
Python 文件夹及文件操作 复制、移动文件夹/文件 shutil.copyfile("old","new") # 复制文件,都只能是文件 shutil.copytree("old","new")# 复制文件夹,都只能是目录,且new必须不存在 shutil.copy("old","new") # 阅读全文
摘要:
在实际应用中,我们经常需要使用定时器去触发一些事件。Python中通过线程实现定时器timer,其使用非常简单。看示例: import threading def fun_timer(): print('Hello Timer!') timer = threading.Timer(1, fun_ti 阅读全文
摘要:
定义递增数组 import numpy as np np.arange(12) array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]) np.zeros(8) array([0., 0., 0., 0., 0., 0., 0., 0.]) [-2] 倒数第二个元 阅读全文
摘要:
math库 开n次方 pow(a,b) 开a的r次方则pow(a, 1.0/r) Python数字sqrt()函数返回x的平方根(x > 0) 求余 % /是精确除法,//是向下取整除法,%是求模 /在python 2 中是向下取整运算 四舍五入取整函数round 向零取整函数int math模块中 阅读全文