Skip to content

WIP: adding a nuget to package the datasets. #1166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions pkg/Microsoft.ML.Datasets/Microsoft.ML.Datasets.nupkgproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Pack">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we'd probably want to use a different nuget package name than Microsoft.ML.Datasets. That seems like it could be a useful package name in the future that we may not want to take here. Maybe adding Test or Sample or some other such word would help users realize that this NuGet package isn't for typical consumption.


<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageDescription>ML.NET additional learners making use of hardware acceleration. They use Intel Mkl.</PackageDescription>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is out of date.

</PropertyGroup>

<ItemGroup>
<Content Include="..\common\CommonPackage.props" Pack="true" PackagePath="build\netstandard2.0\$(MSBuildProjectName).props" />
<Content Include="..\..\test\data\syntheticRegressionTrain.txt" Pack="true" BuildAction="Content" target=".\content\regression\" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[](start = 0, length = 1)

SHOCK

<Content Include="..\..\test\data\syntheticRegressionTest.txt" Pack="true" BuildAction="Content" target=".\content\regression\" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[](start = 0, length = 1)

AND HORROR

Copy link
Member Author

@sfilipi sfilipi Oct 5, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

go on vacation :) #Closed

</ItemGroup>

</Project>
68 changes: 68 additions & 0 deletions test/data/syntheticRegressionTest.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
feature_a, feature_b, target
0, 2, 14
18, 9, 57
34, 2, 82
41, 9, 103
60, 8, 140
73, 5, 163
88, 8, 196
103, 4, 222
115, 2, 244
130, 7, 279
150, 4, 316
161, 9, 343
178, 9, 377
191, 7, 401
208, 6, 434
228, 3, 471
239, 5, 495
254, 7, 527
265, 7, 549
289, 6, 596
301, 5, 619
313, 8, 646
330, 1, 673
343, 8, 706
364, 1, 741
379, 8, 778
388, 5, 793
402, 6, 822
418, 8, 856
435, 3, 885
452, 7, 923
463, 5, 943
475, 4, 966
492, 3, 999
510, 7, 1039
522, 9, 1065
539, 5, 1095
557, 5, 1131
565, 5, 1147
581, 2, 1176
600, 4, 1216
618, 1, 1249
632, 0, 1276
649, 7, 1317
662, 2, 1338
678, 8, 1376
690, 8, 1400
706, 1, 1425
718, 0, 1448
737, 0, 1486
752, 7, 1523
762, 2, 1538
779, 0, 1570
790, 8, 1600
811, 8, 1642
824, 8, 1668
836, 4, 1688
853, 5, 1723
871, 1, 1755
887, 0, 1786
897, 1, 1807
915, 8, 1850
927, 3, 1869
942, 0, 1896
962, 1, 1937
975, 9, 1971
991, 2, 1996
Loading