-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperator.json
More file actions
34 lines (34 loc) · 1.1 KB
/
operator.json
File metadata and controls
34 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "PaCMAP operator",
"description": "Performs PaCMAP dimensionality reduction on image data",
"tags": ["dimensionality reduction", "machine learning", "visualization"],
"authors": ["tercen"],
"urls": ["https://github.com/tercen/pacmap_operator"],
"container":"ghcr.io/tercen/pacmap_operator:main",
"properties": [
{
"kind": "DoubleProperty",
"name": "n_components",
"defaultValue": 2.0,
"description": "Number of dimensions in the embedding"
},
{
"kind": "DoubleProperty",
"name": "n_neighbors",
"defaultValue": 10.0,
"description": "Number of neighbors for the kNN graph"
},
{
"kind": "DoubleProperty",
"name": "MN_ratio",
"defaultValue": 0.5,
"description": "Ratio of mid-near pairs to be sampled"
},
{
"kind": "DoubleProperty",
"name": "FP_ratio",
"defaultValue": 2.0,
"description": "Ratio of further pairs to be sampled"
}
]
}