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

결론부터 말하자면, 하나의 퍼셉트론으로는 간단한 XOR연산자도 만들어낼 수 없습니다. (Marvin Minsky, Seymour Papert가 증명) 안 되는 XOR 네트워크를 만들어볼 텐데, 앞서 공부한 OR, AND 연산처럼 XOR 진리표부터 보겠습니다. import tensorflow as tf import math import numpy as np def sigmoid(x): return 1 / (1 + math.exp(-x)) x = np.array([[1,1], [1,0], [0,1], [0,0]]) y = np.array([[0], [1], [1], [0]]) # 거짓 참 참 거짓 w = tf.random.normal([2], 0, 1) b = tf.random.normal([1], 0, 1..
공부/tensorflow
2021. 4. 9. 22:00