How to Perform Hierarchical Clustering in Python( Step by Step)

preview_player
Показать описание
This video explains How to Perform Hierarchical Clustering in Python( Step by Step) using Jupyter Notebook. Modules you will learn include: sklearn, numpy, cluster etc

This video explains How to Perform Hierarchical Clustering in Python( Step by Step) using Jupyter Notebook. Modules you will learn include: sklearn, numpy, cluster etc
Рекомендации по теме
Комментарии
Автор

Hi, good idea not to edit the typo part of the video. It serves to illustrate what often happens in real life coding... ;)

TheAnbohan
Автор

can you make a video about divisive clustering and finding divisive coefficient

karangori
Автор

that is not from scratch, or step by step cause is using dendogram as a special function

veritas
Автор

Hi, this video is awesome, I have a question: How to measure the accuracy for Hierarchical Clustering in python?

ayadalbadri
Автор

Nice job!
What if had categorical variable?

saverioguzzo
Автор

Another great video from you. Thank you

josephkarianjahi
Автор

Hi, thank you for sharing this video. It was so helpful, but can you please also explain how to find and show the centroids of the cluster on the scatter plot.

sadraavestan
Автор

i was looking for this. since very long

Aditya_Kumar__pass
Автор

Hey Kindson The Tech Pro, the model accuracy is really low, 0.255.

# standardizing the data:
import sklearn.metrics as sm
from sklearn.preprocessing import StandardScaler
x =

# note this also changes the way the dendrogram looks
dendrogram = sch.dendrogram(sch.linkage(x, method='ward'))

y_hc = hc.fit_predict(x)

# checking for accuracy
sm.accuracy_score(dataset[1], y_hc)

# output: 0.33

When I standardize the data it goes up to 0.33 that's not much of an improvement.
Any idea how to fix this?

elvykamunyokomanunebo
Автор

@kindson the tech pro please share the video on how to find the centroids in hierarchial clustering

amritakaul
Автор

hi kindson can you help me in making cluster for text documents ? how would i upload my own data for this purpose? and aply heirarchicle clustering plus its accuracy and relevance measurements ?

zahrasiraj
Автор

so what is difference b/W K-means method and aglomirative method

SidTheBot
Автор

How optimal number of clusters can be find from dendrogram?

husnamohamed
Автор

Good job. Could you perform Space-Time Hierarchical Clustering in python. This is new algorithm and we want to learn how its code?

merhaday
Автор

Hi, this video is awesome, it really helps me understand the Hierarchical.

vivian
Автор

Keep it up, very informative and clear explanations.

albarrahassan
Автор

what if you have multidimensional data example 40 or to apply clustering for that

omkarshende