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
- backbone
- CPT
- Text-to-Image
- langchain
- diffusion
- instruct-pt
- continued pre-train (cpt)
- full fine-tuning (fft)
- llm
- cross-document attention
- sfttrainer
- instruction tuning
- instruct pre-training
- Fine-tuning
- ViT
- domain-adapted pre-training
- continued pre-training
- glibcxx
- Lora
- gemma2
- error: mkl-service + intel(r)
- ubuntu
- transformer
- instruction tuning (it)
- lora+
- PEFT
- Mac
- continual pre-training
- llm tuning
- prompt
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
},
]
}