Upload .vscode/settings.json with huggingface_hub
Browse files- .vscode/settings.json +121 -0
.vscode/settings.json
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"python.defaultInterpreterPath": "/home/zeus/miniconda3/envs/cloudspace/bin/python",
|
3 |
+
"jupyter.kernels.filter": [
|
4 |
+
{
|
5 |
+
"path": "/commands/python3",
|
6 |
+
"type": "pythonEnvironment"
|
7 |
+
},
|
8 |
+
{
|
9 |
+
"path": "/commands/python",
|
10 |
+
"type": "pythonEnvironment"
|
11 |
+
},
|
12 |
+
{
|
13 |
+
"path": "/bin/python3.10",
|
14 |
+
"type": "pythonEnvironment"
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"path": "/usr/bin/python3.10",
|
18 |
+
"type": "pythonEnvironment"
|
19 |
+
},
|
20 |
+
{
|
21 |
+
"path": "/bin/python3",
|
22 |
+
"type": "pythonEnvironment"
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"path": "/usr/bin/python3",
|
26 |
+
"type": "pythonEnvironment"
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"path": "/bin/python3.8",
|
30 |
+
"type": "pythonEnvironment"
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"path": "/usr/bin/python3.8",
|
34 |
+
"type": "pythonEnvironment"
|
35 |
+
},
|
36 |
+
{
|
37 |
+
"path": "/home/zeus/miniconda3/bin/python",
|
38 |
+
"type": "pythonEnvironment"
|
39 |
+
}
|
40 |
+
],
|
41 |
+
"jupyter.kernels.excludePythonEnvironments": [
|
42 |
+
"/commands/python3",
|
43 |
+
"/commands/python",
|
44 |
+
"/bin/python3.10",
|
45 |
+
"/usr/bin/python3.10",
|
46 |
+
"/bin/python3",
|
47 |
+
"/usr/bin/python3",
|
48 |
+
"/home/zeus/miniconda3/bin/python"
|
49 |
+
],
|
50 |
+
"workbench.startupEditor": "none",
|
51 |
+
"python.terminal.activateEnvironment": false,
|
52 |
+
"terminal.integrated.drawBoldTextInBrightColors": false,
|
53 |
+
"terminal.integrated.gpuAcceleration": "on",
|
54 |
+
"terminal.integrated.localEchoLatencyThreshold": 0,
|
55 |
+
"terminal.integrated.localEchoEnabled": "off",
|
56 |
+
"terminal.integrated.localEchoStyle": "#000000",
|
57 |
+
"remote.autoForwardPorts": false,
|
58 |
+
"jupyter.notebookFileRoot": "${workspaceFolder}",
|
59 |
+
"terminal.integrated.enableMultiLinePasteWarning": "never",
|
60 |
+
"terminal.integrated.showTerminalConfigPrompt": false,
|
61 |
+
"files.exclude": {
|
62 |
+
"venv": true,
|
63 |
+
"lightning-annotations.json": true,
|
64 |
+
".lightning-app-sync": true,
|
65 |
+
".lighting-app-sync": true,
|
66 |
+
".lightning-app-run": true,
|
67 |
+
"**/*.lightning_upload": true,
|
68 |
+
".ssh*/**": true,
|
69 |
+
".conda*/**": true,
|
70 |
+
".config*/**": true,
|
71 |
+
".npm*/**": true,
|
72 |
+
".nvm*/**": true,
|
73 |
+
".bower*/**": true,
|
74 |
+
".ipython": true,
|
75 |
+
".local*/**": true,
|
76 |
+
".oh-my-zsh*/**": true,
|
77 |
+
"**/.cache/**": true,
|
78 |
+
"miniconda3": true,
|
79 |
+
".condarc": true,
|
80 |
+
".gitconfig": true,
|
81 |
+
".hushlogin": true,
|
82 |
+
".profile": true,
|
83 |
+
".screenrc": true,
|
84 |
+
".sudo_as_admin_successful": true,
|
85 |
+
".zcompdump*": true,
|
86 |
+
".bash_history": true,
|
87 |
+
".bashrc": true,
|
88 |
+
".zsh_history": true,
|
89 |
+
".zshrc": true,
|
90 |
+
".zshenv": true,
|
91 |
+
".zlogin": true,
|
92 |
+
".zprofile": true,
|
93 |
+
".zlogout": true,
|
94 |
+
".python_history": true,
|
95 |
+
".lightningignore": true,
|
96 |
+
".nv": true,
|
97 |
+
".docker": true,
|
98 |
+
".jupyter": true,
|
99 |
+
".lightning": true,
|
100 |
+
".vscode": true,
|
101 |
+
".vscode/**": true,
|
102 |
+
".wget-hsts": true,
|
103 |
+
".vscode-server/**": true,
|
104 |
+
".vscode-server-insiders/**": true,
|
105 |
+
".tmplaigit": true,
|
106 |
+
".viminfo": true,
|
107 |
+
".idea/**": true,
|
108 |
+
".java/**": true,
|
109 |
+
".dotnet/**": true,
|
110 |
+
"**/node_modules/**": true,
|
111 |
+
"**/__pycache__/**": true,
|
112 |
+
"**/.tmp_versions/**": true,
|
113 |
+
"**/.yarn/**": true,
|
114 |
+
"**/__pypackages__/**": true,
|
115 |
+
"**/*_cache": true
|
116 |
+
},
|
117 |
+
"files.associations": {
|
118 |
+
"*.studiorc": "shellscript"
|
119 |
+
},
|
120 |
+
"files.enableTrash": false
|
121 |
+
}
|