반응형
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
- CES 2O21 참여
- discrete_scatter
- 머신러닝
- 대이터
- paragraph
- html
- cudnn
- 결합전문기관
- KNeighborsClassifier
- inorder
- 재귀함수
- bccard
- java역사
- broscoding
- classification
- web 개발
- web 용어
- C언어
- tensorflow
- 데이터전문기관
- web
- web 사진
- 자료구조
- Keras
- 웹 용어
- postorder
- pycharm
- mglearn
- vscode
- CES 2O21 참가
Archives
- Today
- Total
bro's coding
keras.iris(예측 ) 본문
반응형
import numpy as np
import keras
from keras.models import Sequential
from keras.layers import Dense
# iris에 적용(값 예측)
# data 준비
from sklearn.datasets import load_iris
iris=load_iris()
X=iris.data[:,:3]
y=iris.data[:,3]
model=Sequential()
model.add(Dense(1,input_shape=(3,),activation='linear'))
model.compile(loss='mse',optimizer='sgd')
model.fit(X,y,epochs=1000)
ws=model.get_weights()
ws
[array([[-0.21790431],
[ 0.22590208],
[ 0.5348903 ]], dtype=float32), array([-0.1555938], dtype=float32)]
plt.plot(model.history.history['loss'])
반응형
'[AI] > python.keras' 카테고리의 다른 글
keras.score (0) | 2020.05.13 |
---|---|
keras.mnist(중간층) (0) | 2020.05.13 |
keras.mnist(중간층X) (0) | 2020.05.13 |
keras.mnist (0) | 2020.05.13 |
keras.iris(분류) (0) | 2020.05.13 |
keras.basic(분류) (0) | 2020.05.13 |
keras.basic(예측) (0) | 2020.05.13 |
keras.install (0) | 2020.05.13 |
Comments