Ranking Models
Collection
These models produce numerical scores for content and conversations
β’
17 items
β’
Updated
πΎ Specialized model for scoring and ranking content based on animal advocacy principles
This model is part of the Open Paws initiative to develop AI systems aligned with animal liberation and advocacy principles. Designed to support advocates, educators, and researchers working toward a more compassionate world for all animals.
pip install transformers torch
from transformers import AutoModel, AutoTokenizer
import torch
# Load model and tokenizer
model_name = "open-paws/level_of_rationality_prediction_shortform"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModel.from_pretrained(model_name)
# Score content for animal advocacy alignment
content = "Plant-based diets reduce animal suffering significantly"
inputs = tokenizer(content, return_tensors="pt")
score = model(**inputs).logits
print(f"Advocacy alignment score: {score.item():.3f}")
For questions about this model, please reach out via:
Built with πΎ for animal liberation and AI alignment