File size: 1,941 Bytes
b66b751 16ac51a e8097d9 16ac51a e8097d9 47a23cb 16ac51a ddec057 16ac51a 47a23cb 16ac51a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
---
language:
- en
license: mit
tags:
- task-classification
- transformers
---
# Game Issue Review Detection
**This model is a fine-tuned version of RoBERTa on the Game Issue Review dataset**.
## What is Game Issue Review?
**Game Issue Review** refers to player feedback that highlights significant problems affecting the gaming experience.
## Model Capabilities
This model can detect:
- β
Technical issues (e.g., "Game crashes on startup")
- β
Design complaints (e.g., "This boss fight is poorly designed")
- β
Monetization criticism (e.g., "The pay-to-win mechanics ruin the game")
- β
Other significant gameplay problems
## Quick Start
```python
from transformers import pipeline
import torch
# Load the model
classifier = pipeline("text-classification",
model="FutureMa/game-issue-review-detection",
device=0 if torch.cuda.is_available() else -1)
# Define review examples
reviews = [
"Great game ruined by the worst final boss in history. Such a slog that has to be cheesed to win.",
"Great game, epic story, best gameplay and banger music. Overall very good jrpg games for me also i hope gallica is real"
]
# Label explanations
LABEL_MAP = {
"LABEL_0": "Non Game Issue Review",
"LABEL_1": "Game Issue Review"
}
# Classify and display results
print("π Game Issue Review Analysis Results:\n")
print("-" * 80)
for i, review in enumerate(reviews, 1):
pred = classifier(review)
label_explanation = LABEL_MAP[pred[0]['label']]
print(f"Review {i}:")
print(f"Text: {review}")
print(f"Classification: {label_explanation}")
print(f"Confidence: {pred[0]['score']:.4f}")
print("-" * 80)
```
## Supported Languages
π English
The model is particularly useful for:
- Game developers monitoring player feedback
- Community managers identifying trending issues
- QA teams prioritizing bug fixes
- Researchers analyzing game review patterns |