摘要: import numpy as np # y = w*x + b def compute_error_for_line_given_points(b,w,points): totalError=0 for i in range(0,len(points)): x=points[i,0] y=poin 阅读全文
posted @ 2022-04-02 20:22 五彩斑斓的黑L 阅读(39) 评论(0) 推荐(0)