@elarsaks/umap-wasm 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +349 -0
- package/dist/src/heap.d.ts +12 -0
- package/dist/src/heap.js +226 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +5 -0
- package/dist/src/lib.d.ts +1 -0
- package/dist/src/lib.js +5 -0
- package/dist/src/matrix.d.ts +41 -0
- package/dist/src/matrix.js +360 -0
- package/dist/src/nn_descent.d.ts +17 -0
- package/dist/src/nn_descent.js +204 -0
- package/dist/src/tree.d.ts +16 -0
- package/dist/src/tree.js +320 -0
- package/dist/src/umap.d.ts +102 -0
- package/dist/src/umap.js +842 -0
- package/dist/src/utils.d.ts +16 -0
- package/dist/src/utils.js +137 -0
- package/dist/src/wasmBridge.d.ts +57 -0
- package/dist/src/wasmBridge.js +290 -0
- package/dist/test/matrix.test.d.ts +1 -0
- package/dist/test/matrix.test.js +169 -0
- package/dist/test/nn_descent.test.d.ts +1 -0
- package/dist/test/nn_descent.test.js +58 -0
- package/dist/test/test_data.d.ts +13 -0
- package/dist/test/test_data.js +1054 -0
- package/dist/test/tree.test.d.ts +1 -0
- package/dist/test/tree.test.js +60 -0
- package/dist/test/umap.test.d.ts +1 -0
- package/dist/test/umap.test.js +293 -0
- package/dist/test/utils.test.d.ts +1 -0
- package/dist/test/utils.test.js +128 -0
- package/dist/test/wasmDistance.test.d.ts +1 -0
- package/dist/test/wasmDistance.test.js +124 -0
- package/dist/test/wasmMatrix.test.d.ts +1 -0
- package/dist/test/wasmMatrix.test.js +389 -0
- package/dist/test/wasmTree.test.d.ts +1 -0
- package/dist/test/wasmTree.test.js +212 -0
- package/lib/umap-js.js +8657 -0
- package/lib/umap-js.min.js +1 -0
- package/package.json +58 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
# UMAP-WASM: WebAssembly-Accelerated UMAP for JavaScript
|
|
2
|
+
|
|
3
|
+
[](LICENSE)
|
|
4
|
+
|
|
5
|
+
A high-performance implementation of Uniform Manifold Approximation and Projection (UMAP) for JavaScript environments, featuring selective WebAssembly acceleration for compute-intensive operations.
|
|
6
|
+
|
|
7
|
+
## 📚 Academic Context
|
|
8
|
+
|
|
9
|
+
This project is part of a master's thesis:
|
|
10
|
+
|
|
11
|
+
**Title:** *WebAssembly-Accelerated UMAP for Browser Environments*
|
|
12
|
+
**Author:** Elar Saks
|
|
13
|
+
**Institution:** Tampere University of Applied Sciences (TAMK)
|
|
14
|
+
**Year:** 2026
|
|
15
|
+
|
|
16
|
+
### Research Objectives
|
|
17
|
+
|
|
18
|
+
The thesis investigates hybrid JavaScript/WebAssembly architectures for scientific computing in browsers, specifically:
|
|
19
|
+
|
|
20
|
+
- **Performance Analysis**: Quantifying speedup gains from selective Rust/WASM compilation of hot-path computational kernels
|
|
21
|
+
- **Interoperability Patterns**: Evaluating efficient data marshalling between JavaScript and WebAssembly memory spaces
|
|
22
|
+
- **Practical Implementation**: Maintaining API compatibility while optimizing performance-critical components
|
|
23
|
+
- **Trade-off Analysis**: Assessing development complexity, bundle size, and runtime performance improvements
|
|
24
|
+
|
|
25
|
+
## 🎯 Overview
|
|
26
|
+
|
|
27
|
+
Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction technique used for visualization and general non-linear dimension reduction, offering advantages over t-SNE in speed and preservation of global structure.
|
|
28
|
+
|
|
29
|
+
This implementation builds upon the PAIR-code `umap-js` library with strategic WebAssembly optimizations for:
|
|
30
|
+
- Distance computations (implemented in Rust: `distances.rs`)
|
|
31
|
+
- Nearest neighbour search (random projection trees) (implemented in Rust: `tree.rs`)
|
|
32
|
+
- Matrix operations in optimization loops (implemented in Rust: `matrix.rs`)
|
|
33
|
+
- Nearest‑neighbour graph refinement (NN‑Descent) *(TODO — JS implementation currently used)*
|
|
34
|
+
- Gradient‑descent layout optimisation *(TODO — optimizer currently runs in JS)*
|
|
35
|
+
|
|
36
|
+
### Key Features
|
|
37
|
+
|
|
38
|
+
- **Hybrid Architecture**: JavaScript implementation with optional WASM acceleration for hot paths
|
|
39
|
+
- **API Compatibility**: Drop-in replacement for standard `umap-js` usage patterns
|
|
40
|
+
- **Flexible Execution**: Synchronous, asynchronous, and step-by-step fitting modes
|
|
41
|
+
- **Supervised Learning**: Support for label-based projection
|
|
42
|
+
- **Transform Capability**: Project new points into existing embeddings
|
|
43
|
+
|
|
44
|
+
## 🏆 Attribution & Lineage
|
|
45
|
+
|
|
46
|
+
This project is a research fork that extends the original UMAP implementations:
|
|
47
|
+
|
|
48
|
+
### Upstream JavaScript Implementation
|
|
49
|
+
- **Project**: [umap-js](https://github.com/PAIR-code/umap-js)
|
|
50
|
+
- **Maintainer**: PAIR (People + AI Research) at Google
|
|
51
|
+
- **License**: Apache 2.0
|
|
52
|
+
|
|
53
|
+
### Original UMAP Algorithm
|
|
54
|
+
- **Project**: [umap](https://github.com/lmcinnes/umap)
|
|
55
|
+
- **Authors**: Leland McInnes, John Healy, James Melville
|
|
56
|
+
- **Reference**: McInnes, L., Healy, J., & Melville, J. (2018). UMAP: Uniform Manifold Approximation and Projection for Dimension Reduction. *arXiv preprint arXiv:1802.03426*.
|
|
57
|
+
|
|
58
|
+
**Credit**: The core UMAP algorithm implementation and JavaScript port are the work of the original and upstream authors. This thesis project focuses exclusively on performance optimization through selective WebAssembly compilation.
|
|
59
|
+
|
|
60
|
+
## ⚡ Implementation Notes
|
|
61
|
+
|
|
62
|
+
### Differences from Python UMAP
|
|
63
|
+
|
|
64
|
+
- **Initialization**: Uses random embedding initialization instead of spectral embedding (eigenvalue computations are computationally prohibitive in JavaScript)
|
|
65
|
+
- **Sparse Data**: No specialized sparse data structures (may be addressed in future work)
|
|
66
|
+
- **Angular Distances**: Not currently implemented
|
|
67
|
+
|
|
68
|
+
These differences result in comparable quality for most use cases, with the random initialization performing well on small to medium datasets.
|
|
69
|
+
|
|
70
|
+
## 📦 Installation
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
npm install umap-wasm
|
|
74
|
+
# or
|
|
75
|
+
yarn add umap-wasm
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## 🚀 Usage
|
|
79
|
+
|
|
80
|
+
### Basic Usage (Synchronous)
|
|
81
|
+
|
|
82
|
+
```javascript
|
|
83
|
+
import { UMAP } from 'umap-wasm';
|
|
84
|
+
|
|
85
|
+
const umap = new UMAP({
|
|
86
|
+
nComponents: 2,
|
|
87
|
+
nNeighbors: 15,
|
|
88
|
+
minDist: 0.1
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
const embedding = umap.fit(data);
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Asynchronous Fitting with Progress Tracking
|
|
95
|
+
|
|
96
|
+
```javascript
|
|
97
|
+
import { UMAP } from 'umap-wasm';
|
|
98
|
+
|
|
99
|
+
const umap = new UMAP();
|
|
100
|
+
const embedding = await umap.fitAsync(data, epochNumber => {
|
|
101
|
+
console.log(`Epoch ${epochNumber} complete`);
|
|
102
|
+
// Return false to stop early if needed
|
|
103
|
+
return true;
|
|
104
|
+
});
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Step-by-Step Fitting
|
|
108
|
+
|
|
109
|
+
For fine-grained control over the optimization process:
|
|
110
|
+
|
|
111
|
+
```javascript
|
|
112
|
+
import { UMAP } from 'umap-wasm';
|
|
113
|
+
|
|
114
|
+
const umap = new UMAP();
|
|
115
|
+
const nEpochs = umap.initializeFit(data);
|
|
116
|
+
|
|
117
|
+
for (let i = 0; i < nEpochs; i++) {
|
|
118
|
+
umap.step();
|
|
119
|
+
// Update UI, check convergence, etc.
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
const embedding = umap.getEmbedding();
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Supervised Projection
|
|
126
|
+
|
|
127
|
+
Use label information to guide the embedding:
|
|
128
|
+
|
|
129
|
+
```javascript
|
|
130
|
+
import { UMAP } from 'umap-wasm';
|
|
131
|
+
|
|
132
|
+
const labels = [0, 0, 1, 1, 2, 2]; // Category labels for each data point
|
|
133
|
+
const umap = new UMAP();
|
|
134
|
+
umap.setSupervisedProjection(labels);
|
|
135
|
+
const embedding = umap.fit(data);
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
### Transforming New Points
|
|
139
|
+
|
|
140
|
+
Project additional data points into an existing embedding space:
|
|
141
|
+
|
|
142
|
+
```javascript
|
|
143
|
+
import { UMAP } from 'umap-wasm';
|
|
144
|
+
|
|
145
|
+
const umap = new UMAP();
|
|
146
|
+
const embedding = umap.fit(trainingData);
|
|
147
|
+
|
|
148
|
+
// Transform new points into the same embedding space
|
|
149
|
+
const newEmbedding = umap.transform(newData);
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
## 🔧 Configuration Parameters
|
|
153
|
+
|
|
154
|
+
The UMAP constructor accepts a `UMAPParameters` object with the following options:
|
|
155
|
+
|
|
156
|
+
| Parameter | Type | Default | Description |
|
|
157
|
+
|-----------|------|---------|-------------|
|
|
158
|
+
| `nComponents` | `number` | `2` | Target dimensionality of the embedding |
|
|
159
|
+
| `nNeighbors` | `number` | `15` | Number of nearest neighbors for manifold approximation |
|
|
160
|
+
| `nEpochs` | `number` | *auto* | Number of optimization iterations (computed if not specified) |
|
|
161
|
+
| `minDist` | `number` | `0.1` | Minimum distance between embedded points |
|
|
162
|
+
| `spread` | `number` | `1.0` | Effective scale of embedded points |
|
|
163
|
+
| `random` | `() => number` | `Math.random` | PRNG for reproducibility |
|
|
164
|
+
| `distanceFn` | `DistanceFn` | `euclidean` | Distance metric for input space |
|
|
165
|
+
| `useWasmDistance` | `boolean` | `false` | Whether to use Rust/WASM distance functions when available |
|
|
166
|
+
| `useWasmTree` | `boolean` | `false` | Whether to use Rust/WASM random projection tree construction when available |
|
|
167
|
+
| `useWasmMatrix` | `boolean` | `false` | Whether to use Rust/WASM sparse matrix operations when available |
|
|
168
|
+
|
|
169
|
+
### WASM Components & Status
|
|
170
|
+
|
|
171
|
+
The project exposes configuration flags to selectively enable WASM-accelerated components. The table below maps the high-level operations to the available configuration flags and current implementation status.
|
|
172
|
+
|
|
173
|
+
| Component | Config Flag | Status | Notes |
|
|
174
|
+
|-----------|-------------|--------|-------|
|
|
175
|
+
| Distance computations | `useWasmDistance` | Implemented | WASM provides `euclidean` and `cosine` implementations (via `wasmBridge`). These are implemented in `distances.rs`.
|
|
176
|
+
| Nearest neighbour search (random projection trees) | `useWasmTree` | Implemented | WASM-accelerated random projection tree construction is available and can be enabled with `useWasmTree` (see `tree.rs`).
|
|
177
|
+
| Matrix operations in optimization loops | `useWasmMatrix` | Implemented | Sparse-matrix operations (transpose, element-wise ops, CSR conversion, normalization) are implemented in WASM (see `matrix.rs`).
|
|
178
|
+
| Nearest‑neighbour graph refinement (NN‑Descent) | — | TODO | NN‑Descent (graph refinement / approximate nearest neighbours) currently uses the JS implementation; WASM integration is planned.
|
|
179
|
+
| Gradient‑descent layout optimisation | — | TODO | The optimization loop runs in JS; a WASM-accelerated optimizer is under investigation.
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Example with Custom Parameters
|
|
183
|
+
|
|
184
|
+
```typescript
|
|
185
|
+
import { UMAP } from 'umap-wasm';
|
|
186
|
+
|
|
187
|
+
const umap = new UMAP({
|
|
188
|
+
nComponents: 3, // 3D embedding
|
|
189
|
+
nNeighbors: 30, // Larger neighborhood
|
|
190
|
+
minDist: 0.3, // More spread out
|
|
191
|
+
spread: 2.0, // Wider scale
|
|
192
|
+
nEpochs: 500, // More optimization steps
|
|
193
|
+
random: seedrandom('42') // Reproducible results
|
|
194
|
+
});
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
## 🛠️ Development
|
|
198
|
+
|
|
199
|
+
### Prerequisites
|
|
200
|
+
|
|
201
|
+
- **Node.js** 18+ and **Yarn** 4.12.0
|
|
202
|
+
- **Rust** toolchain with `wasm32-unknown-unknown` target
|
|
203
|
+
- **wasm-pack** for WebAssembly builds
|
|
204
|
+
|
|
205
|
+
### Setup
|
|
206
|
+
|
|
207
|
+
```bash
|
|
208
|
+
# Install dependencies
|
|
209
|
+
yarn install
|
|
210
|
+
|
|
211
|
+
# Install Rust target (if not already installed)
|
|
212
|
+
rustup target add wasm32-unknown-unknown
|
|
213
|
+
|
|
214
|
+
# Install wasm-pack
|
|
215
|
+
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### Build Commands
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
# Build TypeScript and bundle
|
|
222
|
+
yarn build
|
|
223
|
+
|
|
224
|
+
# Build WebAssembly modules (both web and node targets)
|
|
225
|
+
yarn build:wasm
|
|
226
|
+
|
|
227
|
+
# Run tests
|
|
228
|
+
yarn test
|
|
229
|
+
|
|
230
|
+
# Run tests in watch mode
|
|
231
|
+
yarn test:watch
|
|
232
|
+
|
|
233
|
+
# Run tests with UI
|
|
234
|
+
yarn test:ui
|
|
235
|
+
|
|
236
|
+
# Run tests with coverage
|
|
237
|
+
yarn test:coverage
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
### Project Structure
|
|
241
|
+
|
|
242
|
+
```
|
|
243
|
+
umap-wasm/
|
|
244
|
+
├── src/ # TypeScript implementation
|
|
245
|
+
│ ├── umap.ts # Main UMAP class
|
|
246
|
+
│ ├── matrix.ts # Matrix operations
|
|
247
|
+
│ ├── tree.ts # KD-tree for nearest neighbors
|
|
248
|
+
│ └── wasmBridge.ts # WASM interop layer
|
|
249
|
+
├── wasm/ # Rust/WASM implementation
|
|
250
|
+
│ ├── src/ # Rust source code
|
|
251
|
+
│ └── pkg/ # Built WASM artifacts
|
|
252
|
+
│ ├── web/ # Web target (ES modules)
|
|
253
|
+
│ └── node/ # Node target (CommonJS)
|
|
254
|
+
├── test/ # Test suites (Vitest)
|
|
255
|
+
└── lib/ # Output bundles
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
### WebAssembly Development
|
|
259
|
+
|
|
260
|
+
The Rust core is located in the `wasm/` directory. To modify WASM components:
|
|
261
|
+
|
|
262
|
+
```bash
|
|
263
|
+
cd wasm
|
|
264
|
+
cargo build --target wasm32-unknown-unknown
|
|
265
|
+
|
|
266
|
+
# Build for web (ES modules)
|
|
267
|
+
wasm-pack build --target web --out-dir pkg/web
|
|
268
|
+
|
|
269
|
+
# Build for Node.js (CommonJS)
|
|
270
|
+
wasm-pack build --target nodejs --out-dir pkg/node
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
The build artifacts are generated in `wasm/pkg/web/` and `wasm/pkg/node/`. The TypeScript bridge automatically detects the runtime environment and loads the appropriate build.
|
|
274
|
+
|
|
275
|
+
## 🧪 Testing
|
|
276
|
+
|
|
277
|
+
This project uses [Vitest](https://vitest.dev/) for fast unit testing.
|
|
278
|
+
|
|
279
|
+
```bash
|
|
280
|
+
# Run all tests
|
|
281
|
+
yarn test
|
|
282
|
+
|
|
283
|
+
# Run specific test suite
|
|
284
|
+
yarn test matrix.test.ts
|
|
285
|
+
|
|
286
|
+
# Watch mode for development
|
|
287
|
+
yarn test:watch
|
|
288
|
+
|
|
289
|
+
# UI mode (visual test runner)
|
|
290
|
+
yarn test:ui
|
|
291
|
+
|
|
292
|
+
# Generate coverage report
|
|
293
|
+
yarn test:coverage
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
## 📊 Benchmarking
|
|
297
|
+
|
|
298
|
+
Performance benchmarks are available in the companion `umap-bench` repository, which includes:
|
|
299
|
+
|
|
300
|
+
- Comparative analysis (pure JS vs WASM-accelerated)
|
|
301
|
+
- Dataset size scaling tests
|
|
302
|
+
- Browser compatibility tests
|
|
303
|
+
- Memory profiling
|
|
304
|
+
|
|
305
|
+
See [../umap-bench/README.md](../umap-bench/README.md) for details.
|
|
306
|
+
|
|
307
|
+
## 🤝 Contributing
|
|
308
|
+
|
|
309
|
+
This is a thesis research project with specific academic goals. While external contributions are not actively solicited during the research phase, feedback and bug reports are welcome.
|
|
310
|
+
|
|
311
|
+
Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
312
|
+
|
|
313
|
+
## 📄 License
|
|
314
|
+
|
|
315
|
+
Apache License 2.0 - see [LICENSE](LICENSE) for details.
|
|
316
|
+
|
|
317
|
+
This project inherits the Apache 2.0 license from the upstream `umap-js` project.
|
|
318
|
+
|
|
319
|
+
## 📚 References
|
|
320
|
+
|
|
321
|
+
### Academic Publications
|
|
322
|
+
|
|
323
|
+
1. **McInnes, L., Healy, J., & Melville, J.** (2018). UMAP: Uniform Manifold Approximation and Projection for Dimension Reduction. *arXiv preprint arXiv:1802.03426*. [https://arxiv.org/abs/1802.03426](https://arxiv.org/abs/1802.03426)
|
|
324
|
+
|
|
325
|
+
2. **McInnes, L., & Healy, J.** (2017). Accelerated Hierarchical Density Based Clustering. *IEEE International Conference on Data Mining Workshops (ICDMW)*, 33-42.
|
|
326
|
+
|
|
327
|
+
### Related Projects
|
|
328
|
+
|
|
329
|
+
- **umap-js**: [https://github.com/PAIR-code/umap-js](https://github.com/PAIR-code/umap-js)
|
|
330
|
+
- **umap (Python)**: [https://github.com/lmcinnes/umap](https://github.com/lmcinnes/umap)
|
|
331
|
+
- **UMAP Documentation**: [https://umap-learn.readthedocs.io/](https://umap-learn.readthedocs.io/)
|
|
332
|
+
|
|
333
|
+
## 🙏 Acknowledgments
|
|
334
|
+
|
|
335
|
+
- **PAIR team at Google** for the original JavaScript implementation
|
|
336
|
+
- **Leland McInnes** and collaborators for the UMAP algorithm
|
|
337
|
+
- **TAMK** thesis advisors and reviewers
|
|
338
|
+
|
|
339
|
+
## 📧 Contact
|
|
340
|
+
|
|
341
|
+
For thesis-related inquiries or research collaboration:
|
|
342
|
+
|
|
343
|
+
**Elar Saks**
|
|
344
|
+
Master's Thesis Project
|
|
345
|
+
Tampere University of Applied Sciences
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
|
|
349
|
+
*This README is maintained as part of academic research. Last updated: January 2026*
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RandomFn } from './umap';
|
|
2
|
+
export type Heap = number[][][];
|
|
3
|
+
export declare function makeHeap(nPoints: number, size: number): Heap;
|
|
4
|
+
export declare function rejectionSample(nSamples: number, poolSize: number, random: RandomFn): number[];
|
|
5
|
+
export declare function heapPush(heap: Heap, row: number, weight: number, index: number, flag: number): number;
|
|
6
|
+
export declare function uncheckedHeapPush(heap: Heap, row: number, weight: number, index: number, flag: number): number;
|
|
7
|
+
export declare function buildCandidates(currentGraph: Heap, nVertices: number, nNeighbors: number, maxCandidates: number, random: RandomFn): Heap;
|
|
8
|
+
export declare function deheapSort(heap: Heap): {
|
|
9
|
+
indices: number[][];
|
|
10
|
+
weights: number[][];
|
|
11
|
+
};
|
|
12
|
+
export declare function smallestFlagged(heap: Heap, row: number): number;
|