-
Notifications
You must be signed in to change notification settings - Fork 10
Manifold sampling #79
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
base: main
Are you sure you want to change the base?
Conversation
|
Hi Vivek, overall, it's looking good! This is a library for comparison-based data. Would it be helpful to provide utility methods in your manifold classes to sample, e.g., triplets directly? What do you think? |
|
Hi David, Yeah, I'll resolve the merge conflicts. I'm not sure I understand what you mean by adding utility functions to the manifold classes. Could you please elaborate? |
|
Yup, I've made the changes! |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #79 +/- ##
==========================================
+ Coverage 92.62% 92.88% +0.26%
==========================================
Files 44 45 +1
Lines 1858 1912 +54
==========================================
+ Hits 1721 1776 +55
+ Misses 137 136 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
|
Sorry, one tiny thing: I just saw, that the abstractmethods are marked "untested". It's fine that they are not tested, but we should remove this mark. Please:
|
|
pushed! any other changes needed? |
Hi,
I've added a method to sample points from a line (datasets/_line.py) embedded in a higher dimensional space in the same way that my previous method LinearSubspace did. I've also added a test script (datasets/tests/test_line.py) to unit test its functionality. The code passes all tests and linting. Please do let me know if I need to make any modifications.
Regards
Vivek