-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Use inline training data in generated Console Project file. #4907
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
Use inline training data in generated Console Project file. #4907
Conversation
@@ -18,6 +18,7 @@ internal class MatrixFactorizationExtension : ITrainerExtension | |||
options.LabelColumnName = columnInfo.LabelColumnName; | |||
options.MatrixColumnIndexColumnName = columnInfo.UserIdColumnName; | |||
options.MatrixRowIndexColumnName = columnInfo.ItemIdColumnName; | |||
options.Quiet = true; |
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.
This is for quite the verbose output from MatrixFactorization trainer
INT = 2, | ||
DOUBLE = 1.2, | ||
FLOAT = 1.223E+10F, | ||
TrickySTR = "ab\"\';@#$%^&-++==", |
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.
Some others to test:
Single.NaN
Single.PositiveInfinity
- "" (empty string)
- 1 (as boolean)
- "T" (as boolean)
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.
Resolved
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.
Thanks!
Code Sample
Fix issue