반응형
한참 동안 torch만 사용하다, Keras를 사용했는데 오류가 발생했다.
내용 그대로 tensorflow 2.6 이후부터는 predict_classes 를 지원하지 않는다.
다중 분류 문제에서는 아래와 같이,
predict_x = model.predict(X_test)
classes_x = np.argmax(predict_x,axis=1)
그리고 이진 분류 문제에서는 아래와 같이 대체해 주면 된다.
(predict_x > 0.5).astype("int32")
반응형
'기타' 카테고리의 다른 글
[오류] load() missing 1 required positional argument: 'Loader' (0) | 2022.10.03 |
---|---|
[오류] ImportError: Missing optional dependency 'Jinja2'. DataFrame.style requires jinja2. Use pip or conda to install Jinja2. (0) | 2022.07.05 |
[오류] module 'librosa' has no attribute 'display' (0) | 2022.07.03 |
API(Application Programming Interface)란? (0) | 2021.09.09 |
티스토리에 Latex 수식 사용하기 (0) | 2021.07.24 |