env.yaml 추가 - 가상환경 생성하기 간편하게 하기 위해 추가
This commit is contained in:
jung-geun
2023-06-11 14:45:01 +00:00
parent 1662d58f05
commit 34729e9b33
6 changed files with 75 additions and 8 deletions

2
xor.py
View File

@@ -21,7 +21,7 @@ print(tf.__version__)
print(tf.config.list_physical_devices())
def get_data():
x = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])
x = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])
y = np.array([[0], [1], [1], [0]])
return x, y