09 2022 档案
摘要:注册表:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run 添加项目:字符串值,名字随便,内容是启动的程序路径。
阅读全文
摘要:[] [a]可能表示的是不超过a的整数组成的集合 https://math.stackexchange.com/a/4139609 论文《Patient Knowledge Distillation for BERT Model Compression》的第3.1章也提到了一下这种写法 圆圈加号 e
阅读全文
摘要:logging模块处理流程: 分为几个模块: logger: 最高层模块,用来输出log logger.level来筛选log logger.debug()/info()/warning()/error()等输出log handler: 经过logger过滤后log会分发给所有handler处理。每
阅读全文
摘要:1. argmin latex没有直接的argmin命令,定义一个: \DeclareMathOperator*{\argmax}{arg\,max} \DeclareMathOperator*{\argmin}{arg\,min} 代码: \DeclareMathOperator*{\argmax
阅读全文
摘要:安装并启用openssh https://docs.microsoft.com/zh-cn/windows-server/administration/openssh/openssh_overview Start-Service sshd Stop-Service sshd Restart-Serv
阅读全文
摘要:安装tensorflow需要有cuda和cudnn,cuda和cudnn有两种安装方法,一种是系统全局安装的,一种是在自己的conda环境里弄一份新的,这两个是可以共存的。 所以,先想好自己想用哪个cuda 方法一、使用系统全局的cuda和cudnn(一般是nvidia的驱动包带的) 注意tenso
阅读全文
摘要:阿里镜像站:https://developer.aliyun.com/mirror/ 清华镜像站:https://mirrors.tuna.tsinghua.edu.cn/ pip pip config set global.index-url https://mirrors.aliyun.com/
阅读全文
摘要:混淆矩阵 预测 Positive 预测 Negtive 真实 Positive TP FN 真实 Negtive FP TN precision、recall和f1 关于precision和recall的解
阅读全文