Matt commited on
Commit
eb30971
1 Parent(s): 2f5c3cd

Transition to in-library checkpoint

Browse files
Files changed (3) hide show
  1. config.json +6 -13
  2. generation_config.json +4 -4
  3. tokenizer_config.json +5 -1
config.json CHANGED
@@ -2,17 +2,9 @@
2
  "alibi": false,
3
  "apply_residual_connection_post_layernorm": false,
4
  "architectures": [
5
- "RWForCausalLM"
6
  ],
7
  "attention_dropout": 0.0,
8
- "auto_map": {
9
- "AutoConfig": "configuration_RW.RWConfig",
10
- "AutoModel": "modelling_RW.RWModel",
11
- "AutoModelForSequenceClassification": "modelling_RW.RWForSequenceClassification",
12
- "AutoModelForTokenClassification": "modelling_RW.RWForTokenClassification",
13
- "AutoModelForQuestionAnswering": "modelling_RW.RWForQuestionAnswering",
14
- "AutoModelForCausalLM": "modelling_RW.RWForCausalLM"
15
- },
16
  "bias": false,
17
  "bos_token_id": 11,
18
  "eos_token_id": 11,
@@ -20,13 +12,14 @@
20
  "hidden_size": 4544,
21
  "initializer_range": 0.02,
22
  "layer_norm_epsilon": 1e-05,
23
- "model_type": "RefinedWebModel",
24
  "multi_query": true,
25
- "n_head": 71,
26
- "n_layer": 32,
 
27
  "parallel_attn": true,
28
  "torch_dtype": "bfloat16",
29
  "transformers_version": "4.27.4",
30
  "use_cache": true,
31
  "vocab_size": 65024
32
- }
 
2
  "alibi": false,
3
  "apply_residual_connection_post_layernorm": false,
4
  "architectures": [
5
+ "FalconForCausalLM"
6
  ],
7
  "attention_dropout": 0.0,
 
 
 
 
 
 
 
 
8
  "bias": false,
9
  "bos_token_id": 11,
10
  "eos_token_id": 11,
 
12
  "hidden_size": 4544,
13
  "initializer_range": 0.02,
14
  "layer_norm_epsilon": 1e-05,
15
+ "model_type": "falcon",
16
  "multi_query": true,
17
+ "new_decoder_architecture": false,
18
+ "num_attention_heads": 71,
19
+ "num_hidden_layers": 32,
20
  "parallel_attn": true,
21
  "torch_dtype": "bfloat16",
22
  "transformers_version": "4.27.4",
23
  "use_cache": true,
24
  "vocab_size": 65024
25
+ }
generation_config.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "_from_model_config": true,
3
- "bos_token_id": 1,
4
- "eos_token_id": 2,
5
- "transformers_version": "4.27.4"
6
- }
 
1
  {
2
  "_from_model_config": true,
3
+ "bos_token_id": 11,
4
+ "eos_token_id": 11,
5
+ "transformers_version": "4.31.0.dev0"
6
+ }
tokenizer_config.json CHANGED
@@ -1,8 +1,12 @@
1
  {
2
  "add_prefix_space": false,
3
  "eos_token": "<|endoftext|>",
 
 
 
 
4
  "model_max_length": 2048,
5
  "name_or_path": "tiiuae/falcon_tokenizer",
6
  "special_tokens_map_file": null,
7
  "tokenizer_class": "PreTrainedTokenizerFast"
8
- }
 
1
  {
2
  "add_prefix_space": false,
3
  "eos_token": "<|endoftext|>",
4
+ "model_input_names": [
5
+ "input_ids",
6
+ "attention_mask"
7
+ ],
8
  "model_max_length": 2048,
9
  "name_or_path": "tiiuae/falcon_tokenizer",
10
  "special_tokens_map_file": null,
11
  "tokenizer_class": "PreTrainedTokenizerFast"
12
+ }