Ezekiel999 commited on
Commit
00c7140
·
verified ·
1 Parent(s): d823769

[Devin Audit] add generation_config.json with sane sampling defaults

Browse files
Files changed (1) hide show
  1. generation_config.json +12 -0
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": null,
3
+ "eos_token_id": null,
4
+ "pad_token_id": null,
5
+ "do_sample": true,
6
+ "max_new_tokens": 512,
7
+ "repetition_penalty": 1.15,
8
+ "temperature": 0.8,
9
+ "top_p": 0.9,
10
+ "top_k": 50,
11
+ "transformers_version": "5.0.0"
12
+ }