| { | |
| "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"] | |
| } | |
| } | |
| } | |