-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.vsh.yaml
More file actions
35 lines (35 loc) · 1.01 KB
/
config.vsh.yaml
File metadata and controls
35 lines (35 loc) · 1.01 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
__merge__: ../../api/comp_method.yaml
name: knnr_py
label: KNNR (Py)
summary: K-nearest neighbor regression in Python.
description: K-nearest neighbor regression in Python.
references:
doi: 10.2307/1403797
info:
documentation_url: https://scikit-learn.org/stable/modules/neighbors.html
repository_url: https://github.com/scikit-learn/scikit-learn
preferred_normalization: log_cp10k
arguments:
- name: "--distance_method"
type: "string"
default: "minkowski"
description: The distance metric to use. Possible values include `euclidean` and `minkowski`.
- name: "--n_pcs"
type: "integer"
default: 50
description: Number of components to use for dimensionality reduction.
- name: "--n_neighbors"
type: "integer"
default: 100
description: Number of neighbors to use.
resources:
- type: python_script
path: script.py
engines:
- type: docker
image: openproblems/base_python:1
runners:
- type: executable
- type: nextflow
directives:
label: [hightime, midmem, midcpu]