250x250
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
- 회귀
- 텐서플로우
- 코딩
- 턱걸이
- C언어
- 프로세스
- 공부
- OpenCV
- shell
- 알고리즘
- 백준
- 리눅스
- CV
- 프로그래밍
- 백준알고리즘
- 시스템프로그래밍
- 딥러닝
- TensorFlow
- 운영체제
- 영상처리
- 학습
- C++
- c
- error
- Windows 10
- python
- Computer Vision
- 쉘
- Windows10
- linux
Archives
- Today
- Total
줘이리의 인생적기
[tensorflow 09] XOR 네트워크 시각화 본문
728x90
그래프와 어느정도 친해졌으니 앞서 배운 XOR 학습 시킬 때 잘 되고 있는지 시각화 해보겠습니다.
import tensorflow as tf
import math
import numpy as np
import matplotlib.pyplot as plt
x = np.array([[1,1], [1,0], [0,1], [0,0]])
y = np.array([[0], [1], [1], [0]])
model = tf.keras.Sequential([tf.keras.layers.Dense(units=2, activation='sigmoid', input_shape=(2,)), tf.keras.layers.Dense(units=1, activation='sigmoid')])
model.compile(optimizer=tf.keras.optimizers.SGD(lr=0.3), loss='mse')
model.summary()
history = model.fit(x, y, epochs=2000, batch_size=1)
plt.plot(history.history['loss'])
plt.show()
이렇게 matplotlib를 활용하여 loss의 변화량을 쉽게 확인할 수 있습니다.
참고로 plt.plot(history.history['loss']) 처럼 변수 하나만 전달하면 그 변수를 y로 간주하고, x는 자동으로 생성하여 그래프를 만들어 줍니다.
'공부 > tensorflow' 카테고리의 다른 글
[tensorflow 11] 선형회귀02 (0) | 2021.04.20 |
---|---|
[tensorflow 10] 선형회귀01 (0) | 2021.04.14 |
[tensorflow 08] matplotlib.pyplot 시각화 (0) | 2021.04.12 |
[tensorflow 07] XOR 연산 뉴런 (0) | 2021.04.09 |
[tensorflow 06] OR 연산 뉴런 (0) | 2021.04.08 |