当前位置:网站首页>Second day of deep learning and tensorfow

Second day of deep learning and tensorfow

2022-06-26 05:04:00 Rain and dew touch the real king

Presence of decay factor

 

Kinear Regression continuity

                                                               Logistic Regression Two points

                                                               Classification piecewise

actual combat

numpy database

def compute-error-for-line-given-points(b,w,points):
    total-error = 0
    for i in range(0,len(point)):
       x= points[i,0]
       y=points[i,1]
       total-error += (y-( w*x+b)) **2
return total -error / float(len(points))

2. Handwritten numeral analysis  

one-hot problem

Step by step dimension reduction

原网站

版权声明
本文为[Rain and dew touch the real king]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202180508319487.html