vilsonrodrigues commited on
Commit
46bb19b
1 Parent(s): c671d0e

synchronizing config.json (official HF support)

Browse files
Files changed (1) hide show
  1. config.json +13 -9
config.json CHANGED
@@ -1,14 +1,17 @@
1
  {
2
- "_name_or_path": "tiiuae/falcon-7b-instruct",
3
  "alibi": false,
4
  "apply_residual_connection_post_layernorm": false,
5
  "architectures": [
6
- "RWForCausalLM"
7
  ],
8
  "attention_dropout": 0.0,
9
  "auto_map": {
10
- "AutoConfig": "tiiuae/falcon-7b-instruct--configuration_RW.RWConfig",
11
- "AutoModelForCausalLM": "tiiuae/falcon-7b-instruct--modelling_RW.RWForCausalLM"
 
 
 
 
12
  },
13
  "bias": false,
14
  "bos_token_id": 11,
@@ -17,13 +20,14 @@
17
  "hidden_size": 4544,
18
  "initializer_range": 0.02,
19
  "layer_norm_epsilon": 1e-05,
20
- "model_type": "RefinedWebModel",
21
  "multi_query": true,
22
- "n_head": 71,
23
- "n_layer": 32,
 
24
  "parallel_attn": true,
25
- "torch_dtype": "float32",
26
- "transformers_version": "4.31.0.dev0",
27
  "use_cache": true,
28
  "vocab_size": 65024
29
  }
 
1
  {
 
2
  "alibi": false,
3
  "apply_residual_connection_post_layernorm": false,
4
  "architectures": [
5
+ "FalconForCausalLM"
6
  ],
7
  "attention_dropout": 0.0,
8
  "auto_map": {
9
+ "AutoConfig": "configuration_falcon.FalconConfig",
10
+ "AutoModel": "modeling_falcon.FalconModel",
11
+ "AutoModelForSequenceClassification": "modeling_falcon.FalconForSequenceClassification",
12
+ "AutoModelForTokenClassification": "modeling_falcon.FalconForTokenClassification",
13
+ "AutoModelForQuestionAnswering": "modeling_falcon.FalconForQuestionAnswering",
14
+ "AutoModelForCausalLM": "modeling_falcon.FalconForCausalLM"
15
  },
16
  "bias": false,
17
  "bos_token_id": 11,
 
20
  "hidden_size": 4544,
21
  "initializer_range": 0.02,
22
  "layer_norm_epsilon": 1e-05,
23
+ "model_type": "falcon",
24
  "multi_query": true,
25
+ "new_decoder_architecture": false,
26
+ "num_attention_heads": 71,
27
+ "num_hidden_layers": 32,
28
  "parallel_attn": true,
29
+ "torch_dtype": "bfloat16",
30
+ "transformers_version": "4.27.4",
31
  "use_cache": true,
32
  "vocab_size": 65024
33
  }