Danthur/the_smart_model
04
from transformers import AutoTokenizer, AutoModelForSequenceClassification import torch
Load the model and tokenizer
tokenizer = AutoTokenizer.frompretrained("charlie1898/gpt2finetunedtwittersentimentanalysis") model = AutoModelForSequenceClassification.frompretrained("charlie1898/gpt2finetunedtwittersentimentanalysis")
Example input
text = "I love using Hugging Face models!" inputs = tokenizer(text, returntensors="pt") outputs = model(**inputs) predictedclass = torch.argmax(outputs.logits).item() print(f"Predicted sentiment class: {predicted_class}")
Limitations
- Bias : The dataset may contain biased or harmful text, potentially influencing predictions.
- Domain Limitations : Optimized for English tweets; performance may degrade on other text types or languages.
Ethical Considerations
This model should be used responsibly. Be aware of biases in the training data and avoid deploying the model in sensitive or high-stakes applications without further validation.
Acknowledgments
- Hugging Face Transformers library
- mteb/tweetsentimentextraction dataset
