会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
王冰冰
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
17
下一页
2022年9月22日
机器学习论文不常见符号总结
摘要: [] [a]可能表示的是不超过a的整数组成的集合 https://math.stackexchange.com/a/4139609 论文《Patient Knowledge Distillation for BERT Model Compression》的第3.1章也提到了一下这种写法 圆圈加号 e
阅读全文
posted @ 2022-09-22 10:51 王冰冰
阅读(217)
评论(0)
推荐(0)
2022年9月18日
python logging模块
摘要: logging模块处理流程: 分为几个模块: logger: 最高层模块,用来输出log logger.level来筛选log logger.debug()/info()/warning()/error()等输出log handler: 经过logger过滤后log会分发给所有handler处理。每
阅读全文
posted @ 2022-09-18 22:48 王冰冰
阅读(109)
评论(0)
推荐(0)
2022年9月16日
latex公式总结(含typora适配)
摘要: 1. argmin latex没有直接的argmin命令,定义一个: \DeclareMathOperator*{\argmax}{arg\,max} \DeclareMathOperator*{\argmin}{arg\,min} 代码: \DeclareMathOperator*{\argmax
阅读全文
posted @ 2022-09-16 11:54 王冰冰
阅读(354)
评论(0)
推荐(0)
2022年9月12日
windows使用sshd
摘要: 安装并启用openssh https://docs.microsoft.com/zh-cn/windows-server/administration/openssh/openssh_overview Start-Service sshd Stop-Service sshd Restart-Serv
阅读全文
posted @ 2022-09-12 12:48 王冰冰
阅读(1016)
评论(0)
推荐(0)
2022年9月11日
tensorflow安装
摘要: 安装tensorflow需要有cuda和cudnn,cuda和cudnn有两种安装方法,一种是系统全局安装的,一种是在自己的conda环境里弄一份新的,这两个是可以共存的。 所以,先想好自己想用哪个cuda 方法一、使用系统全局的cuda和cudnn(一般是nvidia的驱动包带的) 注意tenso
阅读全文
posted @ 2022-09-11 16:11 王冰冰
阅读(475)
评论(0)
推荐(0)
各种镜像换源
摘要: 阿里镜像站:https://developer.aliyun.com/mirror/ 清华镜像站:https://mirrors.tuna.tsinghua.edu.cn/ pip pip config set global.index-url https://mirrors.aliyun.com/
阅读全文
posted @ 2022-09-11 11:28 王冰冰
阅读(44)
评论(0)
推荐(0)
2022年9月3日
混淆矩阵
摘要: 混淆矩阵 预测 Positive 预测 Negtive 真实 Positive TP FN 真实 Negtive FP TN precision、recall和f1 \(precision=TP/(TP+FP)\) \(recall=TP/(TP+FN)\) 关于precision和recall的解
阅读全文
posted @ 2022-09-03 21:13 王冰冰
阅读(130)
评论(0)
推荐(0)
2022年8月17日
curl上传文件
摘要: 用hfs开服务器,设置所有人都能上传 curl -F 'file=@img-cls.tar.gz' http://127.0.0.1/hfs-upload/ 设置用户权限后 需要同时有access和upload权限 curl -u user:password -F file=@info.csv ht
阅读全文
posted @ 2022-08-17 21:38 王冰冰
阅读(301)
评论(0)
推荐(0)
2022年8月3日
机器学习随笔 - 李沐&&邱
摘要: 训练集、验证集、测试集 训练集:用来训练模型的参数,对应的评价是“训练误差” 验证集:用来测试不同超参数下模型效果,选择超参数 测试集:用来测试模型,对应的评价是“泛化误差” 注意,训练集和验证集不能有交叉,测试集在整个模型训练中只能用一次。也就是先选定超参数用训练集训练模型,然后用验证集评估,再改
阅读全文
posted @ 2022-08-03 18:13 王冰冰
阅读(77)
评论(0)
推荐(0)
2022年7月31日
softmax - numpy实现
摘要: def softmax(x): x -= np.max(x, axis= 1, keepdims=True) f_x = np.exp(x) / np.sum(np.exp(x), axis=1, keepdims=True) return f_x 第一步:减去最大值。 因为在求exp时,可能因为指
阅读全文
posted @ 2022-07-31 18:51 王冰冰
阅读(1789)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
17
下一页
公告