vkehfdl1 commited on
Commit
b49d8d3
·
verified ·
1 Parent(s): a4d2c47

MLX bfloat16 conversion of naver/v-splade-efficient

Browse files
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: naver/v-splade-efficient
4
+ tags:
5
+ - mlx
6
+ - v-splade
7
+ - splade
8
+ - visual-document-retrieval
9
+ - sparse-retrieval
10
+ - multimodal
11
+ pipeline_tag: visual-document-retrieval
12
+ ---
13
+
14
+ # v-splade-efficient-mlx
15
+
16
+ MLX (bfloat16) conversion of [`naver/v-splade-efficient`](https://huggingface.co/naver/v-splade-efficient)
17
+ (V-SPLADE, [arXiv:2605.30917](https://arxiv.org/abs/2605.30917)) for Apple Silicon,
18
+ produced by [NomaDamas/SPLADE-mlx](https://github.com/NomaDamas/SPLADE-mlx).
19
+
20
+ V-SPLADE is an inference-free sparse retriever for visual document retrieval:
21
+ document pages (rendered PDFs, slides, scans) are encoded by a ModernVBERT
22
+ backbone (SigLIP vision tower + pixel-shuffle connector + ModernBERT text
23
+ encoder) with a SPLADE MLM head into a 50,368-dim vocabulary-space sparse
24
+ vector, while queries are resolved by a learned Bag-of-Words lookup with no
25
+ neural encoding at all.
26
+
27
+ **Contents**: `weights.safetensors` (document encoder, bfloat16),
28
+ `query_lookup.npy` (inference-free query table, fp32), `config.json`,
29
+ plus tokenizer/processor configs for self-contained loading.
30
+
31
+ **Changes from upstream**: PyTorch checkpoint converted to MLX safetensors
32
+ (parameter re-mapping, conv weight transposed to NHWC, cast to bfloat16); the
33
+ query lookup table `softplus(embedding @ projection + bias)` is precomputed
34
+ with special tokens zeroed. No training or fine-tuning was performed.
35
+
36
+ **Quality** (see repo REPORT.md for methodology):
37
+ - fp32 parity vs the PyTorch reference: max |logit delta| 1.5e-04 on
38
+ real document-page inputs, sparse-vector cosine 1.000000, top-64 term
39
+ overlap 100%; the query table matches the shipped Sentence Transformers
40
+ static embedding to 1.2e-07.
41
+ - ViDoRe `docvqa_test_subsampled` nDCG@5 (fp32): 0.4098 (torch) ->
42
+ 0.4098 (MLX), delta +0.0000 (gate: ±0.002).
43
+
44
+ ## Usage
45
+
46
+ ```python
47
+ from splade_mlx.convert_vsplade import load_vsplade
48
+ import mlx.core as mx
49
+ from PIL import Image
50
+
51
+ model, query_encoder, processor = load_vsplade("NomaDamas/v-splade-efficient-mlx")
52
+
53
+ # documents (page images)
54
+ enc = processor(text=["User:<image><end_of_utterance>\nAssistant:"],
55
+ images=[[Image.open("page.png")]], return_tensors="np")
56
+ d = model.encode(mx.array(enc["input_ids"]), mx.array(enc["attention_mask"]),
57
+ enc["pixel_values"]) # (1, 50368)
58
+
59
+ # queries: inference-free lookup, no neural network
60
+ q = processor.tokenizer(["total revenue 2023"], return_tensors="np")
61
+ qw = query_encoder.encode(q["input_ids"], q["attention_mask"]) # (1, 50368)
62
+
63
+ score = d @ qw.T
64
+ ```
65
+
66
+ ## License
67
+
68
+ Apache-2.0, same as the upstream checkpoint (© NAVER Corp).
69
+ This repository is not affiliated with or endorsed by NAVER.
chat_template.jinja ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ {% for message in messages %}{{message['role'] | capitalize}}{% if message['content'][0]['type'] == 'image' %}{{':'}}{% else %}{{': '}}{% endif %}{% for line in message['content'] %}{% if line['type'] == 'text' %}{{line['text']}}{% elif line['type'] == 'image' %}{{ '<image>' }}{% endif %}{% endfor %}{% if add_generation_prompt %}<end_of_utterance>
2
+ {% endif %}{% endfor %}{% if add_generation_prompt %}{{ 'Assistant:' }}{% endif %}
config.json ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "auto_map": {
3
+ "AutoModelForMaskedLM": "modeling_vsplade.VSPLADEForMaskedLM"
4
+ },
5
+ "image_token_id": 50407,
6
+ "initializer_range": 0.02,
7
+ "model_type": "modernvbert",
8
+ "pixel_shuffle_factor": 4,
9
+ "text_config": {
10
+ "_name_or_path": "ettin-encoder-150m",
11
+ "architectures": [
12
+ "ModernBertForMaskedLM"
13
+ ],
14
+ "attention_bias": false,
15
+ "attention_dropout": 0.0,
16
+ "causal_mask": false,
17
+ "classifier_activation": "gelu",
18
+ "classifier_bias": false,
19
+ "classifier_dropout": 0.0,
20
+ "classifier_pooling": "mean",
21
+ "cls_token_id": 50281,
22
+ "decoder_bias": true,
23
+ "deterministic_flash_attn": false,
24
+ "dtype": "float32",
25
+ "embedding_dropout": 0.0,
26
+ "global_attn_every_n_layers": 3,
27
+ "global_rope_theta": 160000.0,
28
+ "gradient_checkpointing": false,
29
+ "hidden_activation": "gelu",
30
+ "hidden_size": 768,
31
+ "initializer_cutoff_factor": 2.0,
32
+ "initializer_range": 0.02,
33
+ "intermediate_size": 1152,
34
+ "is_causal": false,
35
+ "layer_norm_eps": 1e-05,
36
+ "layer_types": [
37
+ "full_attention",
38
+ "sliding_attention",
39
+ "sliding_attention",
40
+ "full_attention",
41
+ "sliding_attention",
42
+ "sliding_attention",
43
+ "full_attention",
44
+ "sliding_attention",
45
+ "sliding_attention",
46
+ "full_attention",
47
+ "sliding_attention",
48
+ "sliding_attention",
49
+ "full_attention",
50
+ "sliding_attention",
51
+ "sliding_attention",
52
+ "full_attention",
53
+ "sliding_attention",
54
+ "sliding_attention",
55
+ "full_attention",
56
+ "sliding_attention",
57
+ "sliding_attention",
58
+ "full_attention"
59
+ ],
60
+ "local_attention": 128,
61
+ "local_rope_theta": 160000.0,
62
+ "max_position_embeddings": 7999,
63
+ "mlp_bias": false,
64
+ "mlp_dropout": 0.0,
65
+ "model_type": "modernbert",
66
+ "norm_bias": false,
67
+ "norm_eps": 1e-05,
68
+ "num_attention_heads": 12,
69
+ "num_hidden_layers": 22,
70
+ "position_embedding_type": "sans_pos",
71
+ "repad_logits_with_grad": false,
72
+ "rope_parameters": {
73
+ "full_attention": {
74
+ "rope_theta": 160000.0,
75
+ "rope_type": "default"
76
+ },
77
+ "sliding_attention": {
78
+ "rope_theta": 160000.0,
79
+ "rope_type": "default"
80
+ }
81
+ },
82
+ "sparse_pred_ignore_index": -100,
83
+ "sparse_prediction": false,
84
+ "vocab_size": 50408
85
+ },
86
+ "transformers_version": "5.0.0.dev0",
87
+ "vision_config": {
88
+ "attention_dropout": 0.0,
89
+ "hidden_act": "gelu_pytorch_tanh",
90
+ "hidden_size": 768,
91
+ "image_size": 512,
92
+ "intermediate_size": 3072,
93
+ "layer_norm_eps": 1e-06,
94
+ "model_type": "siglip_vision_model",
95
+ "num_attention_heads": 12,
96
+ "num_channels": 3,
97
+ "num_hidden_layers": 12,
98
+ "patch_size": 16
99
+ },
100
+ "tie_word_embeddings": false,
101
+ "architectures": [
102
+ "BiModernVBert"
103
+ ],
104
+ "freeze_config": {
105
+ "freeze_lm_head": true,
106
+ "freeze_text_layers": true,
107
+ "freeze_vision_layers": true
108
+ },
109
+ "additional_vocab_size": 40
110
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98267e6f8b102a88667dec368ae8247d9d0fd7c60a5ce59053474331f72a84ff
3
+ size 660070138
modeling_vsplade.py ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """V-SPLADE document encoder for Hugging Face Transformers.
2
+
3
+ Wraps the ModernVBERT backbone (``transformers>=5.3.0``) together with the
4
+ V-SPLADE MLM head so that this repository loads directly with
5
+ ``AutoModelForMaskedLM.from_pretrained(..., trust_remote_code=True)``.
6
+
7
+ The module tree deliberately mirrors the checkpoint layout of the V-SPLADE
8
+ export (``encoder.encoder.model.*`` for the backbone, ``encoder.mlm_head.*``
9
+ for the sparse head), so ``model.safetensors`` loads without any key
10
+ remapping. The ``query_encoder.*`` tensors hold the inference-free Li-LSR
11
+ query lookup (used by the Sentence Transformers integration) and are not part
12
+ of the document encoder, so they are ignored here.
13
+
14
+ The returned ``logits`` are the SPLADE term logits: MLM logits scaled by
15
+ ``hidden_size ** -0.25`` with special tokens masked out, exactly as in
16
+ https://github.com/naver/v-splade (``UnifiedRetriever._apply_sparse_head``).
17
+ A sparse document embedding is obtained via ``log1p(relu(logits))`` followed
18
+ by a max-pool over the sequence dimension (see the README).
19
+ """
20
+
21
+ from __future__ import annotations
22
+
23
+ import torch
24
+ import torch.nn.functional as F
25
+ from torch import nn
26
+ from transformers.modeling_outputs import MaskedLMOutput
27
+
28
+ try:
29
+ from transformers.models.modernvbert.configuration_modernvbert import ModernVBertConfig
30
+ from transformers.models.modernvbert.modeling_modernvbert import (
31
+ ModernVBertModel,
32
+ ModernVBertPreTrainedModel,
33
+ )
34
+ except ImportError as exc:
35
+ raise ImportError(
36
+ "V-SPLADE requires the ModernVBERT architecture, which is available in "
37
+ "transformers>=5.3.0. Please upgrade with `pip install -U transformers`."
38
+ ) from exc
39
+
40
+ # Special tokens that are masked out of the sparse representation:
41
+ # [UNK], [CLS], [SEP], [PAD], [MASK]
42
+ SPECIAL_TOKEN_IDS = [50280, 50281, 50282, 50283, 50284]
43
+
44
+
45
+ class VSPLADEDecoupledEmbedding(nn.Embedding):
46
+ """Word embeddings split into the base vocabulary and the added vision tokens.
47
+
48
+ Matches the V-SPLADE export layout: ``weight`` holds the base (MLM) vocabulary
49
+ and ``additional_embedding.weight`` holds the extra tokens appended for the
50
+ vision chat format (``<image>``, ``<end_of_utterance>``, tile markers, ...).
51
+ """
52
+
53
+ def __init__(self, num_embeddings: int, num_additional_embeddings: int, embedding_dim: int, **kwargs) -> None:
54
+ super().__init__(num_embeddings, embedding_dim, **kwargs)
55
+ self.num_additional_embeddings = num_additional_embeddings
56
+ self.additional_embedding = nn.Embedding(num_additional_embeddings, embedding_dim)
57
+
58
+ def forward(self, input_ids: torch.LongTensor) -> torch.Tensor:
59
+ input_ids = input_ids.clone()
60
+ additional_vocab_indices = torch.where(input_ids >= self.num_embeddings)
61
+ additional_embeddings = self.additional_embedding(input_ids[additional_vocab_indices] - self.num_embeddings)
62
+ input_ids[additional_vocab_indices] = 0
63
+ full_vector = F.embedding(input_ids, self.weight)
64
+ full_vector[additional_vocab_indices] = additional_embeddings
65
+ return full_vector
66
+
67
+
68
+ class VSPLADEModalityProjection(nn.Module):
69
+ """Vision-to-text projection stored as ``modality_projection.proj`` in the export."""
70
+
71
+ def __init__(self, input_size: int, output_size: int) -> None:
72
+ super().__init__()
73
+ self.proj = nn.Linear(input_size, output_size, bias=False)
74
+
75
+ @property
76
+ def weight(self) -> torch.Tensor:
77
+ # ModernVBertPreTrainedModel._init_weights initializes ``modality_projection.weight``
78
+ return self.proj.weight
79
+
80
+ def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
81
+ return self.proj(hidden_states)
82
+
83
+
84
+ class VSPLADEMLMHead(nn.Module):
85
+ """V-SPLADE MLM head: dense -> GELU -> LayerNorm -> decoder (base vocabulary)."""
86
+
87
+ def __init__(self, hidden_size: int, vocab_size: int) -> None:
88
+ super().__init__()
89
+ self.dense = nn.Linear(hidden_size, hidden_size)
90
+ self.norm = nn.LayerNorm(hidden_size)
91
+ self.decoder = nn.Linear(hidden_size, vocab_size)
92
+
93
+ def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
94
+ return self.decoder(self.norm(F.gelu(self.dense(hidden_states))))
95
+
96
+
97
+ class _Wrapper(nn.Module):
98
+ """Empty container used to mirror the checkpoint's key prefixes."""
99
+
100
+
101
+ class VSPLADEForMaskedLM(ModernVBertPreTrainedModel):
102
+ config_class = ModernVBertConfig
103
+ _keys_to_ignore_on_load_unexpected = [r"query_encoder\..*"]
104
+
105
+ def __init__(self, config: ModernVBertConfig) -> None:
106
+ super().__init__(config)
107
+ main_vocab_size = config.text_config.vocab_size - config.additional_vocab_size
108
+
109
+ backbone = ModernVBertModel(config)
110
+ # The export stores the connector projection under an extra ``proj`` level; mirror that.
111
+ backbone.connector.modality_projection = VSPLADEModalityProjection(
112
+ input_size=config.vision_config.hidden_size * (config.pixel_shuffle_factor**2),
113
+ output_size=config.text_config.hidden_size,
114
+ )
115
+ # The export splits the embedding into base + additional tokens; mirror that.
116
+ backbone.text_model.set_input_embeddings(
117
+ VSPLADEDecoupledEmbedding(
118
+ num_embeddings=main_vocab_size,
119
+ num_additional_embeddings=config.additional_vocab_size,
120
+ embedding_dim=config.text_config.hidden_size,
121
+ padding_idx=getattr(config, "pad_token_id", None),
122
+ )
123
+ )
124
+
125
+ self.encoder = _Wrapper()
126
+ self.encoder.encoder = _Wrapper()
127
+ self.encoder.encoder.model = backbone
128
+ self.encoder.mlm_head = VSPLADEMLMHead(config.text_config.hidden_size, main_vocab_size)
129
+
130
+ self.logit_scale = config.text_config.hidden_size**-0.25
131
+
132
+ self.post_init()
133
+
134
+ def get_input_embeddings(self):
135
+ return self.encoder.encoder.model.get_input_embeddings()
136
+
137
+ def set_input_embeddings(self, value):
138
+ self.encoder.encoder.model.set_input_embeddings(value)
139
+
140
+ def forward(
141
+ self,
142
+ input_ids: torch.LongTensor | None = None,
143
+ attention_mask: torch.Tensor | None = None,
144
+ position_ids: torch.LongTensor | None = None,
145
+ inputs_embeds: torch.FloatTensor | None = None,
146
+ pixel_values: torch.FloatTensor | None = None,
147
+ pixel_attention_mask: torch.BoolTensor | None = None,
148
+ image_hidden_states: torch.FloatTensor | None = None,
149
+ return_dict: bool | None = None,
150
+ ) -> MaskedLMOutput:
151
+ outputs = self.encoder.encoder.model(
152
+ input_ids=input_ids,
153
+ attention_mask=attention_mask,
154
+ position_ids=position_ids,
155
+ inputs_embeds=inputs_embeds,
156
+ pixel_values=pixel_values,
157
+ pixel_attention_mask=pixel_attention_mask,
158
+ image_hidden_states=image_hidden_states,
159
+ return_dict=True,
160
+ )
161
+ logits = self.encoder.mlm_head(outputs.last_hidden_state) * self.logit_scale
162
+ # Zero out special tokens so they never activate in the sparse representation
163
+ # (log1p(relu(0)) == 0), matching the reference special_token_mask.
164
+ # Built on the fly: buffers created in __init__ do not survive meta-device loading.
165
+ special_token_ids = torch.tensor(SPECIAL_TOKEN_IDS, dtype=torch.long, device=logits.device)
166
+ logits = logits.index_fill(-1, special_token_ids, 0.0)
167
+
168
+ return MaskedLMOutput(
169
+ logits=logits,
170
+ hidden_states=outputs.hidden_states,
171
+ attentions=outputs.attentions,
172
+ )
173
+
174
+
175
+ __all__ = ["VSPLADEForMaskedLM"]
preprocessor_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": true,
3
+ "do_image_splitting": true,
4
+ "do_normalize": true,
5
+ "do_pad": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.5,
10
+ 0.5,
11
+ 0.5
12
+ ],
13
+ "image_processor_type": "Idefics3ImageProcessor",
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "max_image_size": {
20
+ "longest_edge": 512
21
+ },
22
+ "processor_class": "Idefics3Processor",
23
+ "resample": 1,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "longest_edge": 2048
27
+ }
28
+ }
processor_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "image_seq_len": 64,
3
+ "processor_class": "Idefics3Processor"
4
+ }
query_lookup.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3c9cf8d991cd10ce237fa177213cd36209135a52f26c2dc5ed5d347342d9b1c
3
+ size 201600
special_tokens_map.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<global-img>",
4
+ "<row_1_col_1>",
5
+ "<row_1_col_2>",
6
+ "<row_1_col_3>",
7
+ "<row_1_col_4>",
8
+ "<row_1_col_5>",
9
+ "<row_1_col_6>",
10
+ "<row_2_col_1>",
11
+ "<row_2_col_2>",
12
+ "<row_2_col_3>",
13
+ "<row_2_col_4>",
14
+ "<row_2_col_5>",
15
+ "<row_2_col_6>",
16
+ "<row_3_col_1>",
17
+ "<row_3_col_2>",
18
+ "<row_3_col_3>",
19
+ "<row_3_col_4>",
20
+ "<row_3_col_5>",
21
+ "<row_3_col_6>",
22
+ "<row_4_col_1>",
23
+ "<row_4_col_2>",
24
+ "<row_4_col_3>",
25
+ "<row_4_col_4>",
26
+ "<row_4_col_5>",
27
+ "<row_4_col_6>",
28
+ "<row_5_col_1>",
29
+ "<row_5_col_2>",
30
+ "<row_5_col_3>",
31
+ "<row_5_col_4>",
32
+ "<row_5_col_5>",
33
+ "<row_5_col_6>",
34
+ "<row_6_col_1>",
35
+ "<row_6_col_2>",
36
+ "<row_6_col_3>",
37
+ "<row_6_col_4>",
38
+ "<row_6_col_5>",
39
+ "<row_6_col_6>",
40
+ "<end_of_utterance>",
41
+ "<fake_token_around_image>",
42
+ "<image>"
43
+ ],
44
+ "cls_token": {
45
+ "content": "[CLS]",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ },
51
+ "mask_token": {
52
+ "content": "[MASK]",
53
+ "lstrip": true,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false
57
+ },
58
+ "pad_token": {
59
+ "content": "[PAD]",
60
+ "lstrip": false,
61
+ "normalized": false,
62
+ "rstrip": false,
63
+ "single_word": false
64
+ },
65
+ "sep_token": {
66
+ "content": "[SEP]",
67
+ "lstrip": false,
68
+ "normalized": false,
69
+ "rstrip": false,
70
+ "single_word": false
71
+ },
72
+ "unk_token": {
73
+ "content": "[UNK]",
74
+ "lstrip": false,
75
+ "normalized": false,
76
+ "rstrip": false,
77
+ "single_word": false
78
+ }
79
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,1310 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "|||IP_ADDRESS|||",
5
+ "lstrip": false,
6
+ "normalized": true,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": false
10
+ },
11
+ "1": {
12
+ "content": "<|padding|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "50254": {
20
+ "content": " ",
21
+ "lstrip": false,
22
+ "normalized": true,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": false
26
+ },
27
+ "50255": {
28
+ "content": " ",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": false
34
+ },
35
+ "50256": {
36
+ "content": " ",
37
+ "lstrip": false,
38
+ "normalized": true,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": false
42
+ },
43
+ "50257": {
44
+ "content": " ",
45
+ "lstrip": false,
46
+ "normalized": true,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": false
50
+ },
51
+ "50258": {
52
+ "content": " ",
53
+ "lstrip": false,
54
+ "normalized": true,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": false
58
+ },
59
+ "50259": {
60
+ "content": " ",
61
+ "lstrip": false,
62
+ "normalized": true,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": false
66
+ },
67
+ "50260": {
68
+ "content": " ",
69
+ "lstrip": false,
70
+ "normalized": true,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": false
74
+ },
75
+ "50261": {
76
+ "content": " ",
77
+ "lstrip": false,
78
+ "normalized": true,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": false
82
+ },
83
+ "50262": {
84
+ "content": " ",
85
+ "lstrip": false,
86
+ "normalized": true,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": false
90
+ },
91
+ "50263": {
92
+ "content": " ",
93
+ "lstrip": false,
94
+ "normalized": true,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": false
98
+ },
99
+ "50264": {
100
+ "content": " ",
101
+ "lstrip": false,
102
+ "normalized": true,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": false
106
+ },
107
+ "50265": {
108
+ "content": " ",
109
+ "lstrip": false,
110
+ "normalized": true,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": false
114
+ },
115
+ "50266": {
116
+ "content": " ",
117
+ "lstrip": false,
118
+ "normalized": true,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": false
122
+ },
123
+ "50267": {
124
+ "content": " ",
125
+ "lstrip": false,
126
+ "normalized": true,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": false
130
+ },
131
+ "50268": {
132
+ "content": " ",
133
+ "lstrip": false,
134
+ "normalized": true,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": false
138
+ },
139
+ "50269": {
140
+ "content": " ",
141
+ "lstrip": false,
142
+ "normalized": true,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": false
146
+ },
147
+ "50270": {
148
+ "content": " ",
149
+ "lstrip": false,
150
+ "normalized": true,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": false
154
+ },
155
+ "50271": {
156
+ "content": " ",
157
+ "lstrip": false,
158
+ "normalized": true,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": false
162
+ },
163
+ "50272": {
164
+ "content": " ",
165
+ "lstrip": false,
166
+ "normalized": true,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": false
170
+ },
171
+ "50273": {
172
+ "content": " ",
173
+ "lstrip": false,
174
+ "normalized": true,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": false
178
+ },
179
+ "50274": {
180
+ "content": " ",
181
+ "lstrip": false,
182
+ "normalized": true,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": false
186
+ },
187
+ "50275": {
188
+ "content": " ",
189
+ "lstrip": false,
190
+ "normalized": true,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": false
194
+ },
195
+ "50276": {
196
+ "content": " ",
197
+ "lstrip": false,
198
+ "normalized": true,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": false
202
+ },
203
+ "50277": {
204
+ "content": "|||EMAIL_ADDRESS|||",
205
+ "lstrip": false,
206
+ "normalized": true,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": false
210
+ },
211
+ "50278": {
212
+ "content": "|||PHONE_NUMBER|||",
213
+ "lstrip": false,
214
+ "normalized": true,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": false
218
+ },
219
+ "50279": {
220
+ "content": "<|endoftext|>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "50280": {
228
+ "content": "[UNK]",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "50281": {
236
+ "content": "[CLS]",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "50282": {
244
+ "content": "[SEP]",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "50283": {
252
+ "content": "[PAD]",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "50284": {
260
+ "content": "[MASK]",
261
+ "lstrip": true,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "50285": {
268
+ "content": "[unused0]",
269
+ "lstrip": false,
270
+ "normalized": true,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": false
274
+ },
275
+ "50286": {
276
+ "content": "[unused1]",
277
+ "lstrip": false,
278
+ "normalized": true,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": false
282
+ },
283
+ "50287": {
284
+ "content": "[unused2]",
285
+ "lstrip": false,
286
+ "normalized": true,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": false
290
+ },
291
+ "50288": {
292
+ "content": "[unused3]",
293
+ "lstrip": false,
294
+ "normalized": true,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": false
298
+ },
299
+ "50289": {
300
+ "content": "[unused4]",
301
+ "lstrip": false,
302
+ "normalized": true,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": false
306
+ },
307
+ "50290": {
308
+ "content": "[unused5]",
309
+ "lstrip": false,
310
+ "normalized": true,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": false
314
+ },
315
+ "50291": {
316
+ "content": "[unused6]",
317
+ "lstrip": false,
318
+ "normalized": true,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": false
322
+ },
323
+ "50292": {
324
+ "content": "[unused7]",
325
+ "lstrip": false,
326
+ "normalized": true,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": false
330
+ },
331
+ "50293": {
332
+ "content": "[unused8]",
333
+ "lstrip": false,
334
+ "normalized": true,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": false
338
+ },
339
+ "50294": {
340
+ "content": "[unused9]",
341
+ "lstrip": false,
342
+ "normalized": true,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": false
346
+ },
347
+ "50295": {
348
+ "content": "[unused10]",
349
+ "lstrip": false,
350
+ "normalized": true,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": false
354
+ },
355
+ "50296": {
356
+ "content": "[unused11]",
357
+ "lstrip": false,
358
+ "normalized": true,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": false
362
+ },
363
+ "50297": {
364
+ "content": "[unused12]",
365
+ "lstrip": false,
366
+ "normalized": true,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": false
370
+ },
371
+ "50298": {
372
+ "content": "[unused13]",
373
+ "lstrip": false,
374
+ "normalized": true,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": false
378
+ },
379
+ "50299": {
380
+ "content": "[unused14]",
381
+ "lstrip": false,
382
+ "normalized": true,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": false
386
+ },
387
+ "50300": {
388
+ "content": "[unused15]",
389
+ "lstrip": false,
390
+ "normalized": true,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": false
394
+ },
395
+ "50301": {
396
+ "content": "[unused16]",
397
+ "lstrip": false,
398
+ "normalized": true,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": false
402
+ },
403
+ "50302": {
404
+ "content": "[unused17]",
405
+ "lstrip": false,
406
+ "normalized": true,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": false
410
+ },
411
+ "50303": {
412
+ "content": "[unused18]",
413
+ "lstrip": false,
414
+ "normalized": true,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": false
418
+ },
419
+ "50304": {
420
+ "content": "[unused19]",
421
+ "lstrip": false,
422
+ "normalized": true,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": false
426
+ },
427
+ "50305": {
428
+ "content": "[unused20]",
429
+ "lstrip": false,
430
+ "normalized": true,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": false
434
+ },
435
+ "50306": {
436
+ "content": "[unused21]",
437
+ "lstrip": false,
438
+ "normalized": true,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": false
442
+ },
443
+ "50307": {
444
+ "content": "[unused22]",
445
+ "lstrip": false,
446
+ "normalized": true,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": false
450
+ },
451
+ "50308": {
452
+ "content": "[unused23]",
453
+ "lstrip": false,
454
+ "normalized": true,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": false
458
+ },
459
+ "50309": {
460
+ "content": "[unused24]",
461
+ "lstrip": false,
462
+ "normalized": true,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": false
466
+ },
467
+ "50310": {
468
+ "content": "[unused25]",
469
+ "lstrip": false,
470
+ "normalized": true,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": false
474
+ },
475
+ "50311": {
476
+ "content": "[unused26]",
477
+ "lstrip": false,
478
+ "normalized": true,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": false
482
+ },
483
+ "50312": {
484
+ "content": "[unused27]",
485
+ "lstrip": false,
486
+ "normalized": true,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": false
490
+ },
491
+ "50313": {
492
+ "content": "[unused28]",
493
+ "lstrip": false,
494
+ "normalized": true,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": false
498
+ },
499
+ "50314": {
500
+ "content": "[unused29]",
501
+ "lstrip": false,
502
+ "normalized": true,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": false
506
+ },
507
+ "50315": {
508
+ "content": "[unused30]",
509
+ "lstrip": false,
510
+ "normalized": true,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": false
514
+ },
515
+ "50316": {
516
+ "content": "[unused31]",
517
+ "lstrip": false,
518
+ "normalized": true,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": false
522
+ },
523
+ "50317": {
524
+ "content": "[unused32]",
525
+ "lstrip": false,
526
+ "normalized": true,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": false
530
+ },
531
+ "50318": {
532
+ "content": "[unused33]",
533
+ "lstrip": false,
534
+ "normalized": true,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": false
538
+ },
539
+ "50319": {
540
+ "content": "[unused34]",
541
+ "lstrip": false,
542
+ "normalized": true,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": false
546
+ },
547
+ "50320": {
548
+ "content": "[unused35]",
549
+ "lstrip": false,
550
+ "normalized": true,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": false
554
+ },
555
+ "50321": {
556
+ "content": "[unused36]",
557
+ "lstrip": false,
558
+ "normalized": true,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": false
562
+ },
563
+ "50322": {
564
+ "content": "[unused37]",
565
+ "lstrip": false,
566
+ "normalized": true,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": false
570
+ },
571
+ "50323": {
572
+ "content": "[unused38]",
573
+ "lstrip": false,
574
+ "normalized": true,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": false
578
+ },
579
+ "50324": {
580
+ "content": "[unused39]",
581
+ "lstrip": false,
582
+ "normalized": true,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": false
586
+ },
587
+ "50325": {
588
+ "content": "[unused40]",
589
+ "lstrip": false,
590
+ "normalized": true,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": false
594
+ },
595
+ "50326": {
596
+ "content": "[unused41]",
597
+ "lstrip": false,
598
+ "normalized": true,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": false
602
+ },
603
+ "50327": {
604
+ "content": "[unused42]",
605
+ "lstrip": false,
606
+ "normalized": true,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": false
610
+ },
611
+ "50328": {
612
+ "content": "[unused43]",
613
+ "lstrip": false,
614
+ "normalized": true,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": false
618
+ },
619
+ "50329": {
620
+ "content": "[unused44]",
621
+ "lstrip": false,
622
+ "normalized": true,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": false
626
+ },
627
+ "50330": {
628
+ "content": "[unused45]",
629
+ "lstrip": false,
630
+ "normalized": true,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": false
634
+ },
635
+ "50331": {
636
+ "content": "[unused46]",
637
+ "lstrip": false,
638
+ "normalized": true,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": false
642
+ },
643
+ "50332": {
644
+ "content": "[unused47]",
645
+ "lstrip": false,
646
+ "normalized": true,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": false
650
+ },
651
+ "50333": {
652
+ "content": "[unused48]",
653
+ "lstrip": false,
654
+ "normalized": true,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": false
658
+ },
659
+ "50334": {
660
+ "content": "[unused49]",
661
+ "lstrip": false,
662
+ "normalized": true,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": false
666
+ },
667
+ "50335": {
668
+ "content": "[unused50]",
669
+ "lstrip": false,
670
+ "normalized": true,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": false
674
+ },
675
+ "50336": {
676
+ "content": "[unused51]",
677
+ "lstrip": false,
678
+ "normalized": true,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": false
682
+ },
683
+ "50337": {
684
+ "content": "[unused52]",
685
+ "lstrip": false,
686
+ "normalized": true,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": false
690
+ },
691
+ "50338": {
692
+ "content": "[unused53]",
693
+ "lstrip": false,
694
+ "normalized": true,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": false
698
+ },
699
+ "50339": {
700
+ "content": "[unused54]",
701
+ "lstrip": false,
702
+ "normalized": true,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": false
706
+ },
707
+ "50340": {
708
+ "content": "[unused55]",
709
+ "lstrip": false,
710
+ "normalized": true,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": false
714
+ },
715
+ "50341": {
716
+ "content": "[unused56]",
717
+ "lstrip": false,
718
+ "normalized": true,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": false
722
+ },
723
+ "50342": {
724
+ "content": "[unused57]",
725
+ "lstrip": false,
726
+ "normalized": true,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": false
730
+ },
731
+ "50343": {
732
+ "content": "[unused58]",
733
+ "lstrip": false,
734
+ "normalized": true,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": false
738
+ },
739
+ "50344": {
740
+ "content": "[unused59]",
741
+ "lstrip": false,
742
+ "normalized": true,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": false
746
+ },
747
+ "50345": {
748
+ "content": "[unused60]",
749
+ "lstrip": false,
750
+ "normalized": true,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": false
754
+ },
755
+ "50346": {
756
+ "content": "[unused61]",
757
+ "lstrip": false,
758
+ "normalized": true,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": false
762
+ },
763
+ "50347": {
764
+ "content": "[unused62]",
765
+ "lstrip": false,
766
+ "normalized": true,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": false
770
+ },
771
+ "50348": {
772
+ "content": "[unused63]",
773
+ "lstrip": false,
774
+ "normalized": true,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": false
778
+ },
779
+ "50349": {
780
+ "content": "[unused64]",
781
+ "lstrip": false,
782
+ "normalized": true,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": false
786
+ },
787
+ "50350": {
788
+ "content": "[unused65]",
789
+ "lstrip": false,
790
+ "normalized": true,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": false
794
+ },
795
+ "50351": {
796
+ "content": "[unused66]",
797
+ "lstrip": false,
798
+ "normalized": true,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": false
802
+ },
803
+ "50352": {
804
+ "content": "[unused67]",
805
+ "lstrip": false,
806
+ "normalized": true,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": false
810
+ },
811
+ "50353": {
812
+ "content": "[unused68]",
813
+ "lstrip": false,
814
+ "normalized": true,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": false
818
+ },
819
+ "50354": {
820
+ "content": "[unused69]",
821
+ "lstrip": false,
822
+ "normalized": true,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": false
826
+ },
827
+ "50355": {
828
+ "content": "[unused70]",
829
+ "lstrip": false,
830
+ "normalized": true,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": false
834
+ },
835
+ "50356": {
836
+ "content": "[unused71]",
837
+ "lstrip": false,
838
+ "normalized": true,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": false
842
+ },
843
+ "50357": {
844
+ "content": "[unused72]",
845
+ "lstrip": false,
846
+ "normalized": true,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": false
850
+ },
851
+ "50358": {
852
+ "content": "[unused73]",
853
+ "lstrip": false,
854
+ "normalized": true,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": false
858
+ },
859
+ "50359": {
860
+ "content": "[unused74]",
861
+ "lstrip": false,
862
+ "normalized": true,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": false
866
+ },
867
+ "50360": {
868
+ "content": "[unused75]",
869
+ "lstrip": false,
870
+ "normalized": true,
871
+ "rstrip": false,
872
+ "single_word": false,
873
+ "special": false
874
+ },
875
+ "50361": {
876
+ "content": "[unused76]",
877
+ "lstrip": false,
878
+ "normalized": true,
879
+ "rstrip": false,
880
+ "single_word": false,
881
+ "special": false
882
+ },
883
+ "50362": {
884
+ "content": "[unused77]",
885
+ "lstrip": false,
886
+ "normalized": true,
887
+ "rstrip": false,
888
+ "single_word": false,
889
+ "special": false
890
+ },
891
+ "50363": {
892
+ "content": "[unused78]",
893
+ "lstrip": false,
894
+ "normalized": true,
895
+ "rstrip": false,
896
+ "single_word": false,
897
+ "special": false
898
+ },
899
+ "50364": {
900
+ "content": "[unused79]",
901
+ "lstrip": false,
902
+ "normalized": true,
903
+ "rstrip": false,
904
+ "single_word": false,
905
+ "special": false
906
+ },
907
+ "50365": {
908
+ "content": "[unused80]",
909
+ "lstrip": false,
910
+ "normalized": true,
911
+ "rstrip": false,
912
+ "single_word": false,
913
+ "special": false
914
+ },
915
+ "50366": {
916
+ "content": "[unused81]",
917
+ "lstrip": false,
918
+ "normalized": true,
919
+ "rstrip": false,
920
+ "single_word": false,
921
+ "special": false
922
+ },
923
+ "50367": {
924
+ "content": "[unused82]",
925
+ "lstrip": false,
926
+ "normalized": true,
927
+ "rstrip": false,
928
+ "single_word": false,
929
+ "special": false
930
+ },
931
+ "50368": {
932
+ "content": "<global-img>",
933
+ "lstrip": false,
934
+ "normalized": false,
935
+ "rstrip": false,
936
+ "single_word": false,
937
+ "special": true
938
+ },
939
+ "50369": {
940
+ "content": "<row_1_col_1>",
941
+ "lstrip": false,
942
+ "normalized": false,
943
+ "rstrip": false,
944
+ "single_word": false,
945
+ "special": true
946
+ },
947
+ "50370": {
948
+ "content": "<row_1_col_2>",
949
+ "lstrip": false,
950
+ "normalized": false,
951
+ "rstrip": false,
952
+ "single_word": false,
953
+ "special": true
954
+ },
955
+ "50371": {
956
+ "content": "<row_1_col_3>",
957
+ "lstrip": false,
958
+ "normalized": false,
959
+ "rstrip": false,
960
+ "single_word": false,
961
+ "special": true
962
+ },
963
+ "50372": {
964
+ "content": "<row_1_col_4>",
965
+ "lstrip": false,
966
+ "normalized": false,
967
+ "rstrip": false,
968
+ "single_word": false,
969
+ "special": true
970
+ },
971
+ "50373": {
972
+ "content": "<row_1_col_5>",
973
+ "lstrip": false,
974
+ "normalized": false,
975
+ "rstrip": false,
976
+ "single_word": false,
977
+ "special": true
978
+ },
979
+ "50374": {
980
+ "content": "<row_1_col_6>",
981
+ "lstrip": false,
982
+ "normalized": false,
983
+ "rstrip": false,
984
+ "single_word": false,
985
+ "special": true
986
+ },
987
+ "50375": {
988
+ "content": "<row_2_col_1>",
989
+ "lstrip": false,
990
+ "normalized": false,
991
+ "rstrip": false,
992
+ "single_word": false,
993
+ "special": true
994
+ },
995
+ "50376": {
996
+ "content": "<row_2_col_2>",
997
+ "lstrip": false,
998
+ "normalized": false,
999
+ "rstrip": false,
1000
+ "single_word": false,
1001
+ "special": true
1002
+ },
1003
+ "50377": {
1004
+ "content": "<row_2_col_3>",
1005
+ "lstrip": false,
1006
+ "normalized": false,
1007
+ "rstrip": false,
1008
+ "single_word": false,
1009
+ "special": true
1010
+ },
1011
+ "50378": {
1012
+ "content": "<row_2_col_4>",
1013
+ "lstrip": false,
1014
+ "normalized": false,
1015
+ "rstrip": false,
1016
+ "single_word": false,
1017
+ "special": true
1018
+ },
1019
+ "50379": {
1020
+ "content": "<row_2_col_5>",
1021
+ "lstrip": false,
1022
+ "normalized": false,
1023
+ "rstrip": false,
1024
+ "single_word": false,
1025
+ "special": true
1026
+ },
1027
+ "50380": {
1028
+ "content": "<row_2_col_6>",
1029
+ "lstrip": false,
1030
+ "normalized": false,
1031
+ "rstrip": false,
1032
+ "single_word": false,
1033
+ "special": true
1034
+ },
1035
+ "50381": {
1036
+ "content": "<row_3_col_1>",
1037
+ "lstrip": false,
1038
+ "normalized": false,
1039
+ "rstrip": false,
1040
+ "single_word": false,
1041
+ "special": true
1042
+ },
1043
+ "50382": {
1044
+ "content": "<row_3_col_2>",
1045
+ "lstrip": false,
1046
+ "normalized": false,
1047
+ "rstrip": false,
1048
+ "single_word": false,
1049
+ "special": true
1050
+ },
1051
+ "50383": {
1052
+ "content": "<row_3_col_3>",
1053
+ "lstrip": false,
1054
+ "normalized": false,
1055
+ "rstrip": false,
1056
+ "single_word": false,
1057
+ "special": true
1058
+ },
1059
+ "50384": {
1060
+ "content": "<row_3_col_4>",
1061
+ "lstrip": false,
1062
+ "normalized": false,
1063
+ "rstrip": false,
1064
+ "single_word": false,
1065
+ "special": true
1066
+ },
1067
+ "50385": {
1068
+ "content": "<row_3_col_5>",
1069
+ "lstrip": false,
1070
+ "normalized": false,
1071
+ "rstrip": false,
1072
+ "single_word": false,
1073
+ "special": true
1074
+ },
1075
+ "50386": {
1076
+ "content": "<row_3_col_6>",
1077
+ "lstrip": false,
1078
+ "normalized": false,
1079
+ "rstrip": false,
1080
+ "single_word": false,
1081
+ "special": true
1082
+ },
1083
+ "50387": {
1084
+ "content": "<row_4_col_1>",
1085
+ "lstrip": false,
1086
+ "normalized": false,
1087
+ "rstrip": false,
1088
+ "single_word": false,
1089
+ "special": true
1090
+ },
1091
+ "50388": {
1092
+ "content": "<row_4_col_2>",
1093
+ "lstrip": false,
1094
+ "normalized": false,
1095
+ "rstrip": false,
1096
+ "single_word": false,
1097
+ "special": true
1098
+ },
1099
+ "50389": {
1100
+ "content": "<row_4_col_3>",
1101
+ "lstrip": false,
1102
+ "normalized": false,
1103
+ "rstrip": false,
1104
+ "single_word": false,
1105
+ "special": true
1106
+ },
1107
+ "50390": {
1108
+ "content": "<row_4_col_4>",
1109
+ "lstrip": false,
1110
+ "normalized": false,
1111
+ "rstrip": false,
1112
+ "single_word": false,
1113
+ "special": true
1114
+ },
1115
+ "50391": {
1116
+ "content": "<row_4_col_5>",
1117
+ "lstrip": false,
1118
+ "normalized": false,
1119
+ "rstrip": false,
1120
+ "single_word": false,
1121
+ "special": true
1122
+ },
1123
+ "50392": {
1124
+ "content": "<row_4_col_6>",
1125
+ "lstrip": false,
1126
+ "normalized": false,
1127
+ "rstrip": false,
1128
+ "single_word": false,
1129
+ "special": true
1130
+ },
1131
+ "50393": {
1132
+ "content": "<row_5_col_1>",
1133
+ "lstrip": false,
1134
+ "normalized": false,
1135
+ "rstrip": false,
1136
+ "single_word": false,
1137
+ "special": true
1138
+ },
1139
+ "50394": {
1140
+ "content": "<row_5_col_2>",
1141
+ "lstrip": false,
1142
+ "normalized": false,
1143
+ "rstrip": false,
1144
+ "single_word": false,
1145
+ "special": true
1146
+ },
1147
+ "50395": {
1148
+ "content": "<row_5_col_3>",
1149
+ "lstrip": false,
1150
+ "normalized": false,
1151
+ "rstrip": false,
1152
+ "single_word": false,
1153
+ "special": true
1154
+ },
1155
+ "50396": {
1156
+ "content": "<row_5_col_4>",
1157
+ "lstrip": false,
1158
+ "normalized": false,
1159
+ "rstrip": false,
1160
+ "single_word": false,
1161
+ "special": true
1162
+ },
1163
+ "50397": {
1164
+ "content": "<row_5_col_5>",
1165
+ "lstrip": false,
1166
+ "normalized": false,
1167
+ "rstrip": false,
1168
+ "single_word": false,
1169
+ "special": true
1170
+ },
1171
+ "50398": {
1172
+ "content": "<row_5_col_6>",
1173
+ "lstrip": false,
1174
+ "normalized": false,
1175
+ "rstrip": false,
1176
+ "single_word": false,
1177
+ "special": true
1178
+ },
1179
+ "50399": {
1180
+ "content": "<row_6_col_1>",
1181
+ "lstrip": false,
1182
+ "normalized": false,
1183
+ "rstrip": false,
1184
+ "single_word": false,
1185
+ "special": true
1186
+ },
1187
+ "50400": {
1188
+ "content": "<row_6_col_2>",
1189
+ "lstrip": false,
1190
+ "normalized": false,
1191
+ "rstrip": false,
1192
+ "single_word": false,
1193
+ "special": true
1194
+ },
1195
+ "50401": {
1196
+ "content": "<row_6_col_3>",
1197
+ "lstrip": false,
1198
+ "normalized": false,
1199
+ "rstrip": false,
1200
+ "single_word": false,
1201
+ "special": true
1202
+ },
1203
+ "50402": {
1204
+ "content": "<row_6_col_4>",
1205
+ "lstrip": false,
1206
+ "normalized": false,
1207
+ "rstrip": false,
1208
+ "single_word": false,
1209
+ "special": true
1210
+ },
1211
+ "50403": {
1212
+ "content": "<row_6_col_5>",
1213
+ "lstrip": false,
1214
+ "normalized": false,
1215
+ "rstrip": false,
1216
+ "single_word": false,
1217
+ "special": true
1218
+ },
1219
+ "50404": {
1220
+ "content": "<row_6_col_6>",
1221
+ "lstrip": false,
1222
+ "normalized": false,
1223
+ "rstrip": false,
1224
+ "single_word": false,
1225
+ "special": true
1226
+ },
1227
+ "50405": {
1228
+ "content": "<end_of_utterance>",
1229
+ "lstrip": false,
1230
+ "normalized": false,
1231
+ "rstrip": false,
1232
+ "single_word": false,
1233
+ "special": true
1234
+ },
1235
+ "50406": {
1236
+ "content": "<fake_token_around_image>",
1237
+ "lstrip": false,
1238
+ "normalized": false,
1239
+ "rstrip": false,
1240
+ "single_word": false,
1241
+ "special": true
1242
+ },
1243
+ "50407": {
1244
+ "content": "<image>",
1245
+ "lstrip": false,
1246
+ "normalized": false,
1247
+ "rstrip": false,
1248
+ "single_word": false,
1249
+ "special": true
1250
+ }
1251
+ },
1252
+ "additional_special_tokens": [
1253
+ "<global-img>",
1254
+ "<row_1_col_1>",
1255
+ "<row_1_col_2>",
1256
+ "<row_1_col_3>",
1257
+ "<row_1_col_4>",
1258
+ "<row_1_col_5>",
1259
+ "<row_1_col_6>",
1260
+ "<row_2_col_1>",
1261
+ "<row_2_col_2>",
1262
+ "<row_2_col_3>",
1263
+ "<row_2_col_4>",
1264
+ "<row_2_col_5>",
1265
+ "<row_2_col_6>",
1266
+ "<row_3_col_1>",
1267
+ "<row_3_col_2>",
1268
+ "<row_3_col_3>",
1269
+ "<row_3_col_4>",
1270
+ "<row_3_col_5>",
1271
+ "<row_3_col_6>",
1272
+ "<row_4_col_1>",
1273
+ "<row_4_col_2>",
1274
+ "<row_4_col_3>",
1275
+ "<row_4_col_4>",
1276
+ "<row_4_col_5>",
1277
+ "<row_4_col_6>",
1278
+ "<row_5_col_1>",
1279
+ "<row_5_col_2>",
1280
+ "<row_5_col_3>",
1281
+ "<row_5_col_4>",
1282
+ "<row_5_col_5>",
1283
+ "<row_5_col_6>",
1284
+ "<row_6_col_1>",
1285
+ "<row_6_col_2>",
1286
+ "<row_6_col_3>",
1287
+ "<row_6_col_4>",
1288
+ "<row_6_col_5>",
1289
+ "<row_6_col_6>",
1290
+ "<end_of_utterance>",
1291
+ "<fake_token_around_image>",
1292
+ "<image>"
1293
+ ],
1294
+ "clean_up_tokenization_spaces": true,
1295
+ "cls_token": "[CLS]",
1296
+ "extra_special_tokens": {},
1297
+ "legacy": false,
1298
+ "mask_token": "[MASK]",
1299
+ "model_input_names": [
1300
+ "input_ids",
1301
+ "attention_mask",
1302
+ "pixel_values",
1303
+ "pixel_attention_mask"
1304
+ ],
1305
+ "model_max_length": 8192,
1306
+ "pad_token": "[PAD]",
1307
+ "sep_token": "[SEP]",
1308
+ "tokenizer_class": "PreTrainedTokenizerFast",
1309
+ "unk_token": "[UNK]"
1310
+ }
weights.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ec7326002bbf7e3bd992e8dd507b118b7aa86a4ba4f5deb2bf127fc165c9e4d
3
+ size 568518398