Downloads · 30 days
10
5% of all-time downloads
ignacioct/my_ppo_model
my_ppo_model is a reinforcement learning model from ignacioct. Use it for the reinforcement learning task on the model card, and read the license before you ship it in a product. It is set up for transformers. The card lists the license as apache-2.0.
This is a TRL language model that has been fine-tuned with reinforcement learning to guide the model outputs according to a value, function, or human feedback. The model can be used for text generation.
Downloads · 30 days
10
5% of all-time downloads
All-time downloads
195
Public
Parameters
2.5B
5.2 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors5 GB · 100%
How the weights are stored.
F162.5B · 100%
From the Hugging Face model README
This is a TRL language model that has been fine-tuned with reinforcement learning to guide the model outputs according to a value, function, or human feedback. The model can be used for text generation.
To use this model for inference, first install the TRL library:
python -m pip install trl
You can then generate text as follows:
from transformers import pipeline
generator = pipeline("text-generation", model="EkhiAzur//tmp/tmpj5bx01yr/ignacioct/my_ppo_model")
outputs = generator("Hello, my llama is cute")
If you want to use the model for training or to obtain the outputs from the value head, load the model as follows:
from transformers import AutoTokenizer
from trl import AutoModelForCausalLMWithValueHead
tokenizer = AutoTokenizer.from_pretrained("EkhiAzur//tmp/tmpj5bx01yr/ignacioct/my_ppo_model")
model = AutoModelForCausalLMWithValueHead.from_pretrained("EkhiAzur//tmp/tmpj5bx01yr/ignacioct/my_ppo_model")
inputs = tokenizer("Hello, my llama is cute", return_tensors="pt")
outputs = model(**inputs, labels=inputs["input_ids"])