An open API service indexing awesome lists of open source software.

https://github.com/97k/ml-projects

Scribbling my ml code/projects here
https://github.com/97k/ml-projects

Last synced: over 1 year ago
JSON representation

Scribbling my ml code/projects here

Awesome Lists containing this project

README

          

# ML-projects
Some small Machine Learning weekends Projects!

## Dating Recommendation System
Two most common type of reccomender systems are Content-Based and Collaborative Filetering.
I used a dating site dataset to reccomend profile a user will like based on the wisdom of crowd (Collaborative Filtering)
This recommendation system showcases both Memory based and Model Based Collaborative Filtering recommender systems. To recommend users both user-user and item-item Recommender System are implemented using cosine similarity and SVD.

Link: [See this ipython notebook for more](https://github.com/aditya98ak/ML-projects/blob/master/Dating_Recommendation.ipynb)

## Twitter Sentiment Analysis
This algorithm can determine sentiment of any word/phrase on tweets of twitter. Twitter tweets for particul word as input by user is downloaded by use of tweepy.
Sentiment Analysis is done by implementing textblob library.

Link: [Source Code](https://github.com/aditya98ak/ML-projects/blob/master/sentiment_analysis.py)