Skip to content

Ashwanikumarkashyap/k-means-clustering-tweets-from-scratch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

K-Means - Tweets Clustering (from scratch)

The project includes implementation of K-means algorithm (an unsupervised learning algorithm) without using any libraries. The Objective of this project is to cluster the simmilar tweets based on similarity of words within the sentences. At the end of each experiment for different values of k, sum of squared error (SEE) is computed. The algorithm uses Jaccard distance to compute the numerical distances betweeen two tweets "http://en.wikipedia.org/wiki/Jaccard_index". Dynamic programming is also utilizied within the code in order to improve the computational running time of the program.

Sample Output from the twitter dataset

  • Dataset URL : https://archive.ics.uci.edu/ml/datasets/Health+News+in+Twitter

  • K = 3

    • SSE = 3462.671
      • cluster 1: 1511 tweets
      • cluster 2: 809 tweets
      • cluster 3: 1609 tweets
  • K = 5

    • SSE = 335.843
      • cluster 1: 1526 tweets
      • cluster 2: 579 tweets
      • cluster 3: 720 tweets
      • cluster 4: 758 tweets
      • cluster 5: 346 tweets
  • K = 7

    • SSE = 3239.233
      • cluster 1: 605 tweets
      • cluster 2: 452 tweets
      • cluster 3: 675 tweets
      • cluster 4: 536 tweets
      • cluster 5: 762 tweets
      • cluster 6: 510 tweets
      • cluster 7: 389 tweets

Programming Instructions

  • If the system don't have python Installed in it, first install python (version greater than or equal v3.7)

  • The code uses the following python native libraries * random

    • re
    • math
  • In the root directory of the project, execute the given command from command line:

    • "python main.py"
  • Output from a sample run is also stored in a file named "output.txt" for the reference.

Notes :

* The code uses "bbchealth.txt" by default for the tweets data.
	* A user can change the url path to another data file as desired from the given files.

* The code uses, "3 clusters" by default and performs "5 experiments" one after another.
	* Each experiment increases the number of clusters being used from the previous experiment by 1.
	* A user can change the default value of intial clusters (k) and number of experiments to be performed.

* The program returns the value of SSE (sum of squared error) and size of each cluster after every experiment.

* A user can also print tweets in each cluster by uncommenting certain part of code written in the __main__.

About

The program clusters simmilar tweets using KNN algorithm from scratch without libraries utilizing the jaccard distances.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages