Skip to content

Code generate TextLoader API and enhance it with convenience API. #142

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

Merged
merged 24 commits into from
May 22, 2018
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3b88d2f
Code generated loader API and install it at the backend pipeline load…
codemzs May 6, 2018
f46f36a
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 6, 2018
c0ff881
Update baselines and add checks for invalid loader arguments.
codemzs May 6, 2018
6d5f351
Revert test metric changes and change test file for evaluation to be …
codemzs May 6, 2018
51d5658
cleanup.
codemzs May 7, 2018
24495fb
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 7, 2018
628cd1d
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 14, 2018
c5dd614
resolve conflits from upstream/master merge.
codemzs May 14, 2018
a61d244
Feedback from PR#38
codemzs May 14, 2018
847f3f1
PR feedback.
codemzs May 14, 2018
9a6b97c
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 15, 2018
5f153fb
PR feedback.
codemzs May 15, 2018
3b57ae6
PR feedback.
codemzs May 16, 2018
4119b43
PR feedback.
codemzs May 16, 2018
755eb34
PR feedback.
codemzs May 16, 2018
743fa6f
PR feedback.
codemzs May 17, 2018
b5c4fcb
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 17, 2018
bb1afd4
PR feedback.
codemzs May 17, 2018
596079f
PR feedback.
codemzs May 17, 2018
b1d44b3
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 18, 2018
6233b76
PR feedback.
codemzs May 18, 2018
a6805c9
PR feedback.
codemzs May 19, 2018
ca98fc5
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs May 22, 2018
78e89c3
PR feedback.
codemzs May 22, 2018
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
Prev Previous commit
Next Next commit
PR feedback.
  • Loading branch information
codemzs committed May 17, 2018
commit bb1afd461b7e1369840a7866bdeba54467907e70
2 changes: 2 additions & 0 deletions test/Microsoft.ML.Core.Tests/UnitTests/TestEntryPoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2708,7 +2708,9 @@ public void EntryPointTreeLeafFeaturizer()
{
var dataPath = GetDataPath(@"adult.tiny.with-schema.txt");
var inputFile = new SimpleFileHandle(Env, dataPath, false, false);
#pragma warning disable 0618
var dataView = ImportTextData.ImportText(Env, new ImportTextData.Input { InputFile = inputFile }).Data;
#pragma warning restore 0618
var cat = Categorical.CatTransformDict(Env, new CategoricalTransform.Arguments()
{
Data = dataView,
Expand Down