feat: optimize native Joplin AI embedding pipeline and clustering quality#36
Open
Harsh16gupta wants to merge 1 commit into
Open
feat: optimize native Joplin AI embedding pipeline and clustering quality#36Harsh16gupta wants to merge 1 commit into
Harsh16gupta wants to merge 1 commit into
Conversation
Collaborator
Author
|
Manually tested the pipeline using Joplin's Native AI search API and the cluster quality is now great! The main problem was vector dimension validation: high-dimensional native vectors (768D/1536D) were getting rejected (it took a lot of time to debug because I never expected it to be caused by such a small validation check, so I spent a lot of time experimenting with different clustering parameters). After fixing dynamic dimension validation alongside chunk index sorting and adaptive UMAP scaling, Native AI clustering now forms clean, well-separated categories. |
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.
This PR resolves the core clustering quality and vector space issue that I documented in my last weekly report:
When switching to Joplin's native AI search API (which uses models with 768 or 1536 dimensions), the clustering quality was poor because:
Changes in this pr :
isValidEmbeddingVectornow accepts 768D or 1536D native AI vectors instead of rejecting non-384D vectors.chunkIndex: Sorts native chunks in correct order so title and opening text always get top priority.weightedAverageVectorsWithNorm) so lead paragraphs carry more weight than body boilerplate.rawNorm < 1e-6) to prevent corrupted chunks from creating noise on cluster borders.createAdaptiveConfig).modelIdanddimensionin cache metadata so cached local 384D vectors don't collide with native AI vectors.Verification
npm test).