Joshua Lochner commited on
Commit
254e7f0
1 Parent(s): 5aa93c9

Add `blenderbot_small-90M` models

Browse files
Files changed (27) hide show
  1. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/config.json +62 -0
  2. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/decoder_model.onnx +3 -0
  3. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/decoder_model_merged.onnx +3 -0
  4. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/decoder_with_past_model.onnx +3 -0
  5. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/generation_config.json +14 -0
  6. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/merges.txt +0 -0
  7. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/special_tokens_map.json +6 -0
  8. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/tokenizer_config.json +11 -0
  9. quantized/facebook/blenderbot_small-90M/causal-lm-with-past/vocab.json +0 -0
  10. quantized/facebook/blenderbot_small-90M/default/config.json +61 -0
  11. quantized/facebook/blenderbot_small-90M/default/decoder_model.onnx +3 -0
  12. quantized/facebook/blenderbot_small-90M/default/encoder_model.onnx +3 -0
  13. quantized/facebook/blenderbot_small-90M/default/generation_config.json +14 -0
  14. quantized/facebook/blenderbot_small-90M/default/merges.txt +0 -0
  15. quantized/facebook/blenderbot_small-90M/default/special_tokens_map.json +6 -0
  16. quantized/facebook/blenderbot_small-90M/default/tokenizer_config.json +11 -0
  17. quantized/facebook/blenderbot_small-90M/default/vocab.json +0 -0
  18. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/config.json +61 -0
  19. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/decoder_model.onnx +3 -0
  20. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/decoder_model_merged.onnx +3 -0
  21. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/decoder_with_past_model.onnx +3 -0
  22. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/encoder_model.onnx +3 -0
  23. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/generation_config.json +14 -0
  24. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/merges.txt +0 -0
  25. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/special_tokens_map.json +6 -0
  26. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/tokenizer_config.json +11 -0
  27. quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/vocab.json +0 -0
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/blenderbot_small-90M",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "gelu",
5
+ "add_bias_logits": false,
6
+ "add_final_layer_norm": false,
7
+ "architectures": [
8
+ "BlenderbotSmallForConditionalGeneration"
9
+ ],
10
+ "attention_dropout": 0.0,
11
+ "bos_token_id": 1,
12
+ "classif_dropout": 0.0,
13
+ "classifier_dropout": 0.0,
14
+ "d_model": 512,
15
+ "decoder_attention_heads": 16,
16
+ "decoder_ffn_dim": 2048,
17
+ "decoder_layerdrop": 0.0,
18
+ "decoder_layers": 8,
19
+ "decoder_start_token_id": 1,
20
+ "do_blenderbot_90_layernorm": true,
21
+ "dropout": 0.1,
22
+ "encoder_attention_heads": 16,
23
+ "encoder_ffn_dim": 2048,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 8,
26
+ "eos_token_id": 2,
27
+ "extra_pos_embeddings": 0,
28
+ "force_bos_token_to_be_generated": false,
29
+ "forced_eos_token_id": 2,
30
+ "gradient_checkpointing": false,
31
+ "id2label": {
32
+ "0": "LABEL_0",
33
+ "1": "LABEL_1",
34
+ "2": "LABEL_2"
35
+ },
36
+ "init_std": 0.02,
37
+ "is_decoder": true,
38
+ "is_encoder_decoder": false,
39
+ "label2id": {
40
+ "LABEL_0": 0,
41
+ "LABEL_1": 1,
42
+ "LABEL_2": 2
43
+ },
44
+ "layernorm_variant": "xlm",
45
+ "length_penalty": 0.65,
46
+ "max_length": 128,
47
+ "max_position_embeddings": 512,
48
+ "min_length": 20,
49
+ "model_type": "blenderbot-small",
50
+ "no_repeat_ngram_size": 3,
51
+ "normalize_before": false,
52
+ "normalize_embedding": true,
53
+ "num_beams": 10,
54
+ "num_hidden_layers": 8,
55
+ "pad_token_id": 0,
56
+ "scale_embedding": true,
57
+ "static_position_embeddings": false,
58
+ "transformers_version": "4.26.1",
59
+ "unk_token_id": 3,
60
+ "use_cache": true,
61
+ "vocab_size": 54944
62
+ }
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/decoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6421865fc202237d52d436f392700d07b10a6fe8dd51f2be0e615fae0f29165a
3
+ size 82697013
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/decoder_model_merged.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e87b7777269100df18adb37c8d070e8f7c28126efe03c30234049d230de5e01b
3
+ size 82863554
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/decoder_with_past_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e63ac81aba4617c92e00680098105601755ed08b734efa2920993028e9d27f68
3
+ size 82694965
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "decoder_start_token_id": 1,
5
+ "eos_token_id": 2,
6
+ "forced_eos_token_id": 2,
7
+ "length_penalty": 0.65,
8
+ "max_length": 128,
9
+ "min_length": 20,
10
+ "no_repeat_ngram_size": 3,
11
+ "num_beams": 10,
12
+ "pad_token_id": 0,
13
+ "transformers_version": "4.27.0.dev0"
14
+ }
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "__start__",
3
+ "eos_token": "__end__",
4
+ "pad_token": "__null__",
5
+ "unk_token": "__unk__"
6
+ }
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/tokenizer_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "__start__",
3
+ "eos_token": "__end__",
4
+ "model_max_length": 512,
5
+ "name_or_path": "facebook/blenderbot_small-90M",
6
+ "pad_token": "__null__",
7
+ "special_tokens_map_file": null,
8
+ "tokenizer_class": "BlenderbotSmallTokenizer",
9
+ "tokenizer_file": null,
10
+ "unk_token": "__unk__"
11
+ }
quantized/facebook/blenderbot_small-90M/causal-lm-with-past/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
quantized/facebook/blenderbot_small-90M/default/config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/blenderbot_small-90M",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "gelu",
5
+ "add_bias_logits": false,
6
+ "add_final_layer_norm": false,
7
+ "architectures": [
8
+ "BlenderbotSmallForConditionalGeneration"
9
+ ],
10
+ "attention_dropout": 0.0,
11
+ "bos_token_id": 1,
12
+ "classif_dropout": 0.0,
13
+ "classifier_dropout": 0.0,
14
+ "d_model": 512,
15
+ "decoder_attention_heads": 16,
16
+ "decoder_ffn_dim": 2048,
17
+ "decoder_layerdrop": 0.0,
18
+ "decoder_layers": 8,
19
+ "decoder_start_token_id": 1,
20
+ "do_blenderbot_90_layernorm": true,
21
+ "dropout": 0.1,
22
+ "encoder_attention_heads": 16,
23
+ "encoder_ffn_dim": 2048,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 8,
26
+ "eos_token_id": 2,
27
+ "extra_pos_embeddings": 0,
28
+ "force_bos_token_to_be_generated": false,
29
+ "forced_eos_token_id": 2,
30
+ "gradient_checkpointing": false,
31
+ "id2label": {
32
+ "0": "LABEL_0",
33
+ "1": "LABEL_1",
34
+ "2": "LABEL_2"
35
+ },
36
+ "init_std": 0.02,
37
+ "is_encoder_decoder": true,
38
+ "label2id": {
39
+ "LABEL_0": 0,
40
+ "LABEL_1": 1,
41
+ "LABEL_2": 2
42
+ },
43
+ "layernorm_variant": "xlm",
44
+ "length_penalty": 0.65,
45
+ "max_length": 128,
46
+ "max_position_embeddings": 512,
47
+ "min_length": 20,
48
+ "model_type": "blenderbot-small",
49
+ "no_repeat_ngram_size": 3,
50
+ "normalize_before": false,
51
+ "normalize_embedding": true,
52
+ "num_beams": 10,
53
+ "num_hidden_layers": 8,
54
+ "pad_token_id": 0,
55
+ "scale_embedding": true,
56
+ "static_position_embeddings": false,
57
+ "transformers_version": "4.26.1",
58
+ "unk_token_id": 3,
59
+ "use_cache": true,
60
+ "vocab_size": 54944
61
+ }
quantized/facebook/blenderbot_small-90M/default/decoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd412c3e9a9db135de86950c1ec1f77fa5f3c229eecdbc215b61194df155aefd
3
+ size 63082966
quantized/facebook/blenderbot_small-90M/default/encoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e18e577ea9c87403c9b11c3b39065259ebc7c7cebe1694ae94852e07a0451783
3
+ size 54237016
quantized/facebook/blenderbot_small-90M/default/generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "decoder_start_token_id": 1,
5
+ "eos_token_id": 2,
6
+ "forced_eos_token_id": 2,
7
+ "length_penalty": 0.65,
8
+ "max_length": 128,
9
+ "min_length": 20,
10
+ "no_repeat_ngram_size": 3,
11
+ "num_beams": 10,
12
+ "pad_token_id": 0,
13
+ "transformers_version": "4.27.0.dev0"
14
+ }
quantized/facebook/blenderbot_small-90M/default/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
quantized/facebook/blenderbot_small-90M/default/special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "__start__",
3
+ "eos_token": "__end__",
4
+ "pad_token": "__null__",
5
+ "unk_token": "__unk__"
6
+ }
quantized/facebook/blenderbot_small-90M/default/tokenizer_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "__start__",
3
+ "eos_token": "__end__",
4
+ "model_max_length": 512,
5
+ "name_or_path": "facebook/blenderbot_small-90M",
6
+ "pad_token": "__null__",
7
+ "special_tokens_map_file": null,
8
+ "tokenizer_class": "BlenderbotSmallTokenizer",
9
+ "tokenizer_file": null,
10
+ "unk_token": "__unk__"
11
+ }
quantized/facebook/blenderbot_small-90M/default/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/blenderbot_small-90M",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "gelu",
5
+ "add_bias_logits": false,
6
+ "add_final_layer_norm": false,
7
+ "architectures": [
8
+ "BlenderbotSmallForConditionalGeneration"
9
+ ],
10
+ "attention_dropout": 0.0,
11
+ "bos_token_id": 1,
12
+ "classif_dropout": 0.0,
13
+ "classifier_dropout": 0.0,
14
+ "d_model": 512,
15
+ "decoder_attention_heads": 16,
16
+ "decoder_ffn_dim": 2048,
17
+ "decoder_layerdrop": 0.0,
18
+ "decoder_layers": 8,
19
+ "decoder_start_token_id": 1,
20
+ "do_blenderbot_90_layernorm": true,
21
+ "dropout": 0.1,
22
+ "encoder_attention_heads": 16,
23
+ "encoder_ffn_dim": 2048,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 8,
26
+ "eos_token_id": 2,
27
+ "extra_pos_embeddings": 0,
28
+ "force_bos_token_to_be_generated": false,
29
+ "forced_eos_token_id": 2,
30
+ "gradient_checkpointing": false,
31
+ "id2label": {
32
+ "0": "LABEL_0",
33
+ "1": "LABEL_1",
34
+ "2": "LABEL_2"
35
+ },
36
+ "init_std": 0.02,
37
+ "is_encoder_decoder": true,
38
+ "label2id": {
39
+ "LABEL_0": 0,
40
+ "LABEL_1": 1,
41
+ "LABEL_2": 2
42
+ },
43
+ "layernorm_variant": "xlm",
44
+ "length_penalty": 0.65,
45
+ "max_length": 128,
46
+ "max_position_embeddings": 512,
47
+ "min_length": 20,
48
+ "model_type": "blenderbot-small",
49
+ "no_repeat_ngram_size": 3,
50
+ "normalize_before": false,
51
+ "normalize_embedding": true,
52
+ "num_beams": 10,
53
+ "num_hidden_layers": 8,
54
+ "pad_token_id": 0,
55
+ "scale_embedding": true,
56
+ "static_position_embeddings": false,
57
+ "transformers_version": "4.26.1",
58
+ "unk_token_id": 3,
59
+ "use_cache": true,
60
+ "vocab_size": 54944
61
+ }
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/decoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:743f1977f870eb489deb791b58155c9bb4639f53db80a44ed8eefa7a230a9fe9
3
+ size 91765310
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/decoder_model_merged.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9357a41af7cc077054bf6846764317f882c4e4f9f50308b13e5dd39b8edc0728
3
+ size 92025394
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/decoder_with_past_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfa0a0680ad6a98e04734734609d57b46e3c590f2be849ae7c35f1a78e7f33bb
3
+ size 87408889
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/encoder_model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e18e577ea9c87403c9b11c3b39065259ebc7c7cebe1694ae94852e07a0451783
3
+ size 54237016
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "decoder_start_token_id": 1,
5
+ "eos_token_id": 2,
6
+ "forced_eos_token_id": 2,
7
+ "length_penalty": 0.65,
8
+ "max_length": 128,
9
+ "min_length": 20,
10
+ "no_repeat_ngram_size": 3,
11
+ "num_beams": 10,
12
+ "pad_token_id": 0,
13
+ "transformers_version": "4.27.0.dev0"
14
+ }
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "__start__",
3
+ "eos_token": "__end__",
4
+ "pad_token": "__null__",
5
+ "unk_token": "__unk__"
6
+ }
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/tokenizer_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "__start__",
3
+ "eos_token": "__end__",
4
+ "model_max_length": 512,
5
+ "name_or_path": "facebook/blenderbot_small-90M",
6
+ "pad_token": "__null__",
7
+ "special_tokens_map_file": null,
8
+ "tokenizer_class": "BlenderbotSmallTokenizer",
9
+ "tokenizer_file": null,
10
+ "unk_token": "__unk__"
11
+ }
quantized/facebook/blenderbot_small-90M/seq2seq-lm-with-past/vocab.json ADDED
The diff for this file is too large to render. See raw diff