community-datasets/id_clickbait
Updated • 124
How to use intanm/clickbait-classifier-20230408-002 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="intanm/clickbait-classifier-20230408-002") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("intanm/clickbait-classifier-20230408-002")
model = AutoModelForSequenceClassification.from_pretrained("intanm/clickbait-classifier-20230408-002")This model is a fine-tuned version of bert-base-multilingual-cased on the id_clickbait dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 0.51 | 1.0 | 675 | 0.4566 | 0.7792 |
| 0.419 | 2.0 | 1350 | 0.4388 | 0.7908 |
| 0.2972 | 3.0 | 2025 | 0.5607 | 0.8017 |
| 0.2428 | 4.0 | 2700 | 0.5913 | 0.7983 |
| 0.2086 | 5.0 | 3375 | 0.8132 | 0.7883 |
| 0.1564 | 6.0 | 4050 | 0.9334 | 0.7917 |
| 0.1114 | 7.0 | 4725 | 1.0183 | 0.7975 |
| 0.1023 | 8.0 | 5400 | 1.1756 | 0.8008 |
| 0.0649 | 9.0 | 6075 | 1.2468 | 0.7975 |
| 0.0465 | 10.0 | 6750 | 1.2628 | 0.8025 |