lmc-code / .vscode /launch.json
khanhvinh9's picture
Upload folder using huggingface_hub
a20151e verified
Raw
History Blame Contribute Delete
918 Bytes
{
"version": "0.2.0",
"configurations": [
{
"name": "att_matching (cifar10, GPU0)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/imagenet/att_matching.py",
"console": "integratedTerminal",
"python": "/home/khanhvinh9/miniconda3/envs/lmc/bin/python",
"env": {
"CUDA_VISIBLE_DEVICES": "0"
},
"args": [
"--input-size", "32",
"--data-set", "CIFAR10",
"--model-a", "/mnt/d/NCKH/weights/lmc/cifar10/vit-finetune/finetune0.005-learnable-indice0-heads4-shared1-routed0-topk0-mlpFalse-seed20/best_19110",
"--model-b", "/mnt/d/NCKH/weights/lmc/cifar10/vit-finetune/finetune0.005-learnable-indice0-heads4-shared1-routed0-topk0-mlpFalse-seed40/best_16380",
"--data-path", "/mnt/d/NCKH/datasets/cifar10",
"--save-path", "plots/cifar10"
],
"justMyCode": false
}
]
}