Delete .vscode directory

This commit is contained in:
Jingzhe Ma
2024-03-07 21:14:02 +08:00
committed by GitHub
parent c39a1ffd87
commit 144fea5cf5
-81
View File
@@ -1,81 +0,0 @@
// {
// // Use IntelliSense to learn about possible attributes.
// // Hover to view descriptions of existing attributes.
// // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// "version": "0.2.0",
// "configurations": [
// {
// "name": "Python Debugger: Current File",
// "type": "debugpy",
// "request": "launch",
// "program": "${file}",
// "console": "integratedTerminal",
// "args": [
// "--heatmapt_data_path=/data3/gait_heatmap_data/Gait3D/gait3d_sigma_8.0_base/pkl",
// "--silouette_data_path=/data4/Gait3D-sils-64-44-pkl",
// "--output_path=/data3/gait_heatmap_data/Gait3D/heatmap_sil"
// ]
// }
// ]
// }
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "/home/mjz/anaconda3/envs/opengait/lib/python3.8/site-packages/torch/distributed/launch.py",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"CUDA_VISIBLE_DEVICES": "0,1,2,3",
"NCCL_P2P_DISABLE": "1"
},
"args": [
"--nproc_per_node=4",
"--master_port","19999",
"opengait/main.py",
"--cfgs=configs/skeletongait/skeletongait++_Gait3D.yaml",
"--phase=train",
"--log_to_file",
]
}
]
}
// {
// // Use IntelliSense to learn about possible attributes.
// // Hover to view descriptions of existing attributes.
// // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// "version": "0.2.0",
// "configurations": [
// {
// "name": "Python: Current File",
// "type": "python",
// "request": "launch",
// "program": "/home/mjz/anaconda3/envs/opengait/lib/python3.8/site-packages/torch/distributed/launch.py",
// "console": "integratedTerminal",
// "justMyCode": true,
// "env": {
// "CUDA_VISIBLE_DEVICES": "0,1,2,3",
// "NCCL_P2P_DISABLE": "1"
// },
// "args": [
// "--nproc_per_node=4",
// "--master_port","19999",
// "datasets/pretreatment_heatmap.py",
// "--pose_data_path=/home/mjz/Python_workspace/OpenGait/datasets/Gait3D/Gait3D_pose_pkl",
// "--save_root=/home/mjz/skeletongait_release/OpenGait/datasets/Gait3D/heatmap_pkl",
// "--ext_name=base",
// "--dataset_name=gait3d",
// "--heatemap_cfg_path=./configs/skeletongait/pretreatment_heatmap.yaml"
// ]
// }
// ]
// }