Emotion Classification 12

PHOTO EMBED

Sat Apr 22 2023 20:16:36 GMT+0000 (Coordinated Universal Time)

Saved by @kentrickfelix #python

# Vectorize your test data
X_test_vec_lbl = tfidf.transform(test_lbl["content"])
# Size of X_test_vec_lbl and y_test_lbl
print(X_test_vec_lbl.shape)
print(y_test_lbl.shape)
content_copyCOPY