【深度學習基礎-11】簡單線性迴歸(下)--實例及python代碼實現

比如有5組數據,讓你去做簡單線性迴歸。  python代碼實現上述過程   import numpy as np def fitSLR(x,y): n = len(x) dinominator = 0 numerator = 0 for i in range(0, n): numerator += (x[i] - np.mean(x))*(y[i]
相關文章
相關標籤/搜索