You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/(dashboard)/page.tsx
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -896,6 +896,16 @@ export default function HomePage() {
896
896
<p>
897
897
Verbalized Sampling provides a training-free, model-agnostic approach to mitigating mode collapse by prompting the model to generate response distributions with verbalized probability estimates.
Copy file name to clipboardExpand all lines: app/(dashboard)/terminal_prompt.tsx
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,10 @@ export function Terminal_Prompt() {
7
7
const[copied,setCopied]=useState(false);
8
8
9
9
constterminalSteps=[
10
-
{line: 'You are a helpful assistant. For each user query, generate a set of five responses. Each response should be approximately 200 words.',showPrompt: true},
11
-
{line: 'Return the responses each within a separate <response> tag.',showPrompt: false},
10
+
{line: 'Generate 10 responses to the user query, each within a separate <response> tag.',showPrompt: true},
12
11
{line: 'Each <response> tag must include a <text> and a numeric <probability>.',showPrompt: false},
13
12
{line: 'Randomly sample the responses from the full distribution.',showPrompt: false},
14
-
{line: '<user_query>Write a short story about a bear.</user_query>',showPrompt: true},
13
+
{line: '<user_query>Write a 100-word story about a bear.</user_query>',showPrompt: true},
0 commit comments