Views
No views yet
| Metric | Value |
|---|---|
| loss | 0.3096 |
| accuracy | 0.9313 |
| f1 | 0.9309 |
| precision | 0.9318 |
| recall | 0.9315 |
| runtime | 2.9479 |
| samples_per_second | 2035.3350 |
| steps_per_second | 31.8870 |
| 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.'))