上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: `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 阅读全文
posted @ 2022-09-05 15:40 xiaoxuxli 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 双系统卸载Ubuntu 首先给win建立mbr驱动,然后格式化ubuntu盘 阅读全文
posted @ 2022-06-27 20:15 xiaoxuxli 阅读(95) 评论(0) 推荐(0) 编辑
摘要: vmware使用教程 下载 Vmware http://www.epinv.com/post/10434.html 利用 VMware 创建一台虚拟机 选择默认一路next,注意把内存设置为4G,系统默认给的是1G 打开VMware软件,然后点击主菜单栏的 文件→新建虚拟机,弹出如下的窗口,选择典型 阅读全文
posted @ 2022-06-27 20:12 xiaoxuxli 阅读(2042) 评论(0) 推荐(0) 编辑
摘要: 制作windows系统盘,进入win的系统命令行,输入 bcdboot C:\Windows /l zh-cn 恢复MBR引导,进入系统之后,恢复uefi引导 在cmd中输入下面文字后,enter diskpart 这时窗口中应该会出现 DISKPART> 然后输入 sel disk 0 enter 阅读全文
posted @ 2022-06-27 20:11 xiaoxuxli 阅读(1303) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-06-27 20:05 xiaoxuxli 阅读(103) 评论(0) 推荐(0) 编辑
摘要: dict.fromkeys(seq[, value]) seq = ('Google', 'Runoob', 'Taobao') dict = dict.fromkeys(seq) print "新字典为 : %s" % str(dict) dict = dict.fromkeys(seq, 10) 阅读全文
posted @ 2022-06-27 20:04 xiaoxuxli 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-06-27 20:04 xiaoxuxli 阅读(120) 评论(0) 推荐(0) 编辑
摘要: PyTorch 包 torch.optim https://ptorch.com/docs/1/optim torch.nn https://pytorch-cn.readthedocs.io/zh/latest/package_references/torch-nn/ pytorch torchv 阅读全文
posted @ 2022-06-27 20:03 xiaoxuxli 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 学习率调整 Use different learning rate in different layers optimizer=t.optim.Adam([{'params':model.model.features.parameters()},{'params':model.model.class 阅读全文
posted @ 2022-06-27 20:02 xiaoxuxli 阅读(6) 评论(0) 推荐(0) 编辑
摘要: PyTorch基础解惑 为什么是output = net(input)而不是output=net.forward(input) https://zhuanlan.zhihu.com/p/35978792 https://blog.csdn.net/Yaokai_AssultMaster/articl 阅读全文
posted @ 2022-06-27 20:02 xiaoxuxli 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页