dair-ai/emotion
Viewer • Updated • 437k • 25.2k • 449
How to use tr-aravindan/output_emotion with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("gpt2")
model = PeftModel.from_pretrained(base_model, "tr-aravindan/output_emotion")This model is a fine-tuned version of gpt2 on the emotion dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 8.5945 | 2.0 | 1800 | 7.5670 |
| 7.7948 | 4.0 | 3600 | 7.0852 |
Base model
openai-community/gpt2