摘要: 1.拒绝采样 https://wiseodd.github.io/techblog/2015/10/21/rejection-sampling/ 问题与思考: (1) 阅读全文
posted @ 2021-04-07 16:19 细妹 阅读(56) 评论(0) 推荐(0)
摘要: 实例入门教程https://www.datacamp.com/community/tutorials/active-learning 推荐入门综述http://burrsettles.com/pub/settles.activelearning.pdf 阅读全文
posted @ 2021-04-06 16:10 细妹 阅读(107) 评论(0) 推荐(0)
摘要: 1. 阅读全文
posted @ 2021-04-03 21:59 细妹 阅读(24) 评论(0) 推荐(0)
摘要: 1. 146大小写转换 II:使用' '.join(list)将list转换成字符串;ord与chr的使用; 2. 阅读全文
posted @ 2021-04-03 21:57 细妹 阅读(37) 评论(0) 推荐(0)
摘要: 1. 在Github新建一个仓库 2. 本地安装git(不同系统及版本略有不同),可先查看git --version git config --global user.name " " git config --global user.email " " 主目录的gitconfig可以查看 3. G 阅读全文
posted @ 2020-11-28 17:59 细妹 阅读(66) 评论(0) 推荐(0)
摘要: # generate mirror list sudo pacman-mirrors -i -c China -m rank mirror list generated and saved to /etc/pacman.d/mirrorlist # add archlinux mirror sour 阅读全文
posted @ 2020-11-17 22:31 细妹 阅读(235) 评论(0) 推荐(0)
摘要: 转自https://blog.csdn.net/mieleizhi0522/article/details/82142856 阅读全文
posted @ 2020-11-17 22:10 细妹 阅读(70) 评论(0) 推荐(0)
摘要: 问题:终端启动Clion/IDEA出现如下问题, Unrecognized VM option 'UseConcMarkSweepGC' Error: Could not create the Java Virtual Machine. Error: A fatal exception has oc 阅读全文
posted @ 2020-11-17 13:46 细妹 阅读(567) 评论(0) 推荐(0)
摘要: np.random.seed() #给随机数生成一个种子,通常是因系统的时间差异,生成不同的随机数for i in range(3): print(np.random.random()) #仅在第一次是使用上面seed()的种子,之后都是系统时间生成#参考https://blog.csdn.net/ 阅读全文
posted @ 2020-11-04 10:30 细妹 阅读(78) 评论(0) 推荐(0)
摘要: 背景:pip在终端安装的d2l包,安装成功,但是jupyter导入失败 原因:jupyter调用的python包和环境下的包不一致 1. 首先激活虚拟环境,查看python路径,简单方法如下两种: (1)可以在终端which python (2)可以 import sys sys.excutable 阅读全文
posted @ 2020-11-02 21:32 细妹 阅读(3970) 评论(0) 推荐(0)