NYU x DSC Datathon Olist Recommender System

1 | Initial Setup 1.1 | Package Installation numpy and pandas for basic data-manipulation sklearn and associated modules to run our machine learning algorithms scipy associated modules (norm) to compute the cosime similarity later on seaborn to output graphs Miscellaneous packages for flow of the notebook ! pip install utils ! pip install scikit-learn import pandas as pd import numpy as np from numpy.linalg import norm import scipy as sc from sklearn....

July 29, 2023