Skip to content

Commit bd301b2

Browse files
Folder renamed to fix typo
1 parent bb91600 commit bd301b2

File tree

10 files changed

+17645
-17645
lines changed

10 files changed

+17645
-17645
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27428.2037
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BikeSharingDemand", "BikeSharingDemand\BikeSharingDemand.csproj", "{DD5EBF32-C310-405A-BD8D-507A35F0C204}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|Any CPU = Debug|Any CPU
11-
Release|Any CPU = Release|Any CPU
12-
EndGlobalSection
13-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Release|Any CPU.Build.0 = Release|Any CPU
18-
EndGlobalSection
19-
GlobalSection(SolutionProperties) = preSolution
20-
HideSolutionNode = FALSE
21-
EndGlobalSection
22-
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {98369941-33DD-450C-A410-B9A91C8CDE91}
24-
EndGlobalSection
25-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27428.2037
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BikeSharingDemand", "BikeSharingDemand\BikeSharingDemand.csproj", "{DD5EBF32-C310-405A-BD8D-507A35F0C204}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{DD5EBF32-C310-405A-BD8D-507A35F0C204}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {98369941-33DD-450C-A410-B9A91C8CDE91}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
6-
</PropertyGroup>
7-
8-
<ItemGroup>
9-
<PackageReference Include="Microsoft.ML" Version="$(MicrosoftMLVersion)" />
10-
</ItemGroup>
11-
12-
<ItemGroup>
13-
<Folder Include="Data\" />
14-
</ItemGroup>
15-
16-
<ItemGroup>
17-
<None Update="Data\hour_test.csv">
18-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
19-
</None>
20-
<None Update="Data\hour_train.csv">
21-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
22-
</None>
23-
</ItemGroup>
24-
25-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp2.0</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Microsoft.ML" Version="$(MicrosoftMLVersion)" />
10+
</ItemGroup>
11+
12+
<ItemGroup>
13+
<Folder Include="Data\" />
14+
</ItemGroup>
15+
16+
<ItemGroup>
17+
<None Update="Data\hour_test.csv">
18+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
19+
</None>
20+
<None Update="Data\hour_train.csv">
21+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
22+
</None>
23+
</ItemGroup>
24+
25+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using Microsoft.ML.Runtime.Api;
2-
3-
namespace BikeSharingDemand.BikeSharingDemandData
4-
{
5-
public class BikeSharingDemandPrediction
6-
{
7-
[ColumnName("Score")]
8-
public float PredictedCount;
9-
}
10-
}
1+
using Microsoft.ML.Runtime.Api;
2+
3+
namespace BikeSharingDemand.BikeSharingDemandData
4+
{
5+
public class BikeSharingDemandPrediction
6+
{
7+
[ColumnName("Score")]
8+
public float PredictedCount;
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
using Microsoft.ML.Runtime.Api;
2-
3-
namespace BikeSharingDemand.BikeSharingDemandData
4-
{
5-
public class BikeSharingDemandSample
6-
{
7-
[Column("2")] public float Season;
8-
[Column("3")] public float Year;
9-
[Column("4")] public float Month;
10-
[Column("5")] public float Hour;
11-
[Column("6")] public bool Holiday;
12-
[Column("7")] public float Weekday;
13-
[Column("8")] public float Weather;
14-
[Column("9")] public float Temperature;
15-
[Column("10")] public float NormalizedTemperature;
16-
[Column("11")] public float Humidity;
17-
[Column("12")] public float Windspeed;
18-
[Column("16")] public float Count;
19-
}
20-
}
1+
using Microsoft.ML.Runtime.Api;
2+
3+
namespace BikeSharingDemand.BikeSharingDemandData
4+
{
5+
public class BikeSharingDemandSample
6+
{
7+
[Column("2")] public float Season;
8+
[Column("3")] public float Year;
9+
[Column("4")] public float Month;
10+
[Column("5")] public float Hour;
11+
[Column("6")] public bool Holiday;
12+
[Column("7")] public float Weekday;
13+
[Column("8")] public float Weather;
14+
[Column("9")] public float Temperature;
15+
[Column("10")] public float NormalizedTemperature;
16+
[Column("11")] public float Humidity;
17+
[Column("12")] public float Windspeed;
18+
[Column("16")] public float Count;
19+
}
20+
}

0 commit comments

Comments
 (0)