Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gorse-io/gorse
Gorse open source recommender system engine
https://github.com/gorse-io/gorse
collaborative-filtering go knn machine-learning recommender-system
Last synced: 21 days ago
JSON representation
Gorse open source recommender system engine
- Host: GitHub
- URL: https://github.com/gorse-io/gorse
- Owner: gorse-io
- License: apache-2.0
- Created: 2018-08-14T11:01:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-15T04:06:46.000Z (7 months ago)
- Last Synced: 2024-04-30T10:24:55.305Z (6 months ago)
- Topics: collaborative-filtering, go, knn, machine-learning, recommender-system
- Language: Go
- Homepage: https://gorse.io
- Size: 10.9 MB
- Stars: 8,126
- Watchers: 64
- Forks: 728
- Open Issues: 88
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-go - gorse - An offline recommender system backend based on collaborative filtering written in Go. (Machine Learning / Search and Analytic Databases)
- awesome - gorse-io/gorse - Gorse open source recommender system engine (Go)
- AiTreasureBox - gorse-io/gorse - 11-02_8576_1](https://img.shields.io/github/stars/gorse-io/gorse.svg)|Gorse open source recommender system engine| (Repos)
- stars - gorse-io/gorse - Gorse open source recommender system engine (Go)
- awesome-go-extra - gorse - 08-14T11:01:09Z|2022-08-25T13:43:07Z| (Machine Learning / Advanced Console UIs)
- awesome-hacking-lists - gorse-io/gorse - Gorse open source recommender system engine (Go)
- my-awesome - gorse-io/gorse - filtering,go,knn,machine-learning,recommender-system pushed_at:2024-10 star:8.6k fork:0.8k Gorse open source recommender system engine (Go)
- awesome-production-machine-learning - Gorse - io/gorse.svg?style=social) - Gorse aims to be a universal open-source recommender system that can be quickly introduced into a wide variety of online services. (Industry Strength RecSys)
README
# Gorse Recommender System Engine
![](https://img.shields.io/github/go-mod/go-version/zhenghaoz/gorse)
[![build](https://github.com/zhenghaoz/gorse/workflows/build/badge.svg)](https://github.com/zhenghaoz/gorse/actions?query=workflow%3Abuild)
[![codecov](https://codecov.io/gh/gorse-io/gorse/branch/master/graph/badge.svg)](https://codecov.io/gh/gorse-io/gorse)
[![Go Report Card](https://goreportcard.com/badge/github.com/zhenghaoz/gorse)](https://goreportcard.com/report/github.com/zhenghaoz/gorse)
[![GoDoc](https://godoc.org/github.com/zhenghaoz/gorse?status.svg)](https://godoc.org/github.com/zhenghaoz/gorse)
[![Discord](https://img.shields.io/discord/830635934210588743)](https://discord.gg/x6gAtNNkAE)
[![Twitter Follow](https://img.shields.io/twitter/follow/gorse_io?label=Follow&style=social)](https://twitter.com/gorse_io)Gorse is an open-source recommendation system written in Go. Gorse aims to be a universal open-source recommender system that can be quickly introduced into a wide variety of online services. By importing items, users, and interaction data into Gorse, the system will automatically train models to generate recommendations for each user. Project features are as follows.
- **Multi-source:** Recommend items from Popular, latest, user-based, item-based and collaborative filtering.
- **AutoML:** Search the best recommendation model automatically in the background.
- **Distributed prediction:** Support horizontal scaling in the recommendation stage after single node training.
- **RESTful APIs:** Expose RESTful APIs for data CRUD and recommendation requests.
- **Online evaluation:** Analyze online recommendation performance from recently inserted feedback.
- **Dashboard:** Provide GUI for data management, system monitoring, and cluster status checking.## Quick Start
The playground mode has been prepared for beginners. Just set up a recommender system for GitHub repositories by the following commands.
- Linux/macOS:
```bash
curl -fsSL https://gorse.io/playground | bash
```- Docker:
```bash
docker run -p 8088:8088 zhenghaoz/gorse-in-one --playground
```The playground mode will download data from [GitRec](https://gitrec.gorse.io/) and import it into Gorse. The dashboard is available at `http://localhost:8088`.
After the "Find neighbors of items" task is completed on the "Tasks" page, try to insert several feedbacks into Gorse. Suppose Bob is a frontend developer who starred several frontend repositories in GitHub. We insert his star feedback to Gorse.
```bash
read -d '' JSON << EOF
[
{ \"FeedbackType\": \"star\", \"UserId\": \"bob\", \"ItemId\": \"vuejs:vue\", \"Timestamp\": \"2022-02-24\" },
{ \"FeedbackType\": \"star\", \"UserId\": \"bob\", \"ItemId\": \"d3:d3\", \"Timestamp\": \"2022-02-25\" },
{ \"FeedbackType\": \"star\", \"UserId\": \"bob\", \"ItemId\": \"dogfalo:materialize\", \"Timestamp\": \"2022-02-26\" },
{ \"FeedbackType\": \"star\", \"UserId\": \"bob\", \"ItemId\": \"mozilla:pdf.js\", \"Timestamp\": \"2022-02-27\" },
{ \"FeedbackType\": \"star\", \"UserId\": \"bob\", \"ItemId\": \"moment:moment\", \"Timestamp\": \"2022-02-28\" }
]
EOFcurl -X POST http://127.0.0.1:8088/api/feedback \
-H 'Content-Type: application/json' \
-d "$JSON"
```Then, fetch 10 recommended items from Gorse. We can find that frontend-related repositories are recommended for Bob.
```bash
curl http://127.0.0.1:8088/api/recommend/bob?n=10
```Example outputs:
```json
[
"mbostock:d3",
"nt1m:material-framework",
"mdbootstrap:vue-bootstrap-with-material-design",
"justice47:f2-vue",
"10clouds:cyclejs-cookie",
"academicpages:academicpages.github.io",
"accenture:alexia",
"addyosmani:tmi",
"1wheel:d3-starterkit",
"acdlite:redux-promise"
]
```> The exact output might be different from the example since the playground dataset changes over time.
For more information:
- Read [official documents](https://gorse.io/docs/master)
- Visit [official demo](https://gitrec.gorse.io/)
- Discuss on [Discord](https://discord.gg/x6gAtNNkAE) or [GitHub Discussion](https://github.com/gorse-io/gorse/discussions)## Architecture
Gorse is a single-node training and distributed prediction recommender system. Gorse stores data in MySQL, MongoDB, or Postgres, with intermediate results cached in Redis, MySQL, MongoDB and Postgres.
1. The cluster consists of a master node, multiple worker nodes, and server nodes.
1. The master node is responsible for model training, non-personalized item recommendation, configuration management, and membership management.
1. The server node is responsible for exposing the RESTful APIs and online real-time recommendations.
1. Worker nodes are responsible for offline recommendations for each user.In addition, the administrator can perform system monitoring, data import and export, and system status checking via the dashboard on the master node.
## Contributors
Any contribution is appreciated: report a bug, give advice or create a pull request. Read [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
## Acknowledgments
`gorse` is inspired by the following projects:
- [Guibing Guo's librec](https://github.com/guoguibing/librec)
- [Nicolas Hug's Surprise](https://github.com/NicolasHug/Surprise)
- [Golang Samples's gopher-vector](https://github.com/golang-samples/gopher-vector)