Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timkaye11/GoRecommend
Collaborative Filtering (CF) Algorithms in Go!
https://github.com/timkaye11/GoRecommend
Last synced: 20 days ago
JSON representation
Collaborative Filtering (CF) Algorithms in Go!
- Host: GitHub
- URL: https://github.com/timkaye11/GoRecommend
- Owner: timkaye11
- License: mit
- Created: 2014-07-16T05:32:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-29T04:49:57.000Z (over 10 years ago)
- Last Synced: 2024-07-31T01:26:35.935Z (4 months ago)
- Language: Go
- Size: 266 KB
- Stars: 204
- Watchers: 11
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Go Recommend
> Recommendation algorithms (Collaborative Filtering) in Go!
![](http://progressed.io/bar/100)
### Background
Collaborative Filtering (CF) is oftentimes used for item recommendations for users, and many libraries exist for other languages (popular implementations include Mahout, Prediction.IO, Apache MLLib ALS etc..). As there are very few machine learning packages out there for [Go](http://www.golang.org), I decided to put together some model based CF algorithms that I thought were interesting.---
### Collaborative Filters inside this package. See each folder for examples/specifications
- Alternating Least Squares (more info [here](http://labs.yahoo.com/files/HuKorenVolinsky-ICDM08.pdf) ) for both the Implicit and Explicit Case
* Tests now complete
* Use the implicit case for a confidence rating; explicit for predicting ratings
- Simple Bayesian Collaborative Filtering Algorithm, see details [here](http://www-stat.wharton.upenn.edu/~edgeorge/Research_papers/Bcollab.pdf)
* Tests complete
- Similarity/Memory-based (using correlation, cosine and jaccard similarity) based CF, which incorporates a nearest neighbor type metric can be found in the CF folder.
* Tests complete
* See README for more details
* Todo: consider approximate nearest neighbors algorithm.*Most* of the recommendation algorithms in this package are briefly outlined in [this article](http://www.hindawi.com/journals/aai/2009/421425/)
---
#### Additional
- If you have any questions/comments, *please* feel free to reach me at tim [dot] kaye [at] lytics [dot] io