From ae71d7e77d10d8e2ecca1240bdf368c8d9e7ebcf Mon Sep 17 00:00:00 2001 From: neptun91 Date: Fri, 28 Jun 2024 07:06:08 +0900 Subject: [PATCH] test --- ch02/nand_gate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02/nand_gate.py b/ch02/nand_gate.py index 730520671..a563ab9f4 100644 --- a/ch02/nand_gate.py +++ b/ch02/nand_gate.py @@ -1,7 +1,7 @@ # coding: utf-8 import numpy as np - +#branch에 들어갈 내용임 def NAND(x1, x2): x = np.array([x1, x2]) w = np.array([-0.5, -0.5])