Views
No views yet
| Epoch | Training Loss | Validation Loss | Accuracy | F1 Score | Precision | Recall |
|---|---|---|---|---|---|---|
| 0 | 0.6545 | 0.6502 | 60.27% | 0.6856 | 0.5657 | 0.8699 |
| 1 | 0.6073 | 0.5941 | 69.65% | 0.6926 | 0.6986 | 0.6866 |
| 2 | 0.5311 | 0.5671 | 70.84% | 0.6816 | 0.7469 | 0.6267 |
| 3 | 0.4689 | 0.5266 | 74.25% | 0.7428 | 0.7390 | 0.7466 |
transformers library:1from transformers import pipeline
2
3# Load the model from Hugging Face
4event_detection = pipeline('text-classification', model='fyp-buglens/VideoGameReviews-InvalidEventOccurrenceOvertime-BERT')
5
6# Example usage
7result = event_detection("The Hell Event in Lords Mobile started at the wrong time")
8print(result) # Output: label indicating if it's an event timing issue or not