반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- cudnn
- bccard
- 데이터전문기관
- 대이터
- vscode
- 웹 용어
- java역사
- web 용어
- 머신러닝
- C언어
- CES 2O21 참가
- 결합전문기관
- paragraph
- tensorflow
- web 사진
- web
- 자료구조
- 재귀함수
- html
- pycharm
- inorder
- postorder
- KNeighborsClassifier
- broscoding
- Keras
- classification
- web 개발
- CES 2O21 참여
- mglearn
- discrete_scatter
Archives
- Today
- Total
bro's coding
sklearn.오류값 찾기 본문
반응형
https://broscoding.tistory.com/112
X=np.random.randn(500)*5 # 곱하는 수의 절댓값이 커질수록 직선에 가까워진다.
y=X+np.random.randn(500) # 곱하는 수에 따라 회전(기울기 개념)
pred_y=2*X # 기울기를 변경해 가며 오류값이 작아지는 곳을 찾는다.
cost=((y-pred_y)**2).mean()
plt.hlines([0],-10,10,linestyles=':')
plt.vlines([0],-10,10,linestyles=':')
plt.scatter(X,y,alpha=0.3)
plt.plot(X,pred_y,'r--')
plt.axis('scaled')
cost #27.407466311085017
pred_y=0*X # 기울기를 변경해 가며 오류값이 작아지는 곳을 찾는다.
cost=((y-pred_y)**2).mean()
plt.hlines([0],-10,10,linestyles=':')
plt.vlines([0],-10,10,linestyles=':')
plt.scatter(X,y,alpha=0.3)
plt.plot(X,pred_y,'r--')
plt.axis('scaled')
cost #26.189673264319485
pred_y=1*X # 기울기를 변경해 가며 오류값이 작아지는 곳을 찾는다.
cost=((y-pred_y)**2).mean()
plt.hlines([0],-10,10,linestyles=':')
plt.vlines([0],-10,10,linestyles=':')
plt.scatter(X,y,alpha=0.3)
plt.plot(X,pred_y,'r--')
plt.axis('scaled')
cost #1.0063384580396453
ws=np.arange(0,2.001,0.000001) # 정밀도
costs=[]
min_cost=np.inf
min_w=None
for w in ws:
pred_y=X*w
cost=((pred_y-y)**2).mean()
costs.append(cost)
if cost<min_cost:
min_cost=cost
min_w=w
display(min_w,min_cost)
0.988196
1.0027447889672905
pred_y=min_w*X # 기울기 : min_w
cost=((y-pred_y)**2).mean()
plt.hlines([0],-10,10,linestyles=':')
plt.vlines([0],-10,10,linestyles=':')
plt.scatter(X,y,alpha=0.3)
plt.plot(X,pred_y,'r--')
plt.axis('scaled')
cost #1.0027447889672905
plt.plot(ws,costs,'o-')
plt.xticks(ws,rotation=60)
plt.xlabel('w',fontsize=20)
plt.ylabel('cost',fontsize=20)
반응형
'[AI] > python.sklearn' 카테고리의 다른 글
sklearn.mglearn(install) (0) | 2020.04.09 |
---|---|
machine learning.분류 (0) | 2020.04.08 |
sklearn.model_selection.train_test_split (0) | 2020.04.08 |
sklearn.iris data 불러오기 (0) | 2020.04.08 |
sklearn.수치근사법 (0) | 2020.04.08 |
sklearn.coef/intercept (0) | 2020.04.07 |
machine learning.비용함수(cost function) (0) | 2020.04.07 |
sklearn.비용함수.경사 하강법(stochastic gradient descent) (0) | 2020.04.07 |
Comments