hf-transformers-bot commited on
Commit
5e9c8ba
·
verified ·
1 Parent(s): cdd9c6a

Update tiny models for SqueezeBertForMultipleChoice

Browse files
Files changed (4) hide show
  1. config.json +32 -0
  2. model.safetensors +3 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +15 -0
config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SqueezeBertForMultipleChoice"
4
+ ],
5
+ "attention_dropout": 0.1,
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": null,
8
+ "dtype": "float32",
9
+ "embedding_size": 32,
10
+ "eos_token_id": null,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 32,
14
+ "initializer_range": 0.02,
15
+ "intermediate_groups": 4,
16
+ "intermediate_size": 64,
17
+ "k_groups": 2,
18
+ "layer_norm_eps": 1e-12,
19
+ "max_position_embeddings": 512,
20
+ "model_type": "squeezebert",
21
+ "num_attention_heads": 4,
22
+ "num_hidden_layers": 2,
23
+ "output_groups": 1,
24
+ "pad_token_id": 0,
25
+ "post_attention_groups": 2,
26
+ "q_groups": 2,
27
+ "tie_word_embeddings": true,
28
+ "transformers_version": "5.16.0.dev0",
29
+ "type_vocab_size": 2,
30
+ "v_groups": 2,
31
+ "vocab_size": 30528
32
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7ade62e796820d99426efa999a79d18ff2a8b5dd8a8e2499e24fde4b279e907
3
+ size 4022380
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "is_local": true,
6
+ "local_files_only": false,
7
+ "mask_token": "[MASK]",
8
+ "model_max_length": 512,
9
+ "pad_token": "[PAD]",
10
+ "sep_token": "[SEP]",
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "BertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }