-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
GetSummaryDataView() implementation for Pca and Linear Predictors #185
Merged
Merged
Changes from 12 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ec890d6
GetSummaryDataView() implementation for Pca and Linear Predictors
ganik 9394cdd
typo
ganik b508e68
Implement ICanGetSummaryAsIRow instead of ICanGetSummaryAsIDataView o…
ganik e072546
Merge branch 'master' of https://github.com/ganik/machinelearning
ganik ec8200a
Add vector column for top rank eigenvectors
ganik cf37f62
remove unnecessary code
ganik 9943586
remove space
ganik 45cd5f2
fix build
ganik 083645f
no need for slot names
ganik 58d0f31
Merge pull request #1 from dotnet/master
ganik c5c0173
Enable back PCA anomaly tests
ganik 695abc5
fix PCA Anomaly tests baseline
ganik eea9c69
fix unit tests for Release
ganik 637b325
Add PCA azure test data
ganik bdec903
Added entrypoint summpary test for LinearPredictor
ganik b942537
added PCA summary test
ganik 678633c
use using() { } on IDisposable
ganik 3031a4c
remove slot names
ganik b0c2e49
remove not needed datasets
ganik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
test/BaselineOutput/SingleDebug/pcaAnomaly/Default-TrainTest-azureCounterUnlabeled-out.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
maml.exe TrainTest test=%Data%\azure-test-unlabeled.txt tr=pcaAnomaly dout=%Output%\pcaAnomaly\Default-TrainTest-azureCounterUnlabeled.txt loader=Text{sep=space col=Name:TX:0 col=Features:~} data=%Data%\azure-train-unlabeled.txt out=%Output%\pcaAnomaly\Default-TrainTest-azureCounterUnlabeled-model.zip seed=1 xf=Expr{col=Label:Name expr={x : na(float(0))}} | ||
Automatically adding a MinMax normalization transform, use 'norm=Warn' or 'norm=No' to turn this behavior off. | ||
Not training a calibrator because it is not needed. | ||
Warning: Encountered 6590 unlabeled instances during testing. | ||
Detection rate at 10 false positives: NaN | ||
Detection rate at 0.01 false positive rate: NaN | ||
Detection rate at 0 positive predictions: NaN | ||
Threshold @K FP: NaN | ||
Threshold @P FPR: NaN | ||
Threshold @NumPos: NaN | ||
AUC: NaN | ||
|
||
OVERALL RESULTS | ||
--------------------------------------- | ||
AUC: NaN (0.0000) | ||
DR @K FP: NaN (0.0000) | ||
DR @P FPR: NaN (0.0000) | ||
DR @NumPos: NaN (0.0000) | ||
|
||
--------------------------------------- | ||
Physical memory usage(MB): %Number% | ||
Virtual memory usage(MB): %Number% | ||
%DateTime% Time elapsed(s): %Number% | ||
|
4 changes: 4 additions & 0 deletions
4
test/BaselineOutput/SingleDebug/pcaAnomaly/Default-TrainTest-azureCounterUnlabeled-rp.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pcaAnomaly | ||
AUC DR @K FP DR @P FPR DR @NumPos Learner Name Train Dataset Test Dataset Results File Run Time Physical Memory Virtual Memory Command Line Settings | ||
NaN NaN NaN NaN pcaAnomaly %Data%\azure-train-unlabeled.txt %Data%\azure-test-unlabeled.txt %Output%\pcaAnomaly\Default-TrainTest-azureCounterUnlabeled-out.txt 99 0 0 maml.exe TrainTest test=%Data%\azure-test-unlabeled.txt tr=pcaAnomaly dout=%Output%\pcaAnomaly\Default-TrainTest-azureCounterUnlabeled.txt loader=Text{sep=space col=Name:TX:0 col=Features:~} data=%Data%\azure-train-unlabeled.txt out=%Output%\pcaAnomaly\Default-TrainTest-azureCounterUnlabeled-model.zip seed=1 xf=Expr{col=Label:Name expr={x : na(float(0))}} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a unit test for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added