File size: 1,433 Bytes
12ccb27 |
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 32 33 34 35 36 37 38 39 40 |
{
"python.defaultInterpreterPath": "/home/jisoo/.conda/envs/vtimellm/bin/python",
"python.terminal.activateEnvironment": true,
"python.condaPath": "/home/jisoo/.conda/bin/conda",
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.extraPaths": [
"${workspaceFolder}",
"${workspaceFolder}/vtimellm",
"${workspaceFolder}/vtimellm/train",
"${workspaceFolder}/vtimellm/model"
],
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoSearchPaths": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.stubPath": "${workspaceFolder}/typings",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": false,
"python.formatting.provider": "black",
"python.sortImports.args": ["--profile", "black"],
"files.associations": {
"*.py": "python"
},
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}:${env:PYTHONPATH}",
"CUDA_VISIBLE_DEVICES": "1",
"TRANSFORMERS_OFFLINE": "1",
"WANDB_PROJECT": "vtimellm"
},
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash",
"args": ["-l"]
}
}
}
|