gpt-pretrain/.vscode/launch.json

26 lines
768 B
JSON
Raw Normal View History

2023-05-04 21:52:25 +08:00
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
2023-05-14 22:55:01 +08:00
"name": "Python: lit train",
2023-05-04 21:52:25 +08:00
"type": "python",
"request": "launch",
2023-05-14 22:55:01 +08:00
"program": "lit_train.py",
"args": [],
2023-05-04 21:52:25 +08:00
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: generate",
"type": "python",
"request": "launch",
"program": "generate.py",
"args": [],
"console": "integratedTerminal",
"justMyCode": true
}
]
}