TheBloke commited on
Commit
d92a6b6
1 Parent(s): b643476

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. generation_config.json +14 -0
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "pad_token_id": 0,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "user_token_id": 195,
6
+ "assistant_token_id": 196,
7
+ "max_new_tokens": 2048,
8
+ "temperature": 0.3,
9
+ "top_k": 5,
10
+ "top_p": 0.85,
11
+ "repetition_penalty": 1.05,
12
+ "do_sample": true,
13
+ "transformers_version": "4.29.2"
14
+ }