Views
No views yet
| Metric | Value |
|---|---|
| loss | 0.4650 |
| accuracy | 0.8857 |
| f1 | 0.8856 |
| precision | 0.8856 |
| recall | 0.8857 |
| runtime | 10.4045 |
| samples_per_second | 576.6720 |
| steps_per_second | 36.0420 |
| epoch | 3.0000 |
1from transformers import pipeline
2
3# Load the model directly from this folder or HF Hub
4classifier = pipeline('text-classification', model='.')
5print(classifier('She is a great engineer.'))