Viewing a single comment thread. View all comments

gniorg t1_ja7sjkn wrote

So basically, batch reinforcement learning / offline RL? The family of algorithms is useful for recommender systems, amongst others.

3

cthorrez t1_ja8d6oc wrote

Not exactly. In batch RL the data they train on are real (state, action, next state, reward) tuples from real agents interacting with real environments.

They improve the policy offline. In RLHF there actually is no env. And the policy is just standard LLM decoding.

1