摘要: 1. 问题: 最近写 LaTex 文档的附录,需要 Appendix 的每一节标题改为 "Appendix A xxx", "Appendix B xxx" 式样 但使用如下命令 \appendix \renewcommand{\appendixname}{\appendixname~\Alph{s 阅读全文
posted @ 2020-09-10 21:07 Gelthin 阅读(11702) 评论(0) 推荐(0) 编辑
摘要: 机器学习 paper 写作学习资料: 《学术研究:你的成功之道》 如何优雅地(用TeX)写AI论文 和导师一起文章死线(deadline)的十大注意事项 提高科研论文写作效率的小工具 学会总结并复习,防止以后写 paper 再犯类似的错误! 2019.1月 IJCAI-20-Noisy Label 阅读全文
posted @ 2020-09-02 10:26 Gelthin 阅读(254) 评论(0) 推荐(0) 编辑
摘要: python2 没有控制循环变量的变量名的作用域,致使同名变量冲突了,这在 python3 中已经修复。 使用了相同的变量名,导致先前的变量指向了另一个变量,导致错误。来自 DIEN 代码 ... uid = self.source_dicts[0][ss[1]] if ss[1] in self. 阅读全文
posted @ 2020-07-21 15:51 Gelthin 阅读(152) 评论(0) 推荐(0) 编辑
摘要: session.run() 函数 https://blog.csdn.net/u014636245/article/details/101698300 run(self, fetches, feed_dict=None, options=None, run_metadata=None) 其中常用的f 阅读全文
posted @ 2020-07-08 15:07 Gelthin 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 脱离鼠标使用 windows 快捷键: https://www.zhihu.com/question/21281518/answer/64071556 win + E 打开资源管理器 win + D 当前窗口不关闭,切换到桌面 win + X 呼出很多设置。 用来关机,长按 U 2 秒 win + 阅读全文
posted @ 2020-07-08 10:38 Gelthin 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 2020.9.29 更新 用此命令也能成功,并且更快捷。 curl http://p.nju.edu.cn/portal_io/login?username=学号&password=密码 # curl: 客户端(client)的 URL 工具 2020.12.16 更新 下面这两种方法: curl 阅读全文
posted @ 2020-07-07 11:33 Gelthin 阅读(692) 评论(0) 推荐(0) 编辑
摘要: from __future__ import absolute_import from __future__ import division from __future__ import print_function 一个file 中出现了这些语句,但是这些语句前面有注释(关于这个文件的说明)。 然 阅读全文
posted @ 2020-07-06 18:37 Gelthin 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Linux中将 python 程序运行结果记录到文件中的方法 https://www.cnblogs.com/shineriver/p/10922970.html 仅转向不显示 (1)ls > test.txt 把输出转向到指定的文件,如文件已存在的话也会重新写入,文件原内容不会保留 (2)ls > 阅读全文
posted @ 2020-07-06 09:52 Gelthin 阅读(4808) 评论(0) 推荐(0) 编辑
摘要: 之前使用学校的云服务器,主要是用 winscp + xshell + 本地 spyder 使用 最近 2020.7.4 准备换用 pycharm, 因为 pycharm 可以直接连接远程服务器,直接调试代码。 pycharm 有学生免费版 https://www.jetbrains.com/comm 阅读全文
posted @ 2020-07-06 09:37 Gelthin 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 参考博客 https://blog.csdn.net/hczhcz0905/article/details/80084492 增加清华源: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/f 阅读全文
posted @ 2020-07-02 20:15 Gelthin 阅读(824) 评论(0) 推荐(0) 编辑