07 2020 档案

摘要:文章目录 Size s=size(A) [r,c]=size(A) [r,c,m]=size(A) size(A,n) 二进制和十进制转换 dec2bin mean 均值 mean(a,1) mean(a,2) max(min) 最大(小)值 C = max(A) C = max(A,B) C = 阅读全文
posted @ 2020-07-28 17:46 Dawn嗯 阅读(1189) 评论(0) 推荐(0)
摘要:VS Code的相关配置 VS Code的插件安装位置改变 可以通过创建连接,将默认的extensions位置,改变到D盘 Windows 链接彻底解决 vscode插件安装位置问题 mklink /D "C:\Users\{username}\.vscode-insiders\extensions 阅读全文
posted @ 2020-07-21 16:24 Dawn嗯 阅读(859) 评论(0) 推荐(0)
摘要:Pytorch指定GPU的方法 改变系统变量 改变系统环境变量仅使目标显卡,编辑 .bashrc文件,添加系统变量 export CUDA_VISIBLE_DEVICES=0 #这里是要使用的GPU编号 在程序开头设置 os.environ["CUDA_VISIBLE_DEVICES"] = '0, 阅读全文
posted @ 2020-07-21 15:29 Dawn嗯 阅读(1843) 评论(0) 推荐(0)
摘要:常用的连接 Git命令 廖雪峰的Git教程 Git常用命令 ubuntu16.04之GitHub入门教程 Linux相关 tmux命令 Ubuntu常用命令速查手册 Linux 命令大全 其它工具 Markdown语法大全 阅读全文
posted @ 2020-07-21 15:24 Dawn嗯 阅读(170) 评论(0) 推荐(0)
摘要:Git 参考:廖雪峰的Git教程 Git 常用命令 git config --global user.name "name" #配置git使用用户 git config --global user.email "mail" #配置git使用邮箱 git config --global color.u 阅读全文
posted @ 2020-07-16 23:36 Dawn嗯 阅读(83) 评论(0) 推荐(0)