We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
퍼셉트론을 활용한 간단한 문제 살펴보기
def ANDByBiasAndWeight(x1, x2): x = np.array([x1, x2]) w = np.array([0.5, 0.5]) b = -0.7 tmp = np.sum(x * w) + b if tmp <= 0: return 0 else: return 1
def XOR(x1, x2): s1 = NAND(x1, x2) s2 = OR(x1, x2) y = AND(s1, s2) return y
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. 퍼셉트론?
2. 단순한 논리 회로
퍼셉트론을 활용한 간단한 문제 살펴보기
2.1 AND 게이트
- 퍼셉트론으로 표현?
2.2 NAND 게이트와 OR 게이트
3. 퍼셉트론 구현
3.1 간단한 구현 / 3.2 가중치와 편향 도입 / 3.3 가중치와 편향 구현하기
4. 퍼셉트론의 한계
4.1 XOR 구현하기
4.2 선형과 비선형
- 위 처럼 곡선으로 나눌 수 있음 - 비선형: 그림 2-8과 같은 곡선 - 선형: 그림 2-6과 같은 직선
5. 다층 퍼셉트론이 충돌한다면
5.1 기존 게이트 조합하기
5.2 XOR 게이트 구현하기
6. NAND에서 컴퓨터까지
7. 정리
The text was updated successfully, but these errors were encountered: