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