-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTrainingObjectDetectionYOLOv5.pyproj
More file actions
102 lines (102 loc) · 4.18 KB
/
TrainingObjectDetectionYOLOv5.pyproj
File metadata and controls
102 lines (102 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>2dfda382-189b-45d1-94d5-3004d1aeb73c</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>training_objectdetection_YOLOv5_adapter.py</StartupFile>
<SearchPath>..\..\SDK\Python;bin\windows\python37\venv\Lib\site-packages</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>TrainingObjectDetectionYOLOv5</Name>
<RootNamespace>TrainingObjectDetectionYOLOv5</RootNamespace>
<InterpreterId>MSBuild|venv|$(MSBuildProjectFullPath)</InterpreterId>
<IsWindowsApplication>False</IsWindowsApplication>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
<SuppressPackageInstallationPrompt>True</SuppressPackageInstallationPrompt>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<ItemGroup>
<Compile Include="fiftyone_dataset_creator.py" />
<Compile Include="utils.py" />
<Compile Include="YOLOV5_Trainer.py" />
<Compile Include="training_objectdetection_YOLOv5_adapter.py" />
<Compile Include="training_objectdetection_YOLOv5_adapter_old.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="assets\" />
</ItemGroup>
<ItemGroup>
<Content Include="assets\yolov5l.pt" />
<Content Include="assets\yolov5m.pt" />
<Content Include="assets\yolov5n.pt" />
<Content Include="assets\yolov5s.pt" />
</ItemGroup>
<ItemGroup>
<Content Include="explore.html" />
<Content Include="package.bat" />
<Content Include="install.bat" />
<Content Include="install.sh" />
<Content Include="package.sh" />
</ItemGroup>
<ItemGroup>
<Content Include="modulesettings.macos.json">
<DependentUpon>modulesettings.json</DependentUpon>
</Content>
<Content Include="modulesettings.json">
<DependentUpon>modulesettings.json</DependentUpon>
</Content>
<Content Include="modulesettings.windows.json">
<DependentUpon>modulesettings.json</DependentUpon>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="requirements.cuda11_5.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.txt" />
<Content Include="requirements.cuda.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.cuda11.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.cuda12.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.macos.arm64.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.macos.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
</ItemGroup>
<ItemGroup>
<Interpreter Include="bin\windows\python37\venv\">
<Id>venv</Id>
<Version>3.7</Version>
<Description>venv</Description>
<InterpreterPath>scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X64</Architecture>
</Interpreter>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
<!-- Uncomment the CoreCompile target to enable the Build command in
Visual Studio and specify your pre- and post-build commands in
the BeforeBuild and AfterBuild targets below. -->
<!--<Target Name="CoreCompile" />-->
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
</Project>