본문 바로가기
반응형

Programming17

[git] Linux - access token 저장해두고 쓰기! 매번 GitHub 인증하기 번거로운데, git credential 기능을 이용하면 인증 정보를 저장해두고 사용 가능함. git clone 토큰 인증 한방 명령어. 일단 아래 코드로 git clone과 토큰 인증을 한번에 처리할 수 있다. $ git clone https://:@ git clone https://:@ 이제 Credential Helper를 이용해 이 토큰 정보를 저장해두고 사용하면 매번 인증을 안해도 됨!  - Credential로 토큰 정보를 반영구 저장 하는 방식-git config --unset credential.helper [이 과정의 경우 기존에 세팅된 credential.helper 데이터를 해제할 때만 사용한다.]git config credential.helper store .. 2024. 8. 8.
[Error] nohup 안됨 - MPIrun 리눅스 Triton Server에서 nohup으로 모델을 띄워놨는데, VScode 창을 닫으면 (종료하면) 계속 모델이 죽는 문제가 발생. nohup이 자꾸 안되서... 이것저것 시도해봤는데 결국 아래와 같이 해결했다.  전체 스크립트를 괄호로 감싸면 된다!(CUDA_VISIBLE_DEVICES=0 nohup mpirun -n 1 blahblah &) https://stackoverflow.com/questions/48296285/nohup-does-not-work-mpirun  nohup "does not work" MPIrunI am trying to use the "nohup" command to avoid killing a background process when exiting the termi.. 2024. 6. 4.
[Error] 허깅페이스 lfs 모델 다운로드 에러 : connectionerror httpsconnectionpool(host='cdn-lfs-us-1.huggingface.co' port=443) Orion-14B 모델 성능이 LLaMA2 13B 보다 좋다길래, inference test를 해보려고 했다. https://huggingface.co/OrionStarAI/Orion-14B-Base OrionStarAI/Orion-14B-Base · Hugging Face Orion-14B Table of Contents 1. Model Introduction Orion-14B series models are open-source multilingual large language models trained from scratch by OrionStarAI. The base model is trained on 2.5T multilingual corpus, including Chinese, English,.. 2024. 4. 2.
[python] 폐쇄망 패키지 설치 에러 : transformers Installation Error - Failed building wheel for tokenizers 폐쇄망에 개발환경을 셋팅하다보면, 패키지 종속성이나 버전 문제가 자동으로 해결되지 않아 에러가 자주 발생한다.. 이번엔 transformers 3.2.0 버전이 필요해서 설치 하던 중 종속 패키지 중 하나인 tokenizers 패키지를 까는데, 아래 에러가 발생했다. ERROR: Failed building wheel for tokenizers Failed to build tokenizers ㅎㅎ.. 열심히 구글링 해 본 결과, 아래 명령어로 pip 를 업그레이드 한 후 재설치해보라는 얘기가 있었다. pip install --upgrade pip 하지만 해결되지 않아서 다시 찾아보니 tar.gz 파일로 된 패키지 설치 시 해당 에러가 발생하는 경우가 있는 것 같았다. 그래서 whl 파일로 바꿔서 다시 설.. 2023. 11. 22.
반응형