Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

Here are some of [dida](https://dida.do/)'s public projects.
* [Handwriting app](https://github.com/dida-do/public/tree/master/handwriting_app)
* [Labeling tool](https://github.com/dida-do/public/tree/master/labelingtool)
* [Labeling tool](https://github.com/dida-do/public/tree/master/labelingtool)
* [Collaborative filtering](https://github.com/dida-do/public/tree/master/collaborative_filtering)
22 changes: 22 additions & 0 deletions collaborative_filtering/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Collaborative filtering

The notebook `collaborative_filtering.ipynb` accompanies the blogpost about collaborative filtering: https://dida.do/blog/collaborative_filtering

You can open it directly in colab:

<a href="https://colab.research.google.com/github/k-mundinger/public/blob/master/collaborative_filtering/collaborative_filtering.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a>

or run it locally by cloning this repository.

I would recommend to create a virtual environment:

`python3 -m venv .venv
source .venv/bin/activate`

and then, with the environment activated

`(venv) pip install -r requirements.txt`

If you are using vanilla jupyter, you may want to make the environment available in jupyter by running

`(venv) ipython kernel install --user --name=some-name`
Loading