TheBloke commited on
Commit
e2f6879
1 Parent(s): 6980105

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. config.json +34 -0
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/workspace/superhot_process/pygmalion-7b/source",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "badwordsids": [
7
+ [
8
+ 0
9
+ ]
10
+ ],
11
+ "bos_token_id": 1,
12
+ "eos_token_id": 2,
13
+ "hidden_act": "silu",
14
+ "hidden_size": 4096,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 11008,
17
+ "max_position_embeddings": 8192,
18
+ "max_sequence_length": 2048,
19
+ "model_type": "llama",
20
+ "num_attention_heads": 32,
21
+ "num_hidden_layers": 32,
22
+ "pad_token_id": 0,
23
+ "rms_norm_eps": 1e-06,
24
+ "tie_word_embeddings": false,
25
+ "torch_dtype": "float16",
26
+ "transformers_version": "4.30.0.dev0",
27
+ "use_cache": true,
28
+ "vocab_size": 32000,
29
+ "auto_map": {
30
+ "AutoModel": "modelling_llama.LlamaModel",
31
+ "AutoModelForCausalLM": "modelling_llama.LlamaForCausalLM",
32
+ "AutoModelForSequenceClassification": "modelling_llama.LlamaForSequenceClassification"
33
+ }
34
+ }