-
Notifications
You must be signed in to change notification settings - Fork 1.9k
introduce IUnsupervisedLearningWithWeights #236
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
introduce IUnsupervisedLearningWithWeights #236
Conversation
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 @Ivanidzo4ka ! You think a test to check this, sort of like how @yaeldekel added a use-case for weights, might be appropriate?
…weight column. also extract real weight value from cursor.
@@ -1918,7 +1918,7 @@ public void EntryPointTrainTestMacroNoTransformInput() | |||
[Fact] | |||
public void EntryPointKMeans() | |||
{ | |||
TestEntryPointRoutine("Train-Tiny-28x28.txt", "Trainers.KMeansPlusPlusClusterer"); | |||
TestEntryPointRoutine("Train-Tiny-28x28.txt", "Trainers.KMeansPlusPlusClusterer", "col=Weight:R4:0 col=Features:R4:1-784", ",'InitAlgorithm':'KMeansPlusPlus'"); |
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.
Is there a test without a Weight column?
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.
In internal repo
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.
Should we move the test to the public repo, or keep it in the internal?
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.
We moving/enabling baseline tests in separate PRs.
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.
* introduce IUnsupervisedLearningWithWeights * add test to check KMeans don't need label and can handle presence of weight column. also extract real weight value from cursor.
address #225