├── .gitignore ├── README.md ├── bits_count.sql ├── data_preparation_r.R ├── hamming_distance.sql └── python_recommender.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MNoorFawi/recommender-system-in-postgresql-using-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MNoorFawi/recommender-system-in-postgresql-using-python/HEAD/README.md -------------------------------------------------------------------------------- /bits_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MNoorFawi/recommender-system-in-postgresql-using-python/HEAD/bits_count.sql -------------------------------------------------------------------------------- /data_preparation_r.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MNoorFawi/recommender-system-in-postgresql-using-python/HEAD/data_preparation_r.R -------------------------------------------------------------------------------- /hamming_distance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MNoorFawi/recommender-system-in-postgresql-using-python/HEAD/hamming_distance.sql -------------------------------------------------------------------------------- /python_recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MNoorFawi/recommender-system-in-postgresql-using-python/HEAD/python_recommender.py --------------------------------------------------------------------------------