Are alignment and fine-tuning just a parallel of education?
OpenAI Reinforcement Fine-Tuning Research Program
41–50 of 67 posts
Re: OpenAI Reinforcement Fine-Tuning Research Program
#42Clever way to get more training data.
Re: OpenAI Reinforcement Fine-Tuning Research Program
#43What are the advantages of reinforcement learning over DPO (Direct Preference Optimization)? My understanding is that the DPO paper showed it was equivalent to RLHF, but simpler and more computationally efficient.
1) DPO did exclude some practical aspects of the RLHF method, e.g. pretraining gradients. 2) the theoretical arguments of DPO equivalence make some assumptions that don’t necessarily apply in practice 3) RLHF gives you a reusable reward model, which has practical uses and advantages. DPO doesn’t have useful intermediate product. 4) DPO works off preference, whereas desirable RL objectives could have many forms in pra…
Re: OpenAI Reinforcement Fine-Tuning Research Program
#44Re: OpenAI Reinforcement Fine-Tuning Research Program
#45What are the advantages of reinforcement learning over DPO (Direct Preference Optimization)? My understanding is that the DPO paper showed it was equivalent to RLHF, but simpler and more computationally efficient.
Re: OpenAI Reinforcement Fine-Tuning Research Program
#46Re: OpenAI Reinforcement Fine-Tuning Research Program
#47Re: OpenAI Reinforcement Fine-Tuning Research Program
#48If I'd like to learn more about DPO and RLHF, I've been looking for toy problems/datasets to use but coming up a bit empty handed. Is there a convenient way to experiment with these methods through toy problems and simulation that can be done on a single GPU? The need for massive data and parameter counts to do anything interesting makes learning about these methods a little daunting.
For LLMs / RLHF it's a little more difficult but https://github.com/huggingface/alignment-handbook and the Zephyr project is a good collection of model / dataset / script that is easy to follow.
I would suggest studying the basics of RL first before diving into LLM RLHF, which is much harder to learn on a single GPU.
Re: OpenAI Reinforcement Fine-Tuning Research Program
#49Earlier quoted context omitted.
Is it? We have no idea.
Yes it is. In RLHF and DPO you are optimizing the model output for human preferences. In the reinforcement fine tuning that was announced today you are optimizing the hidden chain of thought to arrive at a correct answer, as judged by a predefined grader.
Re: OpenAI Reinforcement Fine-Tuning Research Program
#50What are the advantages of reinforcement learning over DPO (Direct Preference Optimization)? My understanding is that the DPO paper showed it was equivalent to RLHF, but simpler and more computationally efficient.
So DPO vs RLHF is missing the point: the interesting thing here is how they are (presumably) generating the inner-monologue to fill in the gap between the Q and the A that you provide them, and then training on that augmented dataset of Q->solving->A datapoints.
Whether they are using simple finetuning on that dataset, or DPO, or RLHF, or something else, seems less interesting than the broader questions of, "does that work? and are there many important or economically datasets where o1 can 'fill in the gaps', creating a better annotated dataset, and bootstrap itself to be much more intelligent on that dataset?"