File size: 2,844 Bytes
4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 4124496 b5ced39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
---
license: apache-2.0
base_model_type: llama
tags:
- animal-liberation
- animal-advocacy
- open-paws
- ethics
- alignment
language:
- en
pipeline_tag: text-generation
widget:
- text: "How can we effectively advocate for farm animal welfare?"
- text: "Explain the ethical issues with factory farming"
- text: "What are the benefits of plant-based diets for animals?"
---
# Open Paws Potential Influence Prediction Shortform
๐พ **Specialized model for scoring and ranking content based on animal advocacy principles**
## Overview
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.
## Model Details
- **Model Type**: Ranking Model
- **Model Size**: Compact (under 1B parameters)
- **Architecture**: Transformer-based
- **Training Focus**: Animal advocacy and ethical reasoning
- **Organization**: [Open Paws](https://huggingface.co/open-paws)
- **License**: Apache 2.0
## Intended Use
### Primary Applications
- Content quality assessment for animal advocacy
- Message effectiveness scoring
- Preference modeling for advocacy strategies
- Performance evaluation of educational materials
### Ethical Guidelines
- โ
Supporting animal welfare and rights advocacy
- โ
Educational content about animal liberation
- โ
Ethical decision-making frameworks
- โ Content that promotes animal exploitation
- โ Justifying harm to sentient beings
## Usage
### Installation
```bash
pip install transformers torch
```
### Basic Usage
```python
from transformers import AutoModel, AutoTokenizer
import torch
# Load model and tokenizer
model_name = "open-paws/potential_influence_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}")
```
## Community and Contributions
- **Organization**: [Open Paws](https://huggingface.co/open-paws) - Making AI an ally to animals
- **Website**: [openpaws.ai](https://www.openpaws.ai/)
- **Community**: Join our mission to use AI for animal liberation
- **Issues**: Report issues via HuggingFace discussions
## Model Card Contact
For questions about this model, please reach out via:
- **HuggingFace Discussions**: [open-paws/potential_influence_prediction_shortform](https://huggingface.co/open-paws/potential_influence_prediction_shortform/discussions)
- **Organization Page**: [Open Paws](https://huggingface.co/open-paws)
---
*Built with ๐พ for animal liberation and AI alignment*
|