This commit is contained in:
Dobromir Popov 2025-02-02 00:40:24 +02:00
parent b48b8fd039
commit cd76d003eb

15
crypto/brian/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Debug NN Training",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/index.py",
"console": "integratedTerminal",
"env": {
"PYTHONASYNCIODEBUG": "1"
}
}
]
}