[Python] TypeError: Object of type ndarray is not JSON serializable
[Python] TypeError: Object of type ndarray is not JSON serializable TypeError: Object of type ndarray is not JSON serializable 에러 코테의 경우 return 타입이 정해져 있어 해당 타입이 아닌 경우 발생하는 에러 나는 numpy.array를 리턴했더니 ndarray가 JSON으로 serialize 할 수 없다고 나타난 케이스였다. 해결 방법 ndarray.tolist() 를 이용해 numpy.array를 리스트로 변환 list(ndarray)를 통해 리스트로 변환(잘 작동하지 않는 경우가 있다고 함) numpy.array를 사용하지 않고 리스트를 이용해 코드 작성 참고 [python] NumPy arra..