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 |
Tags
- Fine-tuning
- torch._C._cuda_getDeviceCount()
- aimv2
- ubuntu
- gemma-3-27b-it
- sfttrainer
- transformer
- prompt
- PEFT
- langchain
- llama-4-scout-17b-16e-instruct
- glibcxx
- ViT
- gemma-3
- openAI
- Python
- diffusion
- CPT
- instruction tuning
- llama-4
- Gemma
- tensor-parallel
- multi-gpu
- Lora
- nccl
- backbone
- llm
- Mac
- vLLM
- Text-to-Image
Archives
- Today
- Total
목록ubuntu (2)
꾸준하게
ImportError: /home/lawform/miniconda3/envs/ys/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.32' not found
에러 전문mysql 부분에서 아래와 같은 에러가 발생하였다.ImportError: ~/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.32' not found (required by /lib/x86_64-linux-gnu/libmysqlclient.so.21)ERROR 12-03 01:36:14 multiproc_worker_utils.py:116] Worker VllmWorkerProcess pid 2536513 died, exit code: -15INFO 12-03 01:36:14 multiproc_worker_utils.py:120] Killing local vLLM worker processes~/lib/python3.11/multiprocessing/reso..
이슈 해결
2024. 12. 3. 10:44
[Ubuntu/Git] Terminal에 현재 branch명 표시하기
적용 방법1. vi ~/.bashrc에 아래 내용 삽입 후2. source ~/.bashrc 명령어를 통해 적용# enable current branchparse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'}export PS1="\e[01;32m\u@\h \[\e[34m\]\w\[\e[91m\]\$(parse_git_branch)\[\e[00m\]$ "
기타
2024. 9. 3. 15:47