摘要:
双系统卸载Ubuntu 首先给win建立mbr驱动,然后格式化ubuntu盘 阅读全文
摘要:
vmware使用教程 下载 Vmware http://www.epinv.com/post/10434.html 利用 VMware 创建一台虚拟机 选择默认一路next,注意把内存设置为4G,系统默认给的是1G 打开VMware软件,然后点击主菜单栏的 文件→新建虚拟机,弹出如下的窗口,选择典型 阅读全文
摘要:
制作windows系统盘,进入win的系统命令行,输入 bcdboot C:\Windows /l zh-cn 恢复MBR引导,进入系统之后,恢复uefi引导 在cmd中输入下面文字后,enter diskpart 这时窗口中应该会出现 DISKPART> 然后输入 sel disk 0 enter 阅读全文
摘要:
Python running 使用参数 Use command line to transfer args into code i. sys.argv import sys gpus = sys.argv[1] batch_size = sys.argv[2] print gpus print ba 阅读全文
摘要:
dict.fromkeys(seq[, value]) seq = ('Google', 'Runoob', 'Taobao') dict = dict.fromkeys(seq) print "新字典为 : %s" % str(dict) dict = dict.fromkeys(seq, 10) 阅读全文
摘要:
Excel Excel date read f = xlwt.Workbook() date_format = xlwt.XFStyle() date_format.num_format_str = 'yyyy-mm-dd hh:mm:ss' sheet1 = f.add_sheet('Lyon_p 阅读全文
摘要:
PyTorch 包 torch.optim https://ptorch.com/docs/1/optim torch.nn https://pytorch-cn.readthedocs.io/zh/latest/package_references/torch-nn/ pytorch torchv 阅读全文
摘要:
学习率调整 Use different learning rate in different layers optimizer=t.optim.Adam([{'params':model.model.features.parameters()},{'params':model.model.class 阅读全文
摘要:
PyTorch基础解惑 为什么是output = net(input)而不是output=net.forward(input) https://zhuanlan.zhihu.com/p/35978792 https://blog.csdn.net/Yaokai_AssultMaster/articl 阅读全文
摘要:
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模块中 阅读全文
摘要:
pillow图像处理库 from PIL import Image 打开图像: im = Image.open(sourceFile) 保存图片: im.save(file_path_name) 保存成jpg文件,压缩率比urlretrieval的压缩率更高 图片信息: im.info 图片尺寸: 阅读全文