Feature extraction and PCA 3 – Predictions Don’t Grow on Trees, or Do They?
Our goal is to predict whether or not a person gave a 5- or 1-star review based on the words they used in the review. Let’s set a baseline with logistic regression and see how well we can predict this binary category:from sklearn.linear_model import LogisticRegression lr = LogisticRegression()X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=100) […]