-
Notifications
You must be signed in to change notification settings - Fork 30
/
manifest.json
42 lines (42 loc) · 1.28 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
31
32
33
34
35
36
37
38
39
40
41
42
{
"title": "RobustPCA",
"description": "Implementation of https://arxiv.org/pdf/1801.01571.pdf",
"inputDimensionality": "multivariate",
"version": "0.3.0",
"authors": "Randy Paffenroth, Kathleen Kay, Les Servi",
"language": "Python",
"type": "Detector",
"mainFile": "algorithm.py",
"learningType": "semi-supervised",
"trainingStep": {
"parameters": [
{
"name": "max_iter",
"type": "int",
"defaultValue": 1000,
"optional": "true",
"description": "Defines the number of maximum robust PCA iterations for solving matrix decomposition."
},
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "none"
},
"executionStep": {
"parameters": [
{
"name": "random_state",
"type": "int",
"defaultValue": 42,
"optional": "true",
"description": "Seed for random number generation."
}
],
"modelInput": "required"
}
}