Bump bhtsne from 0.5.4 to 0.7 in linfa-tsne#446
Closed
LucaCappelletti94 wants to merge 1 commit into
Closed
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #446 +/- ##
==========================================
+ Coverage 77.53% 77.87% +0.33%
==========================================
Files 106 104 -2
Lines 7585 7538 -47
==========================================
- Hits 5881 5870 -11
+ Misses 1704 1668 -36 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Contributor
Author
|
Closing as I did not realize you had pinned 1.87. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bumps
bhtsnefrom0.5.4to0.7inlinfa-tsne. The0.6release switched the embedding dimensionality from a builder parameter to a const generictSNE<T, U, const D: usize>, so the wrapper now dispatches at runtime overD = 1, 2, 3for exact t-SNE andD = 2, 3for Barnes-Hut (theMorton<D>bound limits Barnes-Hut to those dimensions).bhtsne 0.7 is considerably faster: the optimization loop is parallelized (roughly 4x per epoch at 2k points, scaling with N), the Barnes-Hut tree is now a Morton linear quadtree in a single contiguous arena (repulsive pass 2–3.6x faster, peak memory down by about a third), and there is an FFT-accelerated FIt-SNE fitting path available for future use. All existing tests pass.