TheBloke commited on
Commit
1127667
1 Parent(s): 13d08b1

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. config.json +41 -0
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "h2oai/h2ogpt-gm-oasst1-en-2048-falcon-7b-v3",
3
+ "alibi": false,
4
+ "apply_residual_connection_post_layernorm": false,
5
+ "architectures": [
6
+ "RWForCausalLM"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "attention_probs_dropout_prob": 0.0,
10
+ "auto_map": {
11
+ "AutoConfig": "configuration_RW.RWConfig",
12
+ "AutoModel": "modelling_RW.RWModel",
13
+ "AutoModelForCausalLM": "modelling_RW.RWForCausalLM",
14
+ "AutoModelForQuestionAnswering": "modelling_RW.RWForQuestionAnswering",
15
+ "AutoModelForSequenceClassification": "modelling_RW.RWForSequenceClassification",
16
+ "AutoModelForTokenClassification": "modelling_RW.RWForTokenClassification"
17
+ },
18
+ "bias": false,
19
+ "bos_token_id": 11,
20
+ "custom_pipelines": {
21
+ "text-generation": {
22
+ "impl": "h2oai_pipeline.H2OTextGenerationPipeline",
23
+ "pt": "AutoModelForCausalLM"
24
+ }
25
+ },
26
+ "eos_token_id": 11,
27
+ "hidden_dropout": 0.0,
28
+ "hidden_dropout_prob": 0.0,
29
+ "hidden_size": 4544,
30
+ "initializer_range": 0.02,
31
+ "layer_norm_epsilon": 1e-05,
32
+ "model_type": "RefinedWebModel",
33
+ "multi_query": true,
34
+ "n_head": 71,
35
+ "n_layer": 32,
36
+ "parallel_attn": true,
37
+ "torch_dtype": "float16",
38
+ "transformers_version": "4.29.2",
39
+ "use_cache": true,
40
+ "vocab_size": 65024
41
+ }