-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Towards #2522 - RandomizedPcaTrainer documentation #3402
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3402 +/- ##
==========================================
+ Coverage 72.69% 72.74% +0.05%
==========================================
Files 807 807
Lines 145171 145206 +35
Branches 16225 16230 +5
==========================================
+ Hits 105536 105635 +99
+ Misses 35220 35151 -69
- Partials 4415 4420 +5
|
…mn types .md files
|
||
| Output Column Name | Column Type | Description| | ||
| -- | -- | -- | | ||
| `Score` | <xref:System.Single> | The score that was calculated by the anomaly detection model.| |
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.
[](start = 38, length = 1)
if the range is (-inf,+inf) we call them 'unbounded score' to be clear that it's not normalized or anything like that. #Resolved
/// ### Training Algorithm Details | ||
/// This trainer trains an approximate PCA using a randomized method for computing the singular value decomposition (SVD) of | ||
/// the matrix whose rows are the input vectors. | ||
/// The method is described [here](https://web.stanford.edu/group/mmds/slides2010/Martinsson.pdf). |
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.
My wish is that user can see the scoring rule in this document.
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.
I added it, but are you sure this is needed? isn't it too much math?
Duplicate of #3429. Closing for now. |
Adding documentation for Randomized PCA, as specified in #2252.