File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11.cache /
22build /
33runs /
4+ .vscode /settings.json
5+ .vscode /tasks.json
46* .pt
57* .cache
68* .torchscript
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " YOLOClassifier (Release)" ,
6+ "type" : " cppvsdbg" ,
7+ "request" : " launch" ,
8+ "program" : " ${workspaceFolder}/build/Release/bin/YOLOClassifier.exe" ,
9+ "cwd" : " ${workspaceFolder}/build/Release/bin" ,
10+ "args" : [],
11+ "stopAtEntry" : false ,
12+ "console" : " integratedTerminal" ,
13+ "environment" : [
14+ {
15+ "name" : " PATH" ,
16+ "value" : " ${workspaceFolder}\\ build\\ Release\\ bin;${workspaceFolder}\\ build\\ bin;${env:PATH}"
17+ }
18+ ]
19+ },
20+ {
21+ "name" : " YOLOClassifier (Debug)" ,
22+ "type" : " cppvsdbg" ,
23+ "request" : " launch" ,
24+ "program" : " ${workspaceFolder}/build/Debug/bin/YOLOClassifier.exe" ,
25+ "cwd" : " ${workspaceFolder}/build/Debug/bin" ,
26+ "args" : [],
27+ "stopAtEntry" : false ,
28+ "console" : " integratedTerminal" ,
29+ "environment" : [
30+ {
31+ "name" : " PATH" ,
32+ "value" : " ${workspaceFolder}\\ build\\ Debug\\ bin;${workspaceFolder}\\ build\\ bin;${env:PATH}"
33+ }
34+ ]
35+ }
36+ ]
37+ }
You can’t perform that action at this time.
0 commit comments