Instructions to use FutureMa/game-issue-review-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FutureMa/game-issue-review-detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="FutureMa/game-issue-review-detection")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("FutureMa/game-issue-review-detection") model = AutoModelForSequenceClassification.from_pretrained("FutureMa/game-issue-review-detection") - Notebooks
- Google Colab
- Kaggle
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
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
- Downloads last month
- 3