-
Notifications
You must be signed in to change notification settings - Fork 1.9k
GetSummaryDataView() implementation for Pca and Linear Predictors #185
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
Changes from all 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 hidden or 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 hidden or 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 hidden or 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,8 @@ | ||
#@ TextLoader{ | ||
#@ header+ | ||
#@ sep=tab | ||
#@ col=Bias:R4:0 | ||
#@ col=Weights:R4:1-9 | ||
#@ } | ||
Bias thickness uniform_size uniform_shape adhesion epit_size bare_nuclei bland_chromatin normal_nucleoli mitoses | ||
-6.186806 2.65800762 1.68089855 1.944068 1.42514718 0.8536965 2.9325006 1.74816787 1.58165014 0.595681 |
This file contains hidden or 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,10 @@ | ||
#@ TextLoader{ | ||
#@ header+ | ||
#@ sep=tab | ||
#@ col={name={Count of training examples} type=I8 src=0} | ||
#@ col={name={Residual Deviance} type=R4 src=1} | ||
#@ col={name={Null Deviance} type=R4 src=2} | ||
#@ col=AIC:R4:3 | ||
#@ } | ||
Count of training examples Residual Deviance Null Deviance AIC | ||
683 119.098892 884.3502 159.098892 |
This file contains hidden or 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,10 @@ | ||
#@ TextLoader{ | ||
#@ header+ | ||
#@ sep=tab | ||
#@ col=Bias:R4:0 | ||
#@ col=Weights:R4:1-9 | ||
#@ col=ClassNames:TX:10 | ||
#@ } | ||
Bias thickness uniform_size uniform_shape adhesion epit_size bare_nuclei bland_chromatin normal_nucleoli mitoses ClassNames | ||
3.36404228 -1.579712 -0.8266232 -1.051891 -0.79305464 -0.386733949 -1.59106934 -1.01550019 -0.8356989 -0.332574666 Class_0 | ||
-3.36404562 1.57971311 0.826623559 1.051891 0.7930542 0.386735022 1.59107041 1.015499 0.8356983 0.332574 Class_1 |
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