Update README.md
Browse files
README.md
CHANGED
@@ -40,7 +40,7 @@ model = AutoModel.from_pretrained(
|
|
40 |
|
41 |
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True, use_fast=False)
|
42 |
|
43 |
-
generation_config = GenerationConfig(max_new_tokens=2048, do_sample=
|
44 |
|
45 |
prompt_engine = MRPromptV3()
|
46 |
|
|
|
40 |
|
41 |
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True, use_fast=False)
|
42 |
|
43 |
+
generation_config = GenerationConfig(max_new_tokens=2048, do_sample=True, temperature=0.01, top_p=0.01, repetition_penalty=1.1)
|
44 |
|
45 |
prompt_engine = MRPromptV3()
|
46 |
|