Notice
Recent Posts
Link
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ubuntu에서 docker 사용
- AI
- pill classification
- docker container
- yolo mask
- mask image training
- 360게임 만들기 with c
- flower classification
- Python
- docker
- ceasor
- Java
- 오목앱 만들기
- iris dataset
- 긍부정문 판별
- 오목게임앱
- 시저암호 코딩
- deep learning
- drone control
- dji tello
- Container
- ubuntu
- 한글깨짐해결
- pill ai
- token check
- C
- aws code pipeline
- 369게임 만들기
- 춤 유사도 평가
- docker in ubuntu
Archives
- Today
- Total
목록OR (1)
월레스와 그로밋: 코딩의 날
퍼셉트론(Perceptron _ AND, OR, NAND, XOR)
import numpy as npdef AND(x1, x2): x = np.array([x1, x2]) w = np.array([1.0, 1.0]) b = -1.5 tmp = np.sum(w*x) + b if tmp " + str(y))output[AND_Gate](0, 0)->0(1, 0)->0(0, 1)->0(1, 1)->1[OR_Gate](0, 0)->0(1, 0)->1(0, 1)->1(1, 1)->1[NAND_Gate](0, 0)->1(1, 0)->1(0, 1)->1(1, 1)->0[XOR_Gate](0, 0)->0(1, 0)->1(0, 1)->1(1, 1)->0
Python/Deep Learning
2025. 2. 7. 19:53