[code] update .vscode launch.json

This commit is contained in:
Yiqing-Zhou 2023-05-14 22:55:01 +08:00
parent 6827898339
commit 30df20402d
1 changed files with 3 additions and 5 deletions

8
.vscode/launch.json vendored
View File

@ -5,13 +5,11 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Python: train", "name": "Python: lit train",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"program": "train.py", "program": "lit_train.py",
"args": [ "args": [],
"--dataset_name", "wikitext:wikitext-2-v1",
],
"console": "integratedTerminal", "console": "integratedTerminal",
"justMyCode": true "justMyCode": true
}, },