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
155 changes: 155 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@

# Created by https://www.gitignore.io/api/python,windows,jupyternotebooks
# Edit at https://www.gitignore.io/?templates=python,windows,jupyternotebooks

### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/

.ipynb_checkpoints
*/.ipynb_checkpoints/*

# IPython
profile_default/
ipython_config.py

# Remove previous ipynb_checkpoints
# git rm -r .ipynb_checkpoints/

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# My files
Recommender example.ipynb
datasets/correlation_matrix/book_distance.csv


# End of https://www.gitignore.io/api/python,windows,jupyternotebooks
4,529 changes: 4,529 additions & 0 deletions An approach to book recommendations.ipynb

Large diffs are not rendered by default.

104 changes: 0 additions & 104 deletions Kick-Off.md

This file was deleted.

43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<img src="https://bit.ly/2VnXWr2" alt="Ironhack Logo" width="100"/>

# To read, not to read... what to read?
*[Minerva Liste Calleja]*

*[DAFT, Ironhack - Mar'20]*

## Content
- [Project Description](#project-description)
- [Dataset](#dataset)
- [Links](#links)

## Project Description

The project aims to explore different approaches currently used to build recommender systems. In a world where the amount of options available is increasingly growing (no matter if we are talking about clothes, films or restaurants), being able to provide curated selections is more and more important every day. My goal is to understand the possibilities currently available and create some models that help me grasp how these existing possibilities work and how they can be improved.

Though the project is based on the recommendation of books, other types of products could also be considered.


## Dataset

The dataset used in this project is the goodbooks-10k:

@article{goodbooks2017,
author = {Zajac, Zygmunt},
title = {Goodbooks-10k: a new dataset for book recommendations},
year = {2017},
publisher = {FastML},
journal = {FastML},
howpublished = {\url{http://fastml.com/goodbooks-10k}},
}



## Links

The complete analysis and the code for the book recommender system can be found in [this link](https://github.com/minervaliste/Project-Week-8-Final-Project/blob/master/An%20approach%20to%20book%20recommendations.ipynb)

Moreover, full access to the dataset and the working code is provided through [my Github repository](https://github.com/minervaliste/Project-Week-8-Final-Project)

This project was developed during the Data Analytics Full Time Bootcamp at Ironhack Barcelona (Jan-Mar 2020). The slides of the project presentation can be seen [here](http://bit.ly/book_recommender)


Loading