Text Generation
Transformers
PyTorch
gpt_neox
text-generation-inference
How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="EleutherAI/pythia-intervention-6.9b-deduped")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("EleutherAI/pythia-intervention-6.9b-deduped")
model = AutoModelForCausalLM.from_pretrained("EleutherAI/pythia-intervention-6.9b-deduped", device_map="auto")
Quick Links

This model is part of an intervention study done in the paper Pythia: A Suite for Analyzing Large Language Models Across Training and Scaling where we replaced all masculine pronouns with femanine ones and retrained the model for the last 21 billion tokens. The regular model can be found here.

We do not recommend using this model for any purpose other than to study the influence of gender pronouns on language model behavior.

Downloads last month
22
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train EleutherAI/pythia-intervention-6.9b-deduped

Spaces using EleutherAI/pythia-intervention-6.9b-deduped 2

Paper for EleutherAI/pythia-intervention-6.9b-deduped