摘要:
以下是记录的一些笔记: 有些混乱,寒假再来细细整理。 python实现: def gcd(a,b): while(b != 0): r = a%b a,b = b,r return a print(gcd(252, 105)) 阅读全文
摘要:
梯度下降与随机梯度下降: import torch import matplotlib.pyplot as plt import numpy as np x_data = [5,6,7,8.5,9,10,11.5,12] y_data = [1,2,8,4,5,6.5,7.5,8] w = 1 #初 阅读全文