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

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

ความคิดเห็น •

  • @linda_erose
    @linda_erose 5 หลายเดือนก่อน +1

    exactly what i was looking for

    • @KindsonTheTechPro
      @KindsonTheTechPro  5 หลายเดือนก่อน

      Good you found this! Do remember to subscribe to my channel for more like this 😄

  • @josephkarianjahi1467
    @josephkarianjahi1467 4 ปีที่แล้ว +2

    Another great video from you. Thank you

  • @Aditya_Kumar_12_pass
    @Aditya_Kumar_12_pass 4 ปีที่แล้ว +1

    i was looking for this. since very long

  • @karangori7897
    @karangori7897 4 ปีที่แล้ว +3

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

  • @ayadalbadri4100
    @ayadalbadri4100 2 ปีที่แล้ว +1

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

  • @TheAnbohan
    @TheAnbohan 3 ปีที่แล้ว +5

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

  • @saverioguzzo6144
    @saverioguzzo6144 4 ปีที่แล้ว +2

    Nice job!
    What if had categorical variable?

  • @vivian60635
    @vivian60635 4 ปีที่แล้ว

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

  • @amritakaul87
    @amritakaul87 2 ปีที่แล้ว

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

  • @sadraavestan5344
    @sadraavestan5344 4 ปีที่แล้ว +2

    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.

    • @KindsonTheTechPro
      @KindsonTheTechPro  4 ปีที่แล้ว

      Yes, sure. Remember to subscribe to get notified.

    • @sadraavestan5344
      @sadraavestan5344 4 ปีที่แล้ว

      @@KindsonTheTechPro thank you. I found how to do that

    • @amritakaul87
      @amritakaul87 2 ปีที่แล้ว

      Hi, can you please share the solution of how to find the centroids in hierarchical clustering ? Thanks in advance

  • @albarrahassan2354
    @albarrahassan2354 4 ปีที่แล้ว

    Keep it up, very informative and clear explanations.

  • @elvykamunyokomanunebo1441
    @elvykamunyokomanunebo1441 2 ปีที่แล้ว

    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 = StandardScaler().fit_transform(points)
    # 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?

  • @Ankurkumar14680
    @Ankurkumar14680 5 ปีที่แล้ว +1

    Very good amazing video

  • @zahrasiraj106
    @zahrasiraj106 3 ปีที่แล้ว

    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 ?

  • @himalayasinghsheoran1255
    @himalayasinghsheoran1255 4 ปีที่แล้ว

    Great video.

  • @Mhtt3463
    @Mhtt3463 4 ปีที่แล้ว

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

  • @brianadams2862
    @brianadams2862 5 ปีที่แล้ว +2

    nice job champ

  • @SidTheBot
    @SidTheBot 4 ปีที่แล้ว

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

  • @husnamohamed
    @husnamohamed 4 ปีที่แล้ว

    How optimal number of clusters can be find from dendrogram?

  • @oddnumber8149
    @oddnumber8149 5 ปีที่แล้ว

    do y have a link with the code ?

  • @omkarshende6217
    @omkarshende6217 4 ปีที่แล้ว +1

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

  • @pranitpokhrel470
    @pranitpokhrel470 4 ปีที่แล้ว

    Amazing

  • @shimulpasha7285
    @shimulpasha7285 3 ปีที่แล้ว +1

    Can I get the code link??

    • @KindsonTheTechPro
      @KindsonTheTechPro  3 ปีที่แล้ว

      Sure! Please find the codes here in my github repo github.com/KindsonTheGenius/hierarchical-clustering-python

  • @veritas2162
    @veritas2162 ปีที่แล้ว

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

  • @olfadaikhi2969
    @olfadaikhi2969 2 ปีที่แล้ว

    Bonsoir

  • @settishivamahalakshmi5473
    @settishivamahalakshmi5473 2 ปีที่แล้ว

    Agglomerative is not defined