Update Clustering Configuration (JSON) authored by Alieh Saeedi's avatar Alieh Saeedi
......@@ -222,6 +222,19 @@ For the preference config, a value of -1 marks the parameter as disabled (false
}
```
### Affinity Propagation algorithm
```json
{
"clusteringMethod":"RNN_HIERARCHICAL",
"prioritySelection":"MAX",
"isEdgesBiDirected":false,
"clusteringOutputType":"GRAPH",
"maxIteration":"MAX_VALUE",
"linkageType:":"COMPLETE_LINKAGE",
"threshold":0.6
}
```
linkageType can be either `SINGLE_LINKAGE`, `AVERAGE_LINKAGE` or `COMPLETE_LINKAGE`.
## Cluster post processing
This is an overview for all available cluster postprocessing algorithms.
......
......