Skip to content
Snippets Groups Projects
Commit df097e2b authored by Alexander David Hellwig's avatar Alexander David Hellwig
Browse files

Added example for dynamic parameters

parent 1ad60862
No related branches found
No related tags found
1 merge request!34Ml clustering
Pipeline #105009 failed
...@@ -110,6 +110,22 @@ Clustering Parameters: ...@@ -110,6 +110,22 @@ Clustering Parameters:
There are 4 different Clustering Algorithms with distinct parameters There are 4 different Clustering Algorithms with distinct parameters
Every parameter of the clustering algorithms can be dynamic, enabling automatic search for the best values. Available are lists and generators as seen in the example below:
```json
"sigma":[1,2,3]
"sigma":{
"min":1,
"max":3,
"step":1
}
"sigma":{
"min":1,
"max":3,
"count":3
}
```
Also see [clusterDynamic.json](src/test/resources/config/parameterTest/clusterDynamic.json) and [clusterDynamicList.json](src/test/resources/config/parameterTest/clusterDynamicList.json)
Spectral Clustering: Spectral Clustering:
| Name | Type | Required | Description | | Name | Type | Required | Description |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment