오류3 [LLM tuning 오류] AttributeError: module 'collections' has no attribute 'Container' 최근에 LLM 코딩할 일이 생겨서 이준범님의 KoAlpaca 레포를 보고 스크립트를 따라하고 있다.https://github.com/Beomi/KoAlpaca 3090 4대를 이용하였고, README에 나와있는대로 진행하였는데, 아래와 같은 오류들이 나왔다.AttributeError: Caught AttributeError in replica 0 on device 0.AttributeError: module 'collections' has no attribute 'Container' 해당 오류 이후에 터미널이 꺼지지는 않고 계속 무한 로딩이 지속되었는데, python 버전 문제였다. 3.10 버전이 collections 모듈을 좀 수정한 것 같다. 아무튼 파이썬 버전을 3.9로 내려서 새로 가상환경을 만.. 2024. 5. 27. [셀레니움 오류] AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' 오류해결 파이썬에서 selenium을 써서 크롤링을 할 때 아래와 같이 find_element_by_css_selector을 쓰면 오류가 나오는 경우가 있다. enter_btn = wd.find_element_by_css_selector("#menu2091_obj16 > form > div > div > div._areaButton > div > span > input[type=submit]").click() (참고로 wd는 웹 드라이버 변수명이다.) AttributeError: 'WebDriver' object has no attribute 'find_element_by_css_selector' 이 오류는 말 그대로 WebDriver에 'find_element_by_css_selector' 라는 함수가 없기 때.. 2022. 6. 27. [Docker 오류] Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 오류 해결 우분투를 통해 도커를 쓰다보면 위와 같은 오류가 나오는 경우가 있을 것이다. 아무리 구글링을 해봐도 $sudo systemctl status docker 이 방법 밖에 나오지 않았는데, 다른 오류들이 막 나타나면서 해결되지 않았다. 이것은 systemctl 관련 오류인데 이를 해결하기 위해서는 genie라는 것을 설치해야한다. 설치 방법은 우분투 환경에다 아래의 명령어들을 순서대로 입력하면 된다. $ sudo apt install daemonize $ sudo apt-get install -y gpg $ wget -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o microsoft.asc.gpg $ sudo mv micros.. 2022. 6. 26. 이전 1 다음