Downloads · 30 days
6
26% of all-time downloads
lctzz540/gemppo
gemppo is a reinforcement learning model from lctzz540. 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
6
26% of all-time downloads
All-time downloads
23
Public
Repo size
43.2 MB
Likes
0
Public
Click a slice to open those files.
.safetensors25.7 MB · 59%
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="tuanpham/runs/step_200")
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("tuanpham/runs/step_200")
model = AutoModelForCausalLMWithValueHead.from_pretrained("tuanpham/runs/step_200")
inputs = tokenizer("Hello, my llama is cute", return_tensors="pt")
outputs = model(**inputs, labels=inputs["input_ids"])