https://github.com/nnfuzzy/github-recom-101
Experimental recommender for github repos within streamlit
https://github.com/nnfuzzy/github-recom-101
Last synced: 30 days ago
JSON representation
Experimental recommender for github repos within streamlit
- Host: GitHub
- URL: https://github.com/nnfuzzy/github-recom-101
- Owner: nnfuzzy
- License: mit
- Created: 2022-07-12T16:10:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-14T05:44:44.000Z (almost 4 years ago)
- Last Synced: 2026-06-04T08:29:14.891Z (about 1 month ago)
- Language: Python
- Size: 10 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Github Recommender 101
An experimental recommender inside of streamlit to keep updated in new developments in terms of my preferences.
## Data
1. Choose and prepare data (via gcp you can access github data related to public projects).
## Recommenders
1. Setup different recommenders
* implict (done)
* LightFm (done)
* tensorflow
* fastai (tricky in terms of implict issues, because it expects ratings and fill 0 value combos will explode the data)
## Streamlit
1. Streamlit is an ideal tool to visualize data-science stuff quickly and using as background for discussion or a low cost prototyping environment.
#### Running
```
DATA_PATH="data/" streamlit run recom_app.py
```
## Dockerfile
1. To use it in proper way you can build your docker image.
2. Github action makes it easy to import the image to AWS ECR for further usage in EC2, Fargate or AppRunner.
#### Running local
```
docker build -t recom101 .
docker run --rm recom101
```
## Possible future
* Adding more algorithms
* Make everything more configurable with the json file
* Make it more generic for different data use cases
## Credits
Public community and ...
* [streamlit](https://github.com/streamlit/streamlit)
* [tensorflow-recommenders](https://github.com/tensorflow/recommenders)
* [loguru](https://github.com/Delgan/loguru)
* [pandas](https://github.com/pandas-dev/pandas)
* [implicit](https://github.com/benfred/implicit)
* [lightfm](https://github.com/lyst/lightfm)
* [lightfm-dataset-helper](https://github.com/Med-ELOMARI/LightFM-Dataset-Helper)
* [polars](https://github.com/pola-rs/polars/)