Guest User

Untitled

a guest
Sep 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. Algorithm of divisive hierarchical clustering is as follows.
  2. a)
  3. Primarily initiate the process with one cluster containing
  4. all the samples
  5. b)
  6. Select a cluster with the widest diameter as the largest
  7. cluster.
  8. c)
  9. Detect the data point in the cluster found in step b) with
  10. the minimum average similarity to the other elements in
  11. that cluster.
  12. d)
  13. The data sample found in c) is the first element to be
  14. added to the fragment group
  15. e)
  16. Detect the element in the original group which reports
  17. the highest average similarity with the fragment group;
  18. f)
  19. If the average similarity of element detected in e) with
  20. the fragment group is greater than its average similarity
  21. with the original group then assign the data sample to the
  22. fragment group and go to Step e; otherwise do nothing;
  23. g)
  24. Repeat Step b
  25. Step f until each data point is separated
  26. into individual clusters [19].
  27. Complexity of divisive hierarchical clustering algorithm is
  28. O(2n) [17]
Add Comment
Please, Sign In to add comment