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