Skip to content
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

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

Merged
merged 24 commits into from
May 22, 2018
Merged
Show file tree
Hide file tree
Changes from 22 commits
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
3 changes: 2 additions & 1 deletion ZBaselines/Common/EntryPoints/core_ep-list.tsv
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Data.CustomTextLoader Import a dataset from a text file Microsoft.ML.Runtime.EntryPoints.ImportTextData ImportText Microsoft.ML.Runtime.EntryPoints.ImportTextData+Input Microsoft.ML.Runtime.EntryPoints.ImportTextData+Output
Data.DataViewReference Pass dataview from memory to experiment Microsoft.ML.Runtime.EntryPoints.DataViewReference ImportData Microsoft.ML.Runtime.EntryPoints.DataViewReference+Input Microsoft.ML.Runtime.EntryPoints.DataViewReference+Output
Data.IDataViewArrayConverter Create and array variable Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro MakeArray Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro+ArrayIDataViewInput Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro+ArrayIDataViewOutput
Data.PredictorModelArrayConverter Create and array variable Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro MakeArray Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro+ArrayIPredictorModelInput Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro+ArrayIPredictorModelOutput
Data.TextLoader Import a dataset from a text file Microsoft.ML.Runtime.EntryPoints.ImportTextData ImportText Microsoft.ML.Runtime.EntryPoints.ImportTextData+Input Microsoft.ML.Runtime.EntryPoints.ImportTextData+Output
Data.TextLoader Import a dataset from a text file Microsoft.ML.Runtime.EntryPoints.ImportTextData TextLoader Microsoft.ML.Runtime.EntryPoints.ImportTextData+LoaderInput Microsoft.ML.Runtime.EntryPoints.ImportTextData+Output
Models.AnomalyDetectionEvaluator Evaluates an anomaly detection scored dataset. Microsoft.ML.Runtime.Data.Evaluate AnomalyDetection Microsoft.ML.Runtime.Data.AnomalyDetectionMamlEvaluator+Arguments Microsoft.ML.Runtime.EntryPoints.CommonOutputs+CommonEvaluateOutput
Models.BinaryClassificationEvaluator Evaluates a binary classification scored dataset. Microsoft.ML.Runtime.Data.Evaluate Binary Microsoft.ML.Runtime.Data.BinaryClassifierMamlEvaluator+Arguments Microsoft.ML.Runtime.EntryPoints.CommonOutputs+ClassificationEvaluateOutput
Models.BinaryCrossValidator Cross validation for binary classification Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro CrossValidateBinary Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro+Arguments Microsoft.ML.Runtime.EntryPoints.CommonOutputs+MacroOutput`1[Microsoft.ML.Runtime.EntryPoints.CrossValidationBinaryMacro+Output]
Expand Down
Loading