model.fit(np.array(x),np.array(y),epochs=1000)으로 설정 해두고
예측값 = model.predict([[750, 3.70, 3],[400, 2.2, 1]])
print(예측값)
코드를 넣으면
Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 1 array(s), but instead got the following list of 2 arrays: [array([[750. ], [ 3.7], [ 3. ]]), array([[400. ], [ 2.2], [ 1. ]])]...
이런 에러가 뜨네요.
검색해도 잘 안떠서 질문드립니다.