rm rep penalty in json gen
Browse files
src/lib/components/MonsterGenerator/MonsterGenerator.svelte
CHANGED
|
@@ -333,10 +333,10 @@ Write your response within \`\`\`json\`\`\``;
|
|
| 333 |
[], // chat_history
|
| 334 |
systemPrompt, // system_prompt
|
| 335 |
2048, // max_new_tokens
|
| 336 |
-
0.3, // temperature
|
| 337 |
0.95, // top_p
|
| 338 |
50, // top_k
|
| 339 |
-
|
| 340 |
]);
|
| 341 |
|
| 342 |
console.log('Stats output:', output);
|
|
|
|
| 333 |
[], // chat_history
|
| 334 |
systemPrompt, // system_prompt
|
| 335 |
2048, // max_new_tokens
|
| 336 |
+
0.3, // temperature
|
| 337 |
0.95, // top_p
|
| 338 |
50, // top_k
|
| 339 |
+
0.0 // repetition_penalty
|
| 340 |
]);
|
| 341 |
|
| 342 |
console.log('Stats output:', output);
|