YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Disaster News VAD Model

This model predicts Valence, Arousal, and Dominance (VAD) values for disaster news headlines. It was trained on the EmoBank dataset and fine-tuned on disaster news headlines.

Model Details

  • Architecture: RoBERTa-based transformer model with regression heads for VAD prediction
  • Training Data: EmoBank dataset
  • Application: Emotional analysis of disaster news headlines
  • Date: 2025-03-16

Usage

from transformers import RobertaTokenizer, AutoModel
import torch

# Load model and tokenizer
tokenizer = RobertaTokenizer.from_pretrained("postgrammar/disaster-news-vad-model")
model = AutoModel.from_pretrained("postgrammar/disaster-news-vad-model")

# Prepare input
text = "Earthquake devastates coastal town, rescue efforts underway"
inputs = tokenizer(text, return_tensors="pt")

# Get predictions
with torch.no_grad():
    outputs = model(**inputs)
    
# Extract VAD values (first three values in the output tuple)
valence, arousal, dominance = outputs[0], outputs[1], outputs[2]

print(f"Valence: {valence.item():.4f}, Arousal: {arousal.item():.4f}, Dominance: {dominance.item():.4f}")

Citation

If you use this model, please cite:

@misc{disaster-news-vad-model,
  author = {Hamed Yaghoobian},
  title = {Disaster News VAD Model},
  year = {2025},
  publisher = {Hugging Face},
  howpublished = {\url{https://huggingface.co/postgrammar/disaster-news-vad-model}}
}
Downloads last month
2
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.