ansgar-t
Results
1
issues of
ansgar-t
Depending on the random train/test split this code can give a key error: ``` for i in X_test_features: predicted_values.append(joint_prob[i[0], i[1]].idxmax()) ``` Here's a possible alternative: ``` for i in X_test_features:...