Update Clustering Configuration (JSON) authored by Alieh Saeedi's avatar Alieh Saeedi
......@@ -222,19 +222,23 @@ For the preference config, a value of -1 marks the parameter as disabled (false
}
```
### Hierarchical Clustering algorithm
### MSCD Hierarchical Agglomerative Clustering algorithm
```json
{
"clusteringMethod":"RNN_HIERARCHICAL",
"clusteringMethod": "MSCD_RNN_HIERARCHICAL",
"prioritySelection": "MAX",
"isEdgesBiDirected": false,
"clusteringOutputType": "GRAPH",
"maxIteration": "MAX_VALUE",
"linkageType:":"COMPLETE_LINKAGE",
"threshold":0.6
"linkageType": "AVERAGE_LINKAGE",
"threshold": 0.5,
"allSourcesClean": true,
"cleanSources": []
}
```
linkageType can be either `SINGLE_LINKAGE`, `AVERAGE_LINKAGE` or `COMPLETE_LINKAGE`.
In case all sources are duplicate-free (clean), set the `allSourcesClean` to `true`, otherwise set it to `false` and create a comma-separated list of clean sources in `cleanSources`.
## Cluster post processing
This is an overview for all available cluster postprocessing algorithms.
......
......