Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- c
- linux
- 알고리즘
- OpenCV
- 공부
- 학습
- Windows 10
- C++
- Windows10
- 백준알고리즘
- TensorFlow
- C언어
- 시스템프로그래밍
- 프로그래밍
- error
- 회귀
- 텐서플로우
- 딥러닝
- Computer Vision
- 리눅스
- python
- 백준
- 운영체제
- shell
- 코딩
- 쉘
- 영상처리
- 프로세스
- 턱걸이
- CV
Archives
- Today
- Total
목록epoches (1)
줘이리의 인생적기

그래프와 어느정도 친해졌으니 앞서 배운 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(optimize..
공부/tensorflow
2021. 4. 13. 22:00