or1 AI Study : Logic Gates in Linear Perceptron Algorithm(3D graphs) / 선형 퍼셉트론 회로 Let's understand Logic Gates in Linear Perceptron Algorithm by plotting. We can learn how to visualize these gates by 3D graphs. 3D graph를 그려서 선형 퍼셉트론 회로들을 이해해보고자 한다. Linear Perceptron : OR , AND gates OR gate def OR(x1, x2): a1, a2, b=0.3, 0.3, 0.4 delta=0.5 y=a1*x1+a2*x2+b if y< delta: return 0 else: return 1 * Let's explore this logic further with the help of a plot. CODE import numpy as np i.. 2024. 4. 7. 이전 1 다음