Clustering with K-MEANS - Machine Learning in PHP

Поділитися
Вставка
  • Опубліковано 11 лис 2024

КОМЕНТАРІ • 11

  • @ghomood
    @ghomood Рік тому

    you are just amazing, i hope you continue on this tutorial , we are waiting for new videos, thank you.

    • @amirkamizichannel
      @amirkamizichannel  Рік тому +1

      Thank you very much for your kind words. I'm very happy that you liked it

    • @ghomood
      @ghomood Рік тому

      I loved it, I hope if you add a video about neural network in php-ml

  • @thiagoluna3469
    @thiagoluna3469 Рік тому +1

    Thank you very much! It would be awesome if you had a complete ML-PHP course on Udemy.

    • @amirkamizichannel
      @amirkamizichannel  Рік тому +1

      Thank you I'm glad you liked it. the current playlist is also available on udemy as a free course. If I add more content to the course on udemy I wouldn't be allowed to keep it free.

    • @thiagoluna3469
      @thiagoluna3469 Рік тому +1

      @@amirkamizichannel or you can offer a complete course in your online store. It's hard to find good courses like yours.

    • @amirkamizichannel
      @amirkamizichannel  Рік тому +1

      that's a good idea. thank you

  • @MineCrafterCity
    @MineCrafterCity Рік тому +1

    This only seems to work with numbers and im getting errors when I try with text.

    • @amirkamizichannel
      @amirkamizichannel  Рік тому

      That's a good point. how would you expect a clustering algorithm, cluster the texts? if you would like to find similar words and cluster them together it's actually an interesting topic in NLP where you would convert the words to numbers in different texts and then based on all the texts you could use different algorithms to find similar words. that's how computers can find the synonyms of a phrase or word without actually being taught what's the synonym.
      this is just the tip, there are a lot of topics that you can dive into.

    • @MineCrafterCity
      @MineCrafterCity Рік тому

      @@amirkamizichannel Thanks for your reply. I figured out I could use WordVectorizer but this didn't work as expected. My end goal is to make something to predict the used delimiter of a CSV file.

    • @amirkamizichannel
      @amirkamizichannel  Рік тому

      That's a good application. you can get a good accuracy for that