Stanford CS224N | 2023 | Lecture 10 - Prompting, Reinforcement Learning from Human Feedback

  Рет қаралды 44,566

Stanford Online

Stanford Online

9 ай бұрын

For more information about Stanford's Artificial Intelligence professional and graduate programs visit: stanford.io/ai
To learn more about this course visit: online.stanford.edu/courses/c...
To follow along with the course schedule and syllabus visit: web.stanford.edu/class/cs224n/
Jesse Mu
cs.stanford.edu/~muj/
Professor Christopher Manning
Thomas M. Siebel Professor in Machine Learning, Professor of Linguistics and of Computer Science
Director, Stanford Artificial Intelligence Laboratory (SAIL)
#naturallanguageprocessing #deeplearning

Пікірлер: 25
@khalilbrahemkbr3584
@khalilbrahemkbr3584 Ай бұрын
Great lecture! Thank you Stanford and the lecturer for making this public
@user-qk7wr2ny1f
@user-qk7wr2ny1f 9 ай бұрын
It's one of the most awesome lecture that I have ever watched! The lecturer is wonderful!
@uraskarg710
@uraskarg710 9 ай бұрын
Great Lecture! Thanks!
@philippvetter2856
@philippvetter2856 5 ай бұрын
Amazing lecture, really well presented.
@susdoge3767
@susdoge3767 Ай бұрын
by far the best lecture on modern llms, great to witness this
@user-ui4ye1qn8x
@user-ui4ye1qn8x 3 ай бұрын
Great lecture! very helpful!
@Pingu_astrocat21
@Pingu_astrocat21 2 ай бұрын
Thank you for uploading this lecture :)
@gemini_537
@gemini_537 2 ай бұрын
Gemini: This lecture is about prompting instruction fine-tuning and RLHF, which are all techniques used to train large language models (LLMs). LLMs are trained on a massive amount of text data and are able to communicate and generate human-like text in response to a wide range of prompts and questions. The lecture starts with going over zero-shot and few-shot learning, which are techniques for getting LLMs to perform tasks they weren't explicitly trained for. In zero-shot learning, the LLM is given a natural language description of the task and asked to complete it. In few-shot learning, the LLM is given a few examples of the task before being asked to complete a new one. Then the lecture dives into instruction fine-tuning, which is a technique for improving the performance of LLMs on a specific task by fine-tuning them on a dataset of human-written instructions and corresponding outputs. For example, you could fine-tune an LLM on a dataset of movie summaries and their corresponding reviews to improve its ability to summarize movies. Finally, the lecture discusses reinforcement learning from human feedback (RLHF), which is a technique for training LLMs using human feedback. In RLHF, the LLM is given a task and then asked to complete it. A human expert then evaluates the LLM's output and provides feedback. This feedback is then used to improve the LLM's performance on the task. The lecture concludes by discussing some of the challenges and limitations of RLHF, as well as the potential future directions for this field. One challenge is that it can be difficult to get humans to provide high-quality feedback, especially for complex tasks. Another challenge is that RLHF can be computationally expensive. However, RLHF is a promising technique for training LLMs to perform a wide range of tasks, and it is an area of active research.
@ningzeng2239
@ningzeng2239 7 ай бұрын
great lecture, tks!
@mavichovizana5460
@mavichovizana5460 3 ай бұрын
great lecture! very helpful!
@willlannin2381
@willlannin2381 4 ай бұрын
Fantastic lecture, thank you
@akhileshgotmare9812
@akhileshgotmare9812 2 ай бұрын
The question at 50:10 is interesting! To combat this to a certain extent, what Llama2 authors did was to collect annotator preference responses on a scale of 4 points, and use that to include a margin component in the RM training loss. See Section 3.2.1 and 3.2.2 in the Llama2 paper. They report that the margin component can improve reward model accuracy.
@marshallmcluhan33
@marshallmcluhan33 9 ай бұрын
Cool 😎
@isalutfi
@isalutfi 9 ай бұрын
💙💙💙
@munzutai
@munzutai 6 ай бұрын
Are there any promising strategies to reduce the amount of data that's necessary to do RLHF?
@theneumann7
@theneumann7 7 ай бұрын
👌
@dontwannabefound
@dontwannabefound Ай бұрын
38:20 for RLHF
@HoriaCristescu
@HoriaCristescu 6 ай бұрын
1. RLHF is updating the model for whole sentences. Does that carry special meaning? Because next token prediction is focusing too much on short term, this changes the focus to whole answer. 2. RLHF uses model generated outputs for training, so it is on-policy data. Does that make it more effective than training on random internet texts?
@susdoge3767
@susdoge3767 Ай бұрын
does backprop and updating PPO here means updating the decoder only model or just updating the policy network? what my understanding says so far is that; we have a pretty good decoder only model that can summarise well enough(fine tuned on tons of data) , but the reward function and PPO network is there to align it more to human preferences. Please correct me if i am wrong anywhere, would like to know your insights!
@ReflectionOcean
@ReflectionOcean 5 ай бұрын
- Utilize prompting and instruction fine-tuning to align language models with user intent (start: 25:29). - Implement penalty terms in RLHF to prevent models from deviating too far from pre-trained baselines (start: 52:14). - Train reward models on human comparisons instead of direct human responses for more reliable reinforcement learning (start: 47:09). - Normalize reward model scores post-training for better reinforcement learning outcomes (start: 49:27). - Explore reinforcement learning from AI feedback to reduce human data requirements (start: 1:11:12).
@buoyrina9669
@buoyrina9669 9 ай бұрын
At 44:35, does theta_t refer to the LM's entire parameters ?
@DrumsBah
@DrumsBah 7 ай бұрын
In the case of Instruct GPT, theta was the full parameter set of the foundation model. However, there's no reason RLHF couldn't be performed on the head or adapter parameters (e.g. lora) instead.
@ThamBui-ll7qc
@ThamBui-ll7qc 2 ай бұрын
If a model is just instruction-finetuned without any RLHF, does hallucination occur?
@Andrewlim90
@Andrewlim90 7 ай бұрын
I really like the question at 00:34:20! Anyone know if this is being explored? People who can produce questions like this seem like they'd make excellent researchers. I'm jealous.
@DrumsBah
@DrumsBah 7 ай бұрын
The embedding distance is commonly utilised in contrastive loss based optimisation. It's actuslly been shown to be useful in training sentence embeddings, see: SimCSE. Of course in this setting, the embeddings are directly of interest. I could imagine a possibility of it being used for alignment. However, it has significant disadvantages compared to reward model approaches in terms of the salience of embedding distance actually relating to human preference.
Andrew Ng: Opportunities in AI - 2023
36:55
Stanford Online
Рет қаралды 1,8 МЛН
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 15 МЛН
Tom & Jerry !! 😂😂
00:59
Tibo InShape
Рет қаралды 63 МЛН
Me: Don't cross there's cars coming
00:16
LOL
Рет қаралды 8 МЛН
Was ist im Eis versteckt? 🧊 Coole Winter-Gadgets von Amazon
00:37
SMOL German
Рет қаралды 32 МЛН
Stanford CS25: V4 I Hyung Won Chung of OpenAI
36:31
Stanford Online
Рет қаралды 115 М.
Has Generative AI Already Peaked? - Computerphile
12:48
Computerphile
Рет қаралды 845 М.
Proximal Policy Optimization (PPO) - How to train Large Language Models
38:24
[1hr Talk] Intro to Large Language Models
59:48
Andrej Karpathy
Рет қаралды 2 МЛН
What's the future for generative AI? - The Turing Lectures with Mike Wooldridge
1:00:59
A Survey of Techniques for Maximizing LLM Performance
45:32
Jeff Dean (Google): Exciting Trends in Machine Learning
1:12:30
Rice Ken Kennedy Institute
Рет қаралды 169 М.
How ChatGPT is Trained
13:43
Ari Seff
Рет қаралды 518 М.
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 15 МЛН