摘要:
`sudo du -h --max-depth=1 folder_name` mac系统: `du -sh /directory/path` 参考: [1] https://blog.51cto.com/u_14691718/3432088 [2] https://osxdaily.com/2017 阅读全文
摘要:
双系统卸载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 阅读全文