I have a project that I am working on that involves building a recommender system using movie ratings data. I am look for someone to help me with this and that HAS experience with machine learning and data mining techniques in Python using K nearest neighbor functions, clustering, collaborative filtering, etc. I believe numpy, scikit learn, and sklearn will be used here...a couple others will be used too. I have a lot of sample code that can be used for this and I believe I have all the resources necessary to complete it but low on time and understanding. If you can include similar work with your bid to prove that you have done something like this before, it will be helpful when picking out bids. It's hard just to take someones word for it since this is a specific assignment and not just regular python coding.
1. I want this to be coded using iPython Notebook.
2. This system will import a set of ratings from the data set provided below. Split the data set in order to have training data and test data, i think the moveilens data is already split up into groups so i guess it might not need to be split up. I don't need to use any demographic data. I just need to focus on ratings for movies. Here is the Data I need to use: MovieLens Ratings
3. From here I want to train the system with the training data and then import the test data and predict ratings based on the test data. Then compare the test ratings with the predictions and do some analysis on that. The data may need to be cleaned up, not sure.
3. Predictions can be done with K Nearest Neighbors or if you have a better suggestion...KNN Code provided here in iPython Format: KNN.ipynb It uses a module included here: kNN.py and using this file: video_store_2.csv In the KNN example earlier it states the user picked this, the prediction says this kind of thing...
4. Recommender system article recommender-systems-eml2010.pdf
5. I also have an item based recommender system code provided here: itemBasedRec.py Some of the code is missing but it may be useful. This code can be useful too and also applies to filling in the blanks of the itemBasedRec.py code but it may or may not help with this project. Matrix Factorization.ipynb