Solution with projects using Previews plus fix folder path exception

This commit is contained in:
Cesar De la Torre 2019-09-02 14:52:54 -07:00
Родитель 67bb1da5b0
Коммит 5d469c9a66
3 изменённых файлов: 54 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,46 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29009.5
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DatabaseLoader.Solution", "DatabaseLoader.Solution", "{A3FA08DD-A8B7-4B65-9BBB-FE137FFF5098}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ImageClassificationModelTraining.Solution", "ImageClassificationModelTraining.Solution", "{58888D0A-8521-4544-8CB7-A4151630EF77}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DatabaseLoaderConsoleApp", "getting-started\DatabaseLoader\DatabaseLoaderConsoleApp\DatabaseLoaderConsoleApp.csproj", "{5A86174B-C49B-4C16-8CC6-2EA7C770A4F7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageClassification.Predict", "getting-started\DeepLearning_ImageClassification_Training\ImageClassification.Predict\ImageClassification.Predict.csproj", "{73E98D88-1A4F-4328-BCF7-8191AF788586}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageClassification.Train", "getting-started\DeepLearning_ImageClassification_Training\ImageClassification.Train\ImageClassification.Train.csproj", "{5D928947-78DD-412B-8A40-2EB5A72A6144}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5A86174B-C49B-4C16-8CC6-2EA7C770A4F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A86174B-C49B-4C16-8CC6-2EA7C770A4F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A86174B-C49B-4C16-8CC6-2EA7C770A4F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A86174B-C49B-4C16-8CC6-2EA7C770A4F7}.Release|Any CPU.Build.0 = Release|Any CPU
{73E98D88-1A4F-4328-BCF7-8191AF788586}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{73E98D88-1A4F-4328-BCF7-8191AF788586}.Debug|Any CPU.Build.0 = Debug|Any CPU
{73E98D88-1A4F-4328-BCF7-8191AF788586}.Release|Any CPU.ActiveCfg = Release|Any CPU
{73E98D88-1A4F-4328-BCF7-8191AF788586}.Release|Any CPU.Build.0 = Release|Any CPU
{5D928947-78DD-412B-8A40-2EB5A72A6144}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D928947-78DD-412B-8A40-2EB5A72A6144}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D928947-78DD-412B-8A40-2EB5A72A6144}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D928947-78DD-412B-8A40-2EB5A72A6144}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{5A86174B-C49B-4C16-8CC6-2EA7C770A4F7} = {A3FA08DD-A8B7-4B65-9BBB-FE137FFF5098}
{73E98D88-1A4F-4328-BCF7-8191AF788586} = {58888D0A-8521-4544-8CB7-A4151630EF77}
{5D928947-78DD-412B-8A40-2EB5A72A6144} = {58888D0A-8521-4544-8CB7-A4151630EF77}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {98369941-33DD-450C-A410-B9A91C8CDE91}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -9,7 +9,6 @@
<ItemGroup>
<Folder Include="assets\inputs\images\" />
<Folder Include="assets\outputs\" />
</ItemGroup>
<ItemGroup>
@ -530,6 +529,9 @@
<None Update="assets\inputs\images\dandelion\98992760_53ed1d26a9.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="assets\inputs\images\README.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="assets\inputs\images\roses\102501987_3cdb8e5394_n.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
@ -890,6 +892,9 @@
<None Update="assets\inputs\images\tulips\65347450_53658c63bd_n.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="assets\outputs\README.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>

Просмотреть файл

@ -0,0 +1,2 @@
The new trained ML.NET model will be generated and saved in this folder.