Views
No views yet
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 0.115 | 1.0 | 774 | 0.0486 | 0.9864 |
| 0.0301 | 2.0 | 1548 | 0.0501 | 0.9861 |
1from transformers import pipeline
2classifier = pipeline("text-classification", model="LukeGPT88/patient-doctor-text-classifier")
3classifier("I see you’ve set aside this special time to humiliate yourself in public.")1Output:
2[{'label': 'NEUTRAL', 'score': 0.9890775680541992}]