-
Notifications
You must be signed in to change notification settings - Fork 32
/
manifest.json
30 lines (30 loc) · 1.09 KB
/
manifest.json
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
{
"title": "COF",
"description": "Implementation of https://doi.org/10.1007/3-540-47887-6_53.",
"inputDimensionality": "multivariate",
"version": "0.3.1",
"authors": "Jian Tang, Zhixiang Chen, Ada Wai-chee Fu, David W. Cheung",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "unsupervised",
"executionStep": {
"parameters": [
{
"name": "n_neighbors",
"type": "int",
"defaultValue": 20,
"optional": "true",
"description": "Number of neighbors to use by default for k neighbors queries. Note that n_neighbors should be less than the number of samples. If n_neighbors is larger than the number of samples provided, all samples will be used."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
}
}