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 |
Tags
- CV
- Windows 10
- 백준알고리즘
- 백준
- 시스템프로그래밍
- error
- python
- OpenCV
- 코딩
- TensorFlow
- 딥러닝
- Windows10
- 쉘
- shell
- 프로그래밍
- Computer Vision
- 알고리즘
- C언어
- 학습
- linux
- 공부
- c
- 영상처리
- 운영체제
- 리눅스
- C++
- 턱걸이
- 회귀
- 텐서플로우
- 프로세스
Archives
- Today
- Total
목록batch_size (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