会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Gelthin
在机器学习的世界里上下求索
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
11
下一页
2020年11月30日
Logistic Regression 的推导以及与 logit loss 之间的关系
摘要: 最初是一个线性分类器 \(f(x) = w^Tx+b\), 设类别为 \(y\in\{+1, -1\}\) ,规定当 \(f(x)>0\) 预测为 \(y=+1\);当 \(f(x)<0\), 预测为 \(y=-1\)。 引入 sigmoid 函数 \(\sigma(z) = \frac{1}{1+
阅读全文
posted @ 2020-11-30 21:01 Gelthin
阅读(524)
评论(0)
推荐(0)
编辑
Gvim 的使用
摘要: Gvim的安装及配置
阅读全文
posted @ 2020-11-30 15:57 Gelthin
阅读(34)
评论(0)
推荐(0)
编辑
2020年11月28日
Latex 算法宏包-使用 While 循环
摘要: https://stackoverflow.com/questions/60463394/latex-algorithm-package \documentclass{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \use
阅读全文
posted @ 2020-11-28 10:57 Gelthin
阅读(6128)
评论(0)
推荐(0)
编辑
2020年11月27日
Git 学习记录
摘要: 为了更好的进行实验代码的版本控制,准备学习 Git 的一些使用知识。很早之前,大三的时候以及研一上学习过 github 和 git 的使用,但后面一直没有使用,又已经忘记了。 目前主要看: 菜鸟-Git 教程 自学Git,有哪些书籍或者好的学习资源 Pro Git 前三章 git clone 可以用
阅读全文
posted @ 2020-11-27 23:14 Gelthin
阅读(55)
评论(0)
推荐(0)
编辑
2020年11月26日
Huawei MateBook 14 2020 款安装 Pytorch 以及 组里服务器自己账号下安装 pytorch
摘要: Huawei MateBook 14 2020 款安装 Pytorch 发现似乎原本 cuda10.2 已经默认安装好,没有独立安装 cuda 安装包,不知道后面是否会出问题。 直接按照官网命令 conda install pytorch torchvision torchaudio cudatoo
阅读全文
posted @ 2020-11-26 14:22 Gelthin
阅读(896)
评论(0)
推荐(0)
编辑
2020年11月25日
Pytorch 随机数种子设置
摘要: 一般而言,可以按照如下方式固定随机数种子,以便复现实验: # 来自相关于 GCN 代码: 例如 grand.py 等的代码 parser.add_argument('--seed', type=int, default=42, help='Random seed.') np.random.seed(
阅读全文
posted @ 2020-11-25 11:03 Gelthin
阅读(992)
评论(0)
推荐(0)
编辑
2020年11月24日
python 利用 dictionary 的 .get() 操作,避免写 if-else
摘要: dict.get(key, default=None) 用法如下:https://www.runoob.com/python/att-dictionary-get.html key -- 字典中要查找的键。 default -- 如果指定键的值不存在时,返回该默认值。 如下代码相当于 C++ 的 s
阅读全文
posted @ 2020-11-24 11:30 Gelthin
阅读(299)
评论(0)
推荐(0)
编辑
2020年11月22日
PEP-8 or google 风格 python 代码风格和注释规范
摘要: PEP8 PEP8 编码规范中文版 PEP257 文档字符串的规范 【代码注释方案】 参照 https://github.com/DropEdge/DropEdge/blob/master/src/layers.py stub code (桩代码) https://www.zhihu.com/que
阅读全文
posted @ 2020-11-22 22:10 Gelthin
阅读(522)
评论(0)
推荐(0)
编辑
2020年11月18日
Vim 多文件切换使用
摘要: Vim/Gvim 有哪些实用技巧? 【Vim 编辑多个文件】(《Linux 命令行大全》) vim file1 file2 同时打开 file1, file2 : n or : N 表示文件的切换,切换前必须要保存文件的修改,如果要抛弃修改可以使用 "!" : buffers 显示正在处理的文件 :
阅读全文
posted @ 2020-11-18 20:10 Gelthin
阅读(913)
评论(0)
推荐(0)
编辑
2020年11月16日
Shell 变量及脚本使用
摘要: 使用 Shell 脚本来控制循环调节超参数 调节超参数 guixj_lam \(\in \{0.0, 0.1, 0.3, 0.5, 0.7, 1.0, 1.2, 1.4, 1.5, 1.7, 2.0, 3.0\}\) mkdir guixj_citeseer for lam in 0.0 0.1 0
阅读全文
posted @ 2020-11-16 22:38 Gelthin
阅读(194)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
···
11
下一页
公告