How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-classification", model="R41n1nc0m1ng/game-issue-review-detection")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("R41n1nc0m1ng/game-issue-review-detection")
model = AutoModelForSequenceClassification.from_pretrained("R41n1nc0m1ng/game-issue-review-detection", device_map="auto")
Quick Links

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
1
Safetensors
Model size
0.1B params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support