Views
No views yet
| Metric | Value |
|---|---|
| loss | 0.4235 |
| accuracy | 0.9050 |
| f1 | 0.9050 |
| precision | 0.9050 |
| recall | 0.9050 |
| runtime | 2.1530 |
| samples_per_second | 2786.8420 |
| steps_per_second | 43.6610 |
| 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.'))