Changes
Page history
Update Clustering Configuration (JSON)
authored
May 13, 2022
by
Alieh Saeedi
Show whitespace changes
Inline
Side-by-side
Home/Configuration/Clustering-Configuration-(JSON).md
View page @
1af848f8
...
...
@@ -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.
...
...
...
...