Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- 네이버
- 액션
- 만화 영화
- 사랑
- 빅데이터 분석기사 필기
- 이범선
- 산책
- 완결 웹툰
- 넷플릭스
- 진심
- 웹툰
- 제주도
- 제임스 클리어
- 커피
- python
- geopandas
- 이기적 출판사
- 가족
- 서귀포
- 애니메이션
- 영화
- pandas
- 네이버 완결 웹툰
- 아주 작은 습관의 힘
- 네이버 웹툰
- 완결
- 로맨스
- QGIS
- 빅데이터 분석기사
- 습관
Archives
- Today
- Total
목록Data Science/error 모음 (10)
JuJuKwakKwak
error - 사이킷 버전 설치
아래의 코드를 실행했더니 from imblearn.over_sampling import SMOTE 이런 결과가 나온다. cannot import name 'DistanceMetric' from 'sklearn.metrics' 사이킷런 버전 설치에 문제가 있는 것 같다. 1) 주피터 노트북을 끝다. 2) 아나콘다 프롬프트에 다음의 코드를 치면 된다. pip uninstall -v scikit-learn pip install -v scikit-learn 3)그리고 주피터 노트북을 다시 켜서 실행한다.
Data Science/error 모음
2022. 1. 24. 17:25
error - selenium
크롤링에서 에러 발생 Message: stale element reference: element is not attached to the page document next_page = driver.find_element_by_css_selector('#content > div.paginate > div > a.next > span.cnt_page') while next_page: next_page.click() 이렇게 돌렸다. 2페이지까지는 성공했다. 3페이제부터 에러 발생했다. while driver.find_element_by_css_selector('#content > div.paginate > div > a.next > span.cnt_page'): time.sleep(1) driver.find_..
Data Science/error 모음
2022. 1. 14. 17:10