Downloads · 30 days
12
6% of all-time downloads
davidgaofc/PPO_base
PPO_base is a reinforcement learning model from davidgaofc. 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
12
6% of all-time downloads
All-time downloads
190
Public
Parameters
60.5M
242 MB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors242 MB · 99%
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="davidgaofc//tmp/tmp25wcnw65/davidgaofc/PPO_base")
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("davidgaofc//tmp/tmp25wcnw65/davidgaofc/PPO_base")
model = AutoModelForCausalLMWithValueHead.from_pretrained("davidgaofc//tmp/tmp25wcnw65/davidgaofc/PPO_base")
inputs = tokenizer("Hello, my llama is cute", return_tensors="pt")
outputs = model(**inputs, labels=inputs["input_ids"])