-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathsklearn.json
More file actions
61 lines (61 loc) · 1.72 KB
/
sklearn.json
File metadata and controls
61 lines (61 loc) · 1.72 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"PARAMETERS_SETS": {
"sklearn-ex[cpu] implementations": {
"algorithm": [
{ "library": "sklearn", "device": "cpu" },
{ "library": "sklearnex", "device": "cpu" }
]
},
"sklearn-ex[cpu,gpu] implementations": {
"algorithm": [
{ "library": "sklearn", "device": "cpu" },
{ "library": "sklearnex", "device": ["cpu", "gpu"] }
]
},
"sklearnex spmd implementation": {
"algorithm": {
"library": "sklearnex.spmd",
"device": "gpu",
"estimator_params": { "n_jobs": "[REMOVE]" }
},
"data": {
"format": "dpnp",
"order": "C",
"distributed_split": "rank_based"
},
"bench": {
"distributor": "mpi"
}
},
"spmd default parameters": {
"algorithm": {
"estimator_methods": {
"training": "fit",
"inference": "predict|transform"
}
},
"data": {
"dtype": "float32"
},
"bench": {
"mpi_params": { "n": [1, 2] }
}
},
"cuml implementation": {
"algorithm": { "library": "cuml" },
"data": { "format": "cupy" }
},
"extended data formats": {
"data": [
{
"format": "numpy",
"order": "C"
},
{
"format": "pandas",
"order": "F"
}
]
}
}
}