https://github.com/teamcfe/cfe-recommender
https://github.com/teamcfe/cfe-recommender
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/teamcfe/cfe-recommender
- Owner: teamcfe
- License: mit
- Created: 2022-08-29T16:23:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-29T16:24:58.000Z (almost 4 years ago)
- Last Synced: 2025-02-04T23:29:52.208Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Recommender
Build a recommendation engine using Django & a Machine Learning technique called Collaborative Filtering.
## Getting Started
1. Clone the project and make it your own. Use branch `start` initially so we can all start in the same place.
```bash
git clone https://github.com/codingforentrepreneurs/recommender
cd recommender
git checkout start
rm -rf .git
git init .
git add --all
git commit -m "My recommender project"
```
2. Create virtual environment and activate it.
```bash
python3.8 -m venv venv
source venv/bin/activate
```
Use `.\venv\Scripts\activate` if on windows
3. Install requirements
```
(venv) python -m pip install pip --upgrade
(venv) python -m pip install -r requirements.txt
```
4. Open VSCode
```bash
code .
```
5. Get to work.
## Helpful Guides
- [Using a Cloud-based Redis Server](https://www.codingforentrepreneurs.com/blog/remote-redis-servers-for-development/)
- [Install Redis on Windows](https://www.codingforentrepreneurs.com/blog/redis-on-windows/)
- [Install Redis on macOS](https://www.codingforentrepreneurs.com/blog/install-redis-mac-and-linux)
- [Celery + Redis + Django Setup Guide](https://www.codingforentrepreneurs.com/blog/celery-redis-django/)