쇼핑몰 지점별 매출액 예측 AI 해커톤

알고리즘 | 정형 | 회귀 | 매출액 | RMSE

  • moneyIcon 상금 : 인증서, 장학금, 스타벅스 기프티콘 등
  • 1,240명 마감

 

Pycaret을 사용한 baseline

2022.07.11 22:32 3,255 조회 language

(좋아요! 댓글은 사랑입니당)
궁금하신 내용 댓 남기면 전부 알려드리겠습니다.
저 옷 갖고 싶습니다. (3일에 1개씩 성능 올려서 올리도록 하겠습니다.)

코드
로그인이 필요합니다
0 / 1000
파이썬짱
2022.07.12 09:26

쫌하시네욤

stack
2022.07.13 01:54

내일  시각화 및 분석에 관련하여 글 추가하도록 하겠습니다.

annsyj94
2022.07.12 16:03

오올ㅋㅋㅋㅋ

stack
2022.07.13 01:54

내일  시각화 및 분석에 관련하여 글 추가하도록 하겠습니다.

chaeng123
2022.07.15 13:41

좋은 글 감사합니다! 코딩 초보인데 따라하면서 배우는 중입니다.

그런데, top5_model = compare_models(round=4, n_select = 5, sort='RMSE') 코드 실행 시 빈 리스트가 나옵니다..
이후 stacker = stack_models(top5_model[:4], optimize = 'RMSE') 실행 시 UnicodeEncodeError: 'ascii' codec can't encode character '\ucc59' in position 18: ordinal not in range(128)가 뜨는데, 혹시 바쁘지 않으시면 해결방법을 여쭤도 될까요?

감사합니다!

stack
2022.07.15 13:55

혹시 운영체제가 어떻게 되는지 알 수 있을까요?
아마, 운영체제 차이인거 같은데, 한번 Colab에서 실행해보시기 바랍니다. 혹은 Kaggle Notebook에서..
(!pip 로 다운 받으셔야 할거에용. )
참고 : https://blog.naver.com/qkrdnjsrl0628/222791254831

버전도 동일하게 해주세용 => pycaret : '2.3.10'

chaeng123
2022.07.15 14:04

넵! 감사합니다:) m1 mac에서 실행하다 pycaret 설치가 잘 안되서 window10 노트북으로 옮겨 실행중입니다.
말씀하신 대로 코랩으로 한번 해보겠습니다!

stack
2022.07.15 13:55

삭제된 댓글입니다

jangzoo
2022.07.20 00:12

좋은 글 감사합니다!! pandas-profiling 모듈 설치관련해서 여쭤보고자 합니다.

Collecting pandas-profilingNote: you may need to restart the kernel to use updated packages.
  ERROR: Command errored out with exit status 1:

오류의 첫줄인데 구글링해봐도 해결책을 찾지 못해 혹시 아시나 하여 여쭤봅니다ㅠㅠ

자작나무1
2022.07.20 04:55

pycaret 설치할 때 계속 이러한 오류가 나옵니다. 윈도우, 맥 둘다 해봤는데 계속 이 오류만 나오는데 해결방법 혹시 아시나요..?
note: This error originates from a subprocess, and is likely not a problem with pip.
      error: legacy-install-failure

      Encountered error while trying to install package.

      numpy

      note: This is an issue with the package mentioned above, not pip.
      hint: See above for output from the failure.
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

인간지능
2022.11.16 15:25

1. 버전확인: 윈도우 기준 python 3.9에는 설치안됨 (권장 3.8)
2. 새로운 가상환경에서 설치: Scikit-Learn, Pandas 등 의존성 라이브러리들이 있기에 기존환경은 버전충돌 날 수 있음

아래 복붙 하세요
$ conda create --name mypycaret python=3.8
$ conda activate mypycaret
$ pip install pycaret