SncOptions
Defined in: passes/snc.ts:16
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
alpha? | number | Smoothing in 1 / (similarity + alpha). Default 0.1. | passes/snc.ts:22 |
iterations? | number | Random-walk rounds per measure. More narrows the spread. Default 150. | passes/snc.ts:18 |
k? | number | Neighbours for the k-NN and SNN graphs. Default floor(sqrt(N)). | passes/snc.ts:24 |
local? | boolean | Accumulate per-point contributions. Costs memory; off by default. | passes/snc.ts:28 |
maxPoints? | number | Refuse above this many points: the SNN matrices are N x N. Default 6000. | passes/snc.ts:30 |
seed? | number | Seed, so a run is reproducible. Default 1212 (DruidJS’s convention). | passes/snc.ts:26 |
signal? | AbortSignal | - | passes/snc.ts:31 |
walkRatio? | number | Walk length as a fraction of N. Default 0.3. | passes/snc.ts:20 |