cs224w(图机器学习)学习笔记1 Introduction and the Bowtie Structure of the Web

课程先导 证明可用方法:proof by contrapositive类比证明、by contradiction举反例、by cases举例子、by induction数学归纳法 数学算数基础: 微积分calculus: \(e^x=lim_{n\to\infty}(1+x/n)^n\) ,特例: \(e=lim_{n\to\infty}(1+1/n)^n,1/e=lim_{n\to\infty}(1-1/n)^n\) 概率论probablitity:条件概率conditional probability...

Continue Reading »
分享到:

pytorch中提高模型可复现性的几个设置

最近被模型的可复现问题弄得不堪其扰,现在勉强算是解决了,记录一下 首先是最常规的随机种子设置 python中随机种子 random.seed(seed) numpy中随机种子 np.random.seed(seed) torch中随机种子 torch.manual_seed(seed) 部分博客中还记录了给GPU设备设置随机种子的设置,torch.cuda.manual_seed给当前GPU设备设置随机种子,torch.cuda.manual_seed_all给所有GPU设备设置随机种子,但 官方文档 中已...

Continue Reading »
分享到: