Files
LLMs-from-scratch/.devcontainer/devcontainer.json
Rayed Bin Wahed fa7e659eb3 Add devcontainer
2024-02-26 22:29:27 +08:00

20 lines
399 B
JSON

{
"name": "LLMs From Scratch",
"build": {
"context": "..",
"dockerfile": "Dockerfile"
},
"runArgs": ["--runtime=nvidia", "--gpus=all"],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.black-formatter",
"ms-azuretools.vscode-docker",
"ms-toolsai.jupyter",
"esbenp.prettier-vscode"
]
}
}
}