Model Pipeline - TF-IDF (TfidfVectorizer)
This pipeline converts text documents into numbers that show how important each word is in the document compared to all documents. It uses TF-IDF, which stands for Term Frequency-Inverse Document Frequency.
This pipeline converts text documents into numbers that show how important each word is in the document compared to all documents. It uses TF-IDF, which stands for Term Frequency-Inverse Document Frequency.
TF-IDF vectorizer computes scores in one step, so no loss curve.
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | N/A | N/A | TF-IDF vectorizer does not train with epochs; it computes scores directly. |