sin7903 / MFM_DB

MLOps for MLE - chapter1 DB
0 stars 0 forks source link

target 의 type을 float 으로 변환하는 이유 #2

Open Aiden-Jeon opened 1 year ago

Aiden-Jeon commented 1 year ago

https://github.com/sin7903/MFM_DB/blob/11429dd7eac213e684bd7924c62e5ef561cbaee1/DB_MLE.py#L10 https://github.com/sin7903/MFM_DB/blob/11429dd7eac213e684bd7924c62e5ef561cbaee1/DB_MLE.py#L40

아래에서 INT 로 입력하는데 float으로 변환해야 하는 이유가 있을까요?

sin7903 commented 1 year ago

해당 value가 numpy.int64로 되어 있어서 변환을 했습니다. int 변환을 하니 numpy.int64가 그대로 승계되어서 float으로 변환했습니다. target을 Numeric으로 하면 하는 것도 한 방법일 것 같은데 조건에 INT 로 되어 있어서 target을 변환하지는 않았습니다.