input_value = np.array([[0,0], [0,1], [1,1], [1,0]]) output = np.array([0,0,1,0]).reshape(4,1) weights = np.array([[0.1], [0.3]]) bias = 0.2 ...