Closed vnt1537 closed 4 years ago
It gives an error that pandas.Series does not exist and converting it to pd.read_csv() doesn't exactly convert the csv in the dictionary format you wished for!
solution is targets = pd.read_csv('data_csv/jester-v1-train.csv', index_col=0, squeeze=True, header=None,sep = ";").to_dict()
It gives an error that pandas.Series does not exist and converting it to pd.read_csv() doesn't exactly convert the csv in the dictionary format you wished for!