kn = kn.fit(train_input, train_target)
kn.score(test_input, test_target)
이렇게 오류를 뱉었다 ㅜ
https://stackoverflow.com/questions/35996970/typeerror-fit-missing-1-required-positional-argument-y
확인해보니 모델의 클래스 객체를 생성할때 () 빼먹음...
아래와 같이 변경해준다!
kn = KNeighborsClassifier()
반응형
'IT 메모장 > 오류들 😤' 카테고리의 다른 글
This Kernel requires an x86-64 CPU, but only detected an i686 CPU. (0) | 2021.11.14 |
---|---|
Call to NEMR0InitVMPart2 failed: VERR_NEM_INIT_FAILED (VERR_NEM_VM_CREATE_FAILED (2) | 2021.11.13 |
postgres, SSL 중지 연결에 대한 설정이 pg_hba.conf 파일에 없습니다. (0) | 2021.10.23 |
psql: 치명적오류: 사용자 "postgres"의 password 인증을 실패했습니다 (0) | 2021.06.10 |
[C#] 형식 또는 네임스페이스 이름을 찾을 수 없습니다. CS0234오류 (0) | 2021.06.09 |
댓글