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
- multi-gpu
- gemma-3
- gemma-3-27b-it
- diffusion
- transformer
- torch._C._cuda_getDeviceCount()
- nccl
- gemma2
- prompt
- tensor-parallel
- langchain
- Gemma
- Text-to-Image
- sfttrainer
- llama-4-scout-17b-16e-instruct
- error: mkl-service + intel(r)
- llm
- aimv2
- vLLM
- Mac
- glibcxx
- llama-4
- instruction tuning
- Lora
- ubuntu
- CPT
- PEFT
- Fine-tuning
- backbone
- ViT
Archives
- Today
- Total
꾸준하게
[VS code] Python Debugger가 작동하지 않을 때 (외부코드) 본문
.vscode/launch.json 에서 "justMyCode": false 를 추가해주면 해결이 된다.
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Debug Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"stopOnEntry": true,
"justMyCode": false
},
]
}