mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-11-02 15:40:13 +00:00
15 lines
680 B
Plaintext
15 lines
680 B
Plaintext
|
# Directional Stimulus Prompting
|
||
|
|
||
|
import { Callout, FileTree } from 'nextra-theme-docs'
|
||
|
import {Screenshot} from 'components/screenshot'
|
||
|
import DSP from '../../img/dsp.jpeg'
|
||
|
|
||
|
[Li et al., (2023)](https://arxiv.org/abs/2302.11520) proposes a new prompting technique to better guide the LLM in generating the desired summary.
|
||
|
|
||
|
A tuneable policy LM is trained to generate the stimulus/hint. Seeing more use of RL to optimize LLMs.
|
||
|
|
||
|
The figure below shows how Directional Stimulus Prompting compares with standard prompting. The policy LM can be small and optimized to generate the hints that guide a black-box frozen LLM.
|
||
|
|
||
|
<Screenshot src={DSP} alt="DSP" />
|
||
|
|
||
|
Full example coming soon!
|