Add tiny processor fixture for testing
Browse files- .gitattributes +4 -11
- config.json +158 -0
- generation_config.json +9 -0
- preprocessor_config.json +17 -0
- tokenizer.json +689 -0
- tokenizer_config.json +64 -0
.gitattributes
CHANGED
|
@@ -1,35 +1,28 @@
|
|
| 1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 4 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
-
*
|
| 26 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
-
*.
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bin.* filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 6 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 11 |
*.model filter=lfs diff=lfs merge=lfs -text
|
| 12 |
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
| 13 |
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 14 |
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 15 |
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 16 |
*.pb filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
| 17 |
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 18 |
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 19 |
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 21 |
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 22 |
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 23 |
*.tgz filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 24 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 25 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
model.safetensors filter=lfs diff=lfs merge=lfs -text
|
config.json
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"VisionEncoderDecoderModel"
|
| 4 |
+
],
|
| 5 |
+
"decoder": {
|
| 6 |
+
"_name_or_path": "",
|
| 7 |
+
"activation_dropout": 0.0,
|
| 8 |
+
"activation_function": "gelu",
|
| 9 |
+
"add_cross_attention": true,
|
| 10 |
+
"architectures": null,
|
| 11 |
+
"attention_dropout": 0.0,
|
| 12 |
+
"bad_words_ids": null,
|
| 13 |
+
"bos_token_id": 0,
|
| 14 |
+
"chunk_size_feed_forward": 0,
|
| 15 |
+
"classifier_dropout": 0.0,
|
| 16 |
+
"d_model": 1024,
|
| 17 |
+
"decoder_attention_heads": 16,
|
| 18 |
+
"decoder_ffn_dim": 4096,
|
| 19 |
+
"decoder_layerdrop": 0.0,
|
| 20 |
+
"decoder_layers": 12,
|
| 21 |
+
"decoder_start_token_id": 2,
|
| 22 |
+
"diversity_penalty": 0.0,
|
| 23 |
+
"do_sample": false,
|
| 24 |
+
"dropout": 0.1,
|
| 25 |
+
"early_stopping": false,
|
| 26 |
+
"cross_attention_hidden_size": 768,
|
| 27 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 28 |
+
"eos_token_id": 2,
|
| 29 |
+
"finetuning_task": null,
|
| 30 |
+
"forced_bos_token_id": null,
|
| 31 |
+
"forced_eos_token_id": null,
|
| 32 |
+
"id2label": {
|
| 33 |
+
"0": "LABEL_0",
|
| 34 |
+
"1": "LABEL_1"
|
| 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 |
+
},
|
| 43 |
+
"length_penalty": 1.0,
|
| 44 |
+
"max_length": 20,
|
| 45 |
+
"max_position_embeddings": 512,
|
| 46 |
+
"min_length": 0,
|
| 47 |
+
"model_type": "trocr",
|
| 48 |
+
"no_repeat_ngram_size": 0,
|
| 49 |
+
"num_beam_groups": 1,
|
| 50 |
+
"num_beams": 1,
|
| 51 |
+
"num_return_sequences": 1,
|
| 52 |
+
"output_attentions": false,
|
| 53 |
+
"output_hidden_states": false,
|
| 54 |
+
"output_scores": false,
|
| 55 |
+
"pad_token_id": 1,
|
| 56 |
+
"prefix": null,
|
| 57 |
+
"problem_type": null,
|
| 58 |
+
"pruned_heads": {},
|
| 59 |
+
"remove_invalid_values": false,
|
| 60 |
+
"repetition_penalty": 1.0,
|
| 61 |
+
"return_dict": true,
|
| 62 |
+
"return_dict_in_generate": false,
|
| 63 |
+
"scale_embedding": false,
|
| 64 |
+
"sep_token_id": null,
|
| 65 |
+
"task_specific_params": null,
|
| 66 |
+
"temperature": 1.0,
|
| 67 |
+
"tie_encoder_decoder": false,
|
| 68 |
+
"tie_word_embeddings": true,
|
| 69 |
+
"tokenizer_class": null,
|
| 70 |
+
"top_k": 50,
|
| 71 |
+
"top_p": 1.0,
|
| 72 |
+
"torch_dtype": null,
|
| 73 |
+
"torchscript": false,
|
| 74 |
+
"transformers_version": "4.12.0.dev0",
|
| 75 |
+
"use_bfloat16": false,
|
| 76 |
+
"use_cache": false,
|
| 77 |
+
"vocab_size": 50265
|
| 78 |
+
},
|
| 79 |
+
"encoder": {
|
| 80 |
+
"_name_or_path": "",
|
| 81 |
+
"add_cross_attention": false,
|
| 82 |
+
"architectures": null,
|
| 83 |
+
"attention_probs_dropout_prob": 0.0,
|
| 84 |
+
"bad_words_ids": null,
|
| 85 |
+
"bos_token_id": null,
|
| 86 |
+
"chunk_size_feed_forward": 0,
|
| 87 |
+
"decoder_start_token_id": null,
|
| 88 |
+
"diversity_penalty": 0.0,
|
| 89 |
+
"do_sample": false,
|
| 90 |
+
"early_stopping": false,
|
| 91 |
+
"cross_attention_hidden_size": null,
|
| 92 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 93 |
+
"eos_token_id": null,
|
| 94 |
+
"finetuning_task": null,
|
| 95 |
+
"forced_bos_token_id": null,
|
| 96 |
+
"forced_eos_token_id": null,
|
| 97 |
+
"hidden_act": "gelu",
|
| 98 |
+
"hidden_dropout_prob": 0.0,
|
| 99 |
+
"hidden_size": 768,
|
| 100 |
+
"id2label": {
|
| 101 |
+
"0": "LABEL_0",
|
| 102 |
+
"1": "LABEL_1"
|
| 103 |
+
},
|
| 104 |
+
"image_size": 384,
|
| 105 |
+
"initializer_range": 0.02,
|
| 106 |
+
"intermediate_size": 3072,
|
| 107 |
+
"is_decoder": false,
|
| 108 |
+
"is_encoder_decoder": false,
|
| 109 |
+
"label2id": {
|
| 110 |
+
"LABEL_0": 0,
|
| 111 |
+
"LABEL_1": 1
|
| 112 |
+
},
|
| 113 |
+
"layer_norm_eps": 1e-12,
|
| 114 |
+
"length_penalty": 1.0,
|
| 115 |
+
"max_length": 20,
|
| 116 |
+
"min_length": 0,
|
| 117 |
+
"model_type": "vit",
|
| 118 |
+
"no_repeat_ngram_size": 0,
|
| 119 |
+
"num_attention_heads": 12,
|
| 120 |
+
"num_beam_groups": 1,
|
| 121 |
+
"num_beams": 1,
|
| 122 |
+
"num_channels": 3,
|
| 123 |
+
"num_hidden_layers": 12,
|
| 124 |
+
"num_return_sequences": 1,
|
| 125 |
+
"output_attentions": false,
|
| 126 |
+
"output_hidden_states": false,
|
| 127 |
+
"output_scores": false,
|
| 128 |
+
"pad_token_id": null,
|
| 129 |
+
"patch_size": 16,
|
| 130 |
+
"prefix": null,
|
| 131 |
+
"problem_type": null,
|
| 132 |
+
"pruned_heads": {},
|
| 133 |
+
"qkv_bias": false,
|
| 134 |
+
"remove_invalid_values": false,
|
| 135 |
+
"repetition_penalty": 1.0,
|
| 136 |
+
"return_dict": true,
|
| 137 |
+
"return_dict_in_generate": false,
|
| 138 |
+
"sep_token_id": null,
|
| 139 |
+
"task_specific_params": null,
|
| 140 |
+
"temperature": 1.0,
|
| 141 |
+
"tie_encoder_decoder": false,
|
| 142 |
+
"tie_word_embeddings": true,
|
| 143 |
+
"tokenizer_class": null,
|
| 144 |
+
"top_k": 50,
|
| 145 |
+
"top_p": 1.0,
|
| 146 |
+
"torch_dtype": null,
|
| 147 |
+
"torchscript": false,
|
| 148 |
+
"transformers_version": "4.12.0.dev0",
|
| 149 |
+
"use_bfloat16": false
|
| 150 |
+
},
|
| 151 |
+
"is_encoder_decoder": true,
|
| 152 |
+
"model_type": "vision-encoder-decoder",
|
| 153 |
+
"processor_class": "TrOCRProcessor",
|
| 154 |
+
"tie_word_embeddings": false,
|
| 155 |
+
"torch_dtype": "float32",
|
| 156 |
+
"transformers_version": null,
|
| 157 |
+
"vocab_size": 501
|
| 158 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 0,
|
| 4 |
+
"decoder_start_token_id": 2,
|
| 5 |
+
"eos_token_id": 2,
|
| 6 |
+
"pad_token_id": 1,
|
| 7 |
+
"transformers_version": "4.27.0.dev0",
|
| 8 |
+
"use_cache": false
|
| 9 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_resize": true,
|
| 4 |
+
"image_processor_type": "ViTImageProcessor",
|
| 5 |
+
"image_mean": [
|
| 6 |
+
0.5,
|
| 7 |
+
0.5,
|
| 8 |
+
0.5
|
| 9 |
+
],
|
| 10 |
+
"image_std": [
|
| 11 |
+
0.5,
|
| 12 |
+
0.5,
|
| 13 |
+
0.5
|
| 14 |
+
],
|
| 15 |
+
"resample": 2,
|
| 16 |
+
"size": 384
|
| 17 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,689 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "1.0",
|
| 3 |
+
"truncation": null,
|
| 4 |
+
"padding": null,
|
| 5 |
+
"added_tokens": [
|
| 6 |
+
{
|
| 7 |
+
"id": 0,
|
| 8 |
+
"special": true,
|
| 9 |
+
"content": "<s>",
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"rstrip": false,
|
| 13 |
+
"normalized": true
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"id": 1,
|
| 17 |
+
"special": true,
|
| 18 |
+
"content": "<pad>",
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"lstrip": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"normalized": true
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"id": 2,
|
| 26 |
+
"special": true,
|
| 27 |
+
"content": "</s>",
|
| 28 |
+
"single_word": false,
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"rstrip": false,
|
| 31 |
+
"normalized": true
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"id": 3,
|
| 35 |
+
"special": true,
|
| 36 |
+
"content": "<unk>",
|
| 37 |
+
"single_word": false,
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"normalized": true
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"id": 500,
|
| 44 |
+
"special": true,
|
| 45 |
+
"content": "<mask>",
|
| 46 |
+
"single_word": false,
|
| 47 |
+
"lstrip": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"normalized": true
|
| 50 |
+
}
|
| 51 |
+
],
|
| 52 |
+
"normalizer": null,
|
| 53 |
+
"pre_tokenizer": {
|
| 54 |
+
"type": "ByteLevel",
|
| 55 |
+
"add_prefix_space": false,
|
| 56 |
+
"trim_offsets": true
|
| 57 |
+
},
|
| 58 |
+
"post_processor": {
|
| 59 |
+
"type": "RobertaProcessing",
|
| 60 |
+
"sep": [
|
| 61 |
+
"</s>",
|
| 62 |
+
2
|
| 63 |
+
],
|
| 64 |
+
"cls": [
|
| 65 |
+
"<s>",
|
| 66 |
+
0
|
| 67 |
+
],
|
| 68 |
+
"trim_offsets": true,
|
| 69 |
+
"add_prefix_space": false
|
| 70 |
+
},
|
| 71 |
+
"decoder": {
|
| 72 |
+
"type": "ByteLevel",
|
| 73 |
+
"add_prefix_space": true,
|
| 74 |
+
"trim_offsets": true
|
| 75 |
+
},
|
| 76 |
+
"model": {
|
| 77 |
+
"dropout": null,
|
| 78 |
+
"unk_token": null,
|
| 79 |
+
"continuing_subword_prefix": "",
|
| 80 |
+
"end_of_word_suffix": "",
|
| 81 |
+
"fuse_unk": false,
|
| 82 |
+
"vocab": {
|
| 83 |
+
"<s>": 0,
|
| 84 |
+
"<pad>": 1,
|
| 85 |
+
"</s>": 2,
|
| 86 |
+
"<unk>": 3,
|
| 87 |
+
".": 4,
|
| 88 |
+
"Ġthe": 5,
|
| 89 |
+
",": 6,
|
| 90 |
+
"Ġto": 7,
|
| 91 |
+
"Ġand": 8,
|
| 92 |
+
"Ġof": 9,
|
| 93 |
+
"Ġa": 10,
|
| 94 |
+
"Ġin": 11,
|
| 95 |
+
"-": 12,
|
| 96 |
+
"Ġfor": 13,
|
| 97 |
+
"Ġthat": 14,
|
| 98 |
+
"Ġon": 15,
|
| 99 |
+
"Ġis": 16,
|
| 100 |
+
"âĢ": 17,
|
| 101 |
+
"'s": 18,
|
| 102 |
+
"Ġwith": 19,
|
| 103 |
+
"ĠThe": 20,
|
| 104 |
+
"Ġwas": 21,
|
| 105 |
+
"Ġ\"": 22,
|
| 106 |
+
"Ġat": 23,
|
| 107 |
+
"Ġit": 24,
|
| 108 |
+
"Ġas": 25,
|
| 109 |
+
"Ġsaid": 26,
|
| 110 |
+
"Ļ": 27,
|
| 111 |
+
"Ġbe": 28,
|
| 112 |
+
"s": 29,
|
| 113 |
+
"Ġby": 30,
|
| 114 |
+
"Ġfrom": 31,
|
| 115 |
+
"Ġare": 32,
|
| 116 |
+
"Ġhave": 33,
|
| 117 |
+
"Ġhas": 34,
|
| 118 |
+
":": 35,
|
| 119 |
+
"Ġ(": 36,
|
| 120 |
+
"Ġhe": 37,
|
| 121 |
+
"ĠI": 38,
|
| 122 |
+
"Ġhis": 39,
|
| 123 |
+
"Ġwill": 40,
|
| 124 |
+
"Ġan": 41,
|
| 125 |
+
"Ġthis": 42,
|
| 126 |
+
")": 43,
|
| 127 |
+
"ĠâĢ": 44,
|
| 128 |
+
"Ġnot": 45,
|
| 129 |
+
"Ŀ": 46,
|
| 130 |
+
"Ġyou": 47,
|
| 131 |
+
"ľ": 48,
|
| 132 |
+
"Ġtheir": 49,
|
| 133 |
+
"Ġor": 50,
|
| 134 |
+
"Ġthey": 51,
|
| 135 |
+
"Ġwe": 52,
|
| 136 |
+
"Ġbut": 53,
|
| 137 |
+
"Ġwho": 54,
|
| 138 |
+
"Ġmore": 55,
|
| 139 |
+
"Ġhad": 56,
|
| 140 |
+
"Ġbeen": 57,
|
| 141 |
+
"Ġwere": 58,
|
| 142 |
+
"Ġabout": 59,
|
| 143 |
+
",\"": 60,
|
| 144 |
+
"Ġwhich": 61,
|
| 145 |
+
"Ġup": 62,
|
| 146 |
+
"Ġits": 63,
|
| 147 |
+
"Ġcan": 64,
|
| 148 |
+
"Ġone": 65,
|
| 149 |
+
"Ġout": 66,
|
| 150 |
+
"Ġalso": 67,
|
| 151 |
+
"Ġ$": 68,
|
| 152 |
+
"Ġher": 69,
|
| 153 |
+
"Ġall": 70,
|
| 154 |
+
"Ġafter": 71,
|
| 155 |
+
".\"": 72,
|
| 156 |
+
"/": 73,
|
| 157 |
+
"Ġwould": 74,
|
| 158 |
+
"'t": 75,
|
| 159 |
+
"Ġyear": 76,
|
| 160 |
+
"Ġwhen": 77,
|
| 161 |
+
"Ġfirst": 78,
|
| 162 |
+
"Ġshe": 79,
|
| 163 |
+
"Ġtwo": 80,
|
| 164 |
+
"Ġover": 81,
|
| 165 |
+
"Ġpeople": 82,
|
| 166 |
+
"ĠA": 83,
|
| 167 |
+
"Ġour": 84,
|
| 168 |
+
"ĠIt": 85,
|
| 169 |
+
"Ġtime": 86,
|
| 170 |
+
"Ġthan": 87,
|
| 171 |
+
"Ġinto": 88,
|
| 172 |
+
"Ġthere": 89,
|
| 173 |
+
"t": 90,
|
| 174 |
+
"ĠHe": 91,
|
| 175 |
+
"Ġnew": 92,
|
| 176 |
+
"ĠâĢĶ": 93,
|
| 177 |
+
"Ġlast": 94,
|
| 178 |
+
"Ġjust": 95,
|
| 179 |
+
"ĠIn": 96,
|
| 180 |
+
"Ġother": 97,
|
| 181 |
+
"Ġso": 98,
|
| 182 |
+
"Ġwhat": 99,
|
| 183 |
+
"I": 100,
|
| 184 |
+
"Ġlike": 101,
|
| 185 |
+
"a": 102,
|
| 186 |
+
"Ġsome": 103,
|
| 187 |
+
"S": 104,
|
| 188 |
+
"ë": 105,
|
| 189 |
+
"Ġthem": 106,
|
| 190 |
+
"Ġyears": 107,
|
| 191 |
+
"'": 108,
|
| 192 |
+
"Ġdo": 109,
|
| 193 |
+
"Ġyour": 110,
|
| 194 |
+
"Ġ-": 111,
|
| 195 |
+
"Ġ1": 112,
|
| 196 |
+
"\"": 113,
|
| 197 |
+
"Ġif": 114,
|
| 198 |
+
"Ġcould": 115,
|
| 199 |
+
"?": 116,
|
| 200 |
+
"Ġno": 117,
|
| 201 |
+
"i": 118,
|
| 202 |
+
"m": 119,
|
| 203 |
+
"Ġget": 120,
|
| 204 |
+
"ĠU": 121,
|
| 205 |
+
"Ġnow": 122,
|
| 206 |
+
"Ġhim": 123,
|
| 207 |
+
"Ġback": 124,
|
| 208 |
+
"ĠBut": 125,
|
| 209 |
+
"ĠâĢĵ": 126,
|
| 210 |
+
"Ġmy": 127,
|
| 211 |
+
"Ġ'": 128,
|
| 212 |
+
"Ġonly": 129,
|
| 213 |
+
"Ġthree": 130,
|
| 214 |
+
";": 131,
|
| 215 |
+
"Ġ2": 132,
|
| 216 |
+
"The": 133,
|
| 217 |
+
"1": 134,
|
| 218 |
+
"Ġpercent": 135,
|
| 219 |
+
"Ġagainst": 136,
|
| 220 |
+
"Ġbefore": 137,
|
| 221 |
+
"Ġcompany": 138,
|
| 222 |
+
"o": 139,
|
| 223 |
+
"ĠTrump": 140,
|
| 224 |
+
"Ġhow": 141,
|
| 225 |
+
"Ġbecause": 142,
|
| 226 |
+
"Ġany": 143,
|
| 227 |
+
"Ġmost": 144,
|
| 228 |
+
"Ġbeing": 145,
|
| 229 |
+
"Ġmake": 146,
|
| 230 |
+
"Ġwhere": 147,
|
| 231 |
+
"Ġduring": 148,
|
| 232 |
+
"Ġthrough": 149,
|
| 233 |
+
"Ġwhile": 150,
|
| 234 |
+
"000": 151,
|
| 235 |
+
"ĠThis": 152,
|
| 236 |
+
"Ġmillion": 153,
|
| 237 |
+
"ing": 154,
|
| 238 |
+
"Ġ3": 155,
|
| 239 |
+
"Ġmade": 156,
|
| 240 |
+
"Ġwell": 157,
|
| 241 |
+
"Ġ10": 158,
|
| 242 |
+
"Ġdown": 159,
|
| 243 |
+
"Ġoff": 160,
|
| 244 |
+
"Ġsays": 161,
|
| 245 |
+
"Ġme": 162,
|
| 246 |
+
"ĠB": 163,
|
| 247 |
+
"Ġgoing": 164,
|
| 248 |
+
"Ġteam": 165,
|
| 249 |
+
"ĠWe": 166,
|
| 250 |
+
"Ġthose": 167,
|
| 251 |
+
"Ġgovernment": 168,
|
| 252 |
+
"Ġway": 169,
|
| 253 |
+
"We": 170,
|
| 254 |
+
"Ġmany": 171,
|
| 255 |
+
"Ġthen": 172,
|
| 256 |
+
"Ġwork": 173,
|
| 257 |
+
"Ġtold": 174,
|
| 258 |
+
"com": 175,
|
| 259 |
+
"2": 176,
|
| 260 |
+
"Ġgame": 177,
|
| 261 |
+
"ĠAnd": 178,
|
| 262 |
+
"in": 179,
|
| 263 |
+
"year": 180,
|
| 264 |
+
"Ġp": 181,
|
| 265 |
+
"Ġvery": 182,
|
| 266 |
+
"Ġday": 183,
|
| 267 |
+
"Ġhome": 184,
|
| 268 |
+
"Ġtake": 185,
|
| 269 |
+
"Ġweek": 186,
|
| 270 |
+
"Ġsince": 187,
|
| 271 |
+
"ĠNew": 188,
|
| 272 |
+
"Ġmay": 189,
|
| 273 |
+
"Ġeven": 190,
|
| 274 |
+
"Ġseason": 191,
|
| 275 |
+
"Ġsee": 192,
|
| 276 |
+
"Ġ2017": 193,
|
| 277 |
+
"Ġstate": 194,
|
| 278 |
+
"Ġ5": 195,
|
| 279 |
+
"ed": 196,
|
| 280 |
+
"Ġshould": 197,
|
| 281 |
+
"Ġaround": 198,
|
| 282 |
+
"Ġ2018": 199,
|
| 283 |
+
"Ġsecond": 200,
|
| 284 |
+
"Ġus": 201,
|
| 285 |
+
"Ġstill": 202,
|
| 286 |
+
"Ġmuch": 203,
|
| 287 |
+
"Ġ4": 204,
|
| 288 |
+
"Ġgood": 205,
|
| 289 |
+
"Ġthink": 206,
|
| 290 |
+
"%": 207,
|
| 291 |
+
"ĠS": 208,
|
| 292 |
+
"Ġthese": 209,
|
| 293 |
+
"Ġmarket": 210,
|
| 294 |
+
"ĠD": 211,
|
| 295 |
+
"th": 212,
|
| 296 |
+
"Ġgo": 213,
|
| 297 |
+
"'re": 214,
|
| 298 |
+
"Ġsuch": 215,
|
| 299 |
+
"Ġknow": 216,
|
| 300 |
+
"Ġincluding": 217,
|
| 301 |
+
"Ġdon": 218,
|
| 302 |
+
"y": 219,
|
| 303 |
+
"Ġnext": 220,
|
| 304 |
+
"ĠP": 221,
|
| 305 |
+
"Ġdid": 222,
|
| 306 |
+
"Ġunder": 223,
|
| 307 |
+
"Ġsay": 224,
|
| 308 |
+
"en": 225,
|
| 309 |
+
"ĠL": 226,
|
| 310 |
+
"Ġbetween": 227,
|
| 311 |
+
"Ġper": 228,
|
| 312 |
+
"ĠK": 229,
|
| 313 |
+
"ĠC": 230,
|
| 314 |
+
"Ġ6": 231,
|
| 315 |
+
"Ġworld": 232,
|
| 316 |
+
"Ġpart": 233,
|
| 317 |
+
"ĠN": 234,
|
| 318 |
+
"Ġright": 235,
|
| 319 |
+
"Ġwant": 236,
|
| 320 |
+
"Ġfour": 237,
|
| 321 |
+
"),": 238,
|
| 322 |
+
"Ġhigh": 239,
|
| 323 |
+
"Ġneed": 240,
|
| 324 |
+
"re": 241,
|
| 325 |
+
"e": 242,
|
| 326 |
+
"It": 243,
|
| 327 |
+
"Ġhelp": 244,
|
| 328 |
+
"5": 245,
|
| 329 |
+
"3": 246,
|
| 330 |
+
"Ġcountry": 247,
|
| 331 |
+
"ĠR": 248,
|
| 332 |
+
"Ġpolice": 249,
|
| 333 |
+
"A": 250,
|
| 334 |
+
"Ġlong": 251,
|
| 335 |
+
"ĠThey": 252,
|
| 336 |
+
"Ġend": 253,
|
| 337 |
+
"er": 254,
|
| 338 |
+
"ĠT": 255,
|
| 339 |
+
"ĠM": 256,
|
| 340 |
+
"u": 257,
|
| 341 |
+
"Ġboth": 258,
|
| 342 |
+
"Ġhere": 259,
|
| 343 |
+
"an": 260,
|
| 344 |
+
"on": 261,
|
| 345 |
+
"Ġ7": 262,
|
| 346 |
+
"Ġde": 263,
|
| 347 |
+
"ĠShe": 264,
|
| 348 |
+
"Ġbusiness": 265,
|
| 349 |
+
"Ġreport": 266,
|
| 350 |
+
"j": 267,
|
| 351 |
+
"ers": 268,
|
| 352 |
+
"Ġreally": 269,
|
| 353 |
+
"ĠPresident": 270,
|
| 354 |
+
"ar": 271,
|
| 355 |
+
"ĠG": 272,
|
| 356 |
+
"ĠFriday": 273,
|
| 357 |
+
"ĠF": 274,
|
| 358 |
+
"Ġbest": 275,
|
| 359 |
+
"Ġsame": 276,
|
| 360 |
+
"Ġanother": 277,
|
| 361 |
+
"Ġset": 278,
|
| 362 |
+
"old": 279,
|
| 363 |
+
"ĠThat": 280,
|
| 364 |
+
"as": 281,
|
| 365 |
+
"n": 282,
|
| 366 |
+
"Ġcome": 283,
|
| 367 |
+
"Ġfamily": 284,
|
| 368 |
+
"Ġpublic": 285,
|
| 369 |
+
"ĠFor": 286,
|
| 370 |
+
"ĠAs": 287,
|
| 371 |
+
"0": 288,
|
| 372 |
+
"ĠH": 289,
|
| 373 |
+
"Ġ8": 290,
|
| 374 |
+
"Ġ20": 291,
|
| 375 |
+
"Ġfive": 292,
|
| 376 |
+
"es": 293,
|
| 377 |
+
"ĠTuesday": 294,
|
| 378 |
+
"Ġn": 295,
|
| 379 |
+
"ĠThursday": 296,
|
| 380 |
+
"Ġquarter": 297,
|
| 381 |
+
"h": 298,
|
| 382 |
+
"Ġtop": 299,
|
| 383 |
+
"Ġgot": 300,
|
| 384 |
+
"Ġlife": 301,
|
| 385 |
+
"ĠMonday": 302,
|
| 386 |
+
"Ġfound": 303,
|
| 387 |
+
"Ġuse": 304,
|
| 388 |
+
"ĠW": 305,
|
| 389 |
+
"4": 306,
|
| 390 |
+
"ĠWednesday": 307,
|
| 391 |
+
"Ġown": 308,
|
| 392 |
+
"Ġaccording": 309,
|
| 393 |
+
"Ġplay": 310,
|
| 394 |
+
"Ġshow": 311,
|
| 395 |
+
"ĠSt": 312,
|
| 396 |
+
"Ġman": 313,
|
| 397 |
+
"Ġleft": 314,
|
| 398 |
+
"ĠUnited": 315,
|
| 399 |
+
"Ġ12": 316,
|
| 400 |
+
"Ġplace": 317,
|
| 401 |
+
"ĠIf": 318,
|
| 402 |
+
"Ġlot": 319,
|
| 403 |
+
"Ġformer": 320,
|
| 404 |
+
"Ġ0": 321,
|
| 405 |
+
").": 322,
|
| 406 |
+
"Ġsupport": 323,
|
| 407 |
+
"ie": 324,
|
| 408 |
+
"Ġbillion": 325,
|
| 409 |
+
"Ġt": 326,
|
| 410 |
+
"Ġshares": 327,
|
| 411 |
+
"!": 328,
|
| 412 |
+
"z": 329,
|
| 413 |
+
"k": 330,
|
| 414 |
+
"ĠState": 331,
|
| 415 |
+
"Ġpoints": 332,
|
| 416 |
+
"Ġgroup": 333,
|
| 417 |
+
"Ġschool": 334,
|
| 418 |
+
"Ġinformation": 335,
|
| 419 |
+
"Ġ2016": 336,
|
| 420 |
+
"al": 337,
|
| 421 |
+
"r": 338,
|
| 422 |
+
"Ġwin": 339,
|
| 423 |
+
"Ġnews": 340,
|
| 424 |
+
"Ġused": 341,
|
| 425 |
+
"Ġput": 342,
|
| 426 |
+
"Ġcity": 343,
|
| 427 |
+
"ĠJ": 344,
|
| 428 |
+
"ĠThere": 345,
|
| 429 |
+
"Ġnumber": 346,
|
| 430 |
+
"C": 347,
|
| 431 |
+
"'ve": 348,
|
| 432 |
+
"Ġeach": 349,
|
| 433 |
+
"Ġtoo": 350,
|
| 434 |
+
"Ġwon": 351,
|
| 435 |
+
"ly": 352,
|
| 436 |
+
"Ġmonth": 353,
|
| 437 |
+
"is": 354,
|
| 438 |
+
"Ġadded": 355,
|
| 439 |
+
"Ġlook": 356,
|
| 440 |
+
"Ġbetter": 357,
|
| 441 |
+
"Ġevery": 358,
|
| 442 |
+
"Ġ&": 359,
|
| 443 |
+
"Ġdays": 360,
|
| 444 |
+
"Ġ9": 361,
|
| 445 |
+
"Ġtook": 362,
|
| 446 |
+
"Ġnight": 363,
|
| 447 |
+
"Ġe": 364,
|
| 448 |
+
"Ġ11": 365,
|
| 449 |
+
"os": 366,
|
| 450 |
+
"Ġfew": 367,
|
| 451 |
+
"or": 368,
|
| 452 |
+
"ĠNorth": 369,
|
| 453 |
+
"ĠYou": 370,
|
| 454 |
+
"Ġthird": 371,
|
| 455 |
+
"Ġgreat": 372,
|
| 456 |
+
"Ġcalled": 373,
|
| 457 |
+
"ĠOn": 374,
|
| 458 |
+
"Ġpast": 375,
|
| 459 |
+
"Ġcame": 376,
|
| 460 |
+
"Ġmonths": 377,
|
| 461 |
+
"ĠSaturday": 378,
|
| 462 |
+
"Ġ15": 379,
|
| 463 |
+
"Ġbig": 380,
|
| 464 |
+
"ĠE": 381,
|
| 465 |
+
"ĠUS": 382,
|
| 466 |
+
"Ġthings": 383,
|
| 467 |
+
"ĠO": 384,
|
| 468 |
+
"Ġd": 385,
|
| 469 |
+
"Ġstart": 386,
|
| 470 |
+
"B": 387,
|
| 471 |
+
"Ġstock": 388,
|
| 472 |
+
"Ġ30": 389,
|
| 473 |
+
"Ġwomen": 390,
|
| 474 |
+
"ĠSouth": 391,
|
| 475 |
+
"ĠMay": 392,
|
| 476 |
+
"Ġnever": 393,
|
| 477 |
+
"Ġpresident": 394,
|
| 478 |
+
"ĠSunday": 395,
|
| 479 |
+
"Ġwithout": 396,
|
| 480 |
+
"man": 397,
|
| 481 |
+
"8": 398,
|
| 482 |
+
"Ġdidn": 399,
|
| 483 |
+
"Ġlocal": 400,
|
| 484 |
+
"6": 401,
|
| 485 |
+
"Ġsomething": 402,
|
| 486 |
+
"Ġcase": 403,
|
| 487 |
+
"ĠAll": 404,
|
| 488 |
+
"it": 405,
|
| 489 |
+
"7": 406,
|
| 490 |
+
"ĠSo": 407,
|
| 491 |
+
"Ġchildren": 408,
|
| 492 |
+
"Ġaway": 409,
|
| 493 |
+
"Ġlittle": 410,
|
| 494 |
+
"Ġsix": 411,
|
| 495 |
+
"ĠCity": 412,
|
| 496 |
+
"ĠCounty": 413,
|
| 497 |
+
"Ġdata": 414,
|
| 498 |
+
"at": 415,
|
| 499 |
+
"Ġalready": 416,
|
| 500 |
+
"d": 417,
|
| 501 |
+
"Ġmoney": 418,
|
| 502 |
+
"Ġearly": 419,
|
| 503 |
+
"Ġacross": 420,
|
| 504 |
+
"Ġexpected": 421,
|
| 505 |
+
"Ġrun": 422,
|
| 506 |
+
"Ġlater": 423,
|
| 507 |
+
"am": 424,
|
| 508 |
+
"Ġprice": 425,
|
| 509 |
+
"Ġgames": 426,
|
| 510 |
+
"ĠMr": 427,
|
| 511 |
+
"b": 428,
|
| 512 |
+
"Ġmight": 429,
|
| 513 |
+
"Ġdifferent": 430,
|
| 514 |
+
"Ġreported": 431,
|
| 515 |
+
"Ġdeal": 432,
|
| 516 |
+
"Ġmedia": 433,
|
| 517 |
+
"Ġgrowth": 434,
|
| 518 |
+
"Ġcommunity": 435,
|
| 519 |
+
"ĠChina": 436,
|
| 520 |
+
"'m": 437,
|
| 521 |
+
"c": 438,
|
| 522 |
+
"Ġwent": 439,
|
| 523 |
+
"ĠNo": 440,
|
| 524 |
+
"Ġable": 441,
|
| 525 |
+
"Ġmaking": 442,
|
| 526 |
+
"Ġarea": 443,
|
| 527 |
+
"Ġfar": 444,
|
| 528 |
+
"Ġstatement": 445,
|
| 529 |
+
"ĠHouse": 446,
|
| 530 |
+
"Ġworking": 447,
|
| 531 |
+
"M": 448,
|
| 532 |
+
"Ġk": 449,
|
| 533 |
+
"Ġseen": 450,
|
| 534 |
+
"Ġcompanies": 451,
|
| 535 |
+
"Ġtoday": 452,
|
| 536 |
+
"Ġmembers": 453,
|
| 537 |
+
"Ġuntil": 454,
|
| 538 |
+
"Ġfull": 455,
|
| 539 |
+
"Ġagain": 456,
|
| 540 |
+
"Ġhalf": 457,
|
| 541 |
+
"Ġshare": 458,
|
| 542 |
+
"le": 459,
|
| 543 |
+
"Ġalways": 460,
|
| 544 |
+
"Ġcourt": 461,
|
| 545 |
+
"l": 462,
|
| 546 |
+
"and": 463,
|
| 547 |
+
"Ġchange": 464,
|
| 548 |
+
"Ġfind": 465,
|
| 549 |
+
"9": 466,
|
| 550 |
+
"Ġsystem": 467,
|
| 551 |
+
"ĠV": 468,
|
| 552 |
+
"ĠYork": 469,
|
| 553 |
+
"ĠAmerican": 470,
|
| 554 |
+
"Ġhead": 471,
|
| 555 |
+
"Ġplayers": 472,
|
| 556 |
+
"Ġdoes": 473,
|
| 557 |
+
"Ġhealth": 474,
|
| 558 |
+
"Ġm": 475,
|
| 559 |
+
"Ġpower": 476,
|
| 560 |
+
"Ġpoint": 477,
|
| 561 |
+
"Ġhit": 478,
|
| 562 |
+
"Ġ.": 479,
|
| 563 |
+
"Ġ--": 480,
|
| 564 |
+
"Ġfree": 481,
|
| 565 |
+
".,": 482,
|
| 566 |
+
"Ġlead": 483,
|
| 567 |
+
"Ġseveral": 484,
|
| 568 |
+
"Ġrecent": 485,
|
| 569 |
+
"Ġcall": 486,
|
| 570 |
+
"N": 487,
|
| 571 |
+
"Ġlaw": 488,
|
| 572 |
+
"Ġkeep": 489,
|
| 573 |
+
"Ġopen": 490,
|
| 574 |
+
"ĠNews": 491,
|
| 575 |
+
"Ġgive": 492,
|
| 576 |
+
"ia": 493,
|
| 577 |
+
"ĠMarch": 494,
|
| 578 |
+
"D": 495,
|
| 579 |
+
"ĠNational": 496,
|
| 580 |
+
"ĠAt": 497,
|
| 581 |
+
"Ġtimes": 498,
|
| 582 |
+
"Ġfuture": 499,
|
| 583 |
+
"<mask>": 500
|
| 584 |
+
},
|
| 585 |
+
"merges": [
|
| 586 |
+
"i n",
|
| 587 |
+
"r e",
|
| 588 |
+
"o n",
|
| 589 |
+
"e r",
|
| 590 |
+
"a t",
|
| 591 |
+
"e n",
|
| 592 |
+
"i t",
|
| 593 |
+
"i s",
|
| 594 |
+
"a n",
|
| 595 |
+
"o r",
|
| 596 |
+
"e s",
|
| 597 |
+
"e d",
|
| 598 |
+
"Ġa n",
|
| 599 |
+
"a l",
|
| 600 |
+
"a r",
|
| 601 |
+
"Ġt o",
|
| 602 |
+
"Ġan d",
|
| 603 |
+
"a s",
|
| 604 |
+
"l e",
|
| 605 |
+
"l y",
|
| 606 |
+
"a m",
|
| 607 |
+
"' s",
|
| 608 |
+
"Ġa s",
|
| 609 |
+
"er s",
|
| 610 |
+
"Ġa t",
|
| 611 |
+
"Ġa re",
|
| 612 |
+
"Ġd e",
|
| 613 |
+
"an d",
|
| 614 |
+
"t h",
|
| 615 |
+
"o s",
|
| 616 |
+
"Ġd o",
|
| 617 |
+
"' t",
|
| 618 |
+
"Ġthe y",
|
| 619 |
+
"i e",
|
| 620 |
+
"Ġm e",
|
| 621 |
+
"ĠS t",
|
| 622 |
+
". \"",
|
| 623 |
+
"Ġon e",
|
| 624 |
+
"Ġyou r",
|
| 625 |
+
"i a",
|
| 626 |
+
"Ġwe re",
|
| 627 |
+
", \"",
|
| 628 |
+
"ĠI n",
|
| 629 |
+
"Ġm an",
|
| 630 |
+
"Ġp er",
|
| 631 |
+
"Ġbe en",
|
| 632 |
+
"Ġan y",
|
| 633 |
+
"Ġthe m",
|
| 634 |
+
"Ġhe r",
|
| 635 |
+
"Ġthe re",
|
| 636 |
+
"Ġm y",
|
| 637 |
+
"ĠI t",
|
| 638 |
+
"Ġn o",
|
| 639 |
+
"Ġit s",
|
| 640 |
+
"ĠH e",
|
| 641 |
+
"Ġon ly",
|
| 642 |
+
") .",
|
| 643 |
+
"ĠW e",
|
| 644 |
+
"Ġthe n",
|
| 645 |
+
"m an",
|
| 646 |
+
"Ġyear s",
|
| 647 |
+
"' re",
|
| 648 |
+
") ,",
|
| 649 |
+
"Ġd on",
|
| 650 |
+
"Ġ1 0",
|
| 651 |
+
"Ġbe ing",
|
| 652 |
+
"Ġdo es",
|
| 653 |
+
"Ġman y",
|
| 654 |
+
"Ġus ed",
|
| 655 |
+
"Ġhe re",
|
| 656 |
+
"Ġgo ing",
|
| 657 |
+
"I t",
|
| 658 |
+
"ĠA s",
|
| 659 |
+
"' m",
|
| 660 |
+
"Ġ1 2",
|
| 661 |
+
"ĠF or",
|
| 662 |
+
"ĠThe y",
|
| 663 |
+
"Ġ2 0",
|
| 664 |
+
"Ġto o",
|
| 665 |
+
"ĠU S",
|
| 666 |
+
"Ġ1 5",
|
| 667 |
+
"ĠThe re",
|
| 668 |
+
"Ġ1 1",
|
| 669 |
+
"ĠN o",
|
| 670 |
+
"ĠS o",
|
| 671 |
+
"Ġdid n",
|
| 672 |
+
"Ġcall ed",
|
| 673 |
+
". ,",
|
| 674 |
+
"Ġ3 0",
|
| 675 |
+
"ĠO n",
|
| 676 |
+
"ĠA t",
|
| 677 |
+
"Ġnew s",
|
| 678 |
+
"Ġde al",
|
| 679 |
+
"Ġwork ing",
|
| 680 |
+
"ĠM r",
|
| 681 |
+
"Ġmonth s",
|
| 682 |
+
"Ġplay ers",
|
| 683 |
+
"Ġare a",
|
| 684 |
+
"Ġreport ed",
|
| 685 |
+
"Ġpoint s",
|
| 686 |
+
"ĠNew s"
|
| 687 |
+
]
|
| 688 |
+
}
|
| 689 |
+
}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"errors": "replace",
|
| 3 |
+
"unk_token": {
|
| 4 |
+
"content": "<unk>",
|
| 5 |
+
"single_word": false,
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"normalized": true,
|
| 9 |
+
"__type": "AddedToken"
|
| 10 |
+
},
|
| 11 |
+
"bos_token": {
|
| 12 |
+
"content": "<s>",
|
| 13 |
+
"single_word": false,
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"normalized": true,
|
| 17 |
+
"__type": "AddedToken"
|
| 18 |
+
},
|
| 19 |
+
"eos_token": {
|
| 20 |
+
"content": "</s>",
|
| 21 |
+
"single_word": false,
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"normalized": true,
|
| 25 |
+
"__type": "AddedToken"
|
| 26 |
+
},
|
| 27 |
+
"add_prefix_space": false,
|
| 28 |
+
"sep_token": {
|
| 29 |
+
"content": "</s>",
|
| 30 |
+
"single_word": false,
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"__type": "AddedToken"
|
| 35 |
+
},
|
| 36 |
+
"cls_token": {
|
| 37 |
+
"content": "<s>",
|
| 38 |
+
"single_word": false,
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"normalized": true,
|
| 42 |
+
"__type": "AddedToken"
|
| 43 |
+
},
|
| 44 |
+
"pad_token": {
|
| 45 |
+
"content": "<pad>",
|
| 46 |
+
"single_word": false,
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"normalized": true,
|
| 50 |
+
"__type": "AddedToken"
|
| 51 |
+
},
|
| 52 |
+
"mask_token": {
|
| 53 |
+
"content": "<mask>",
|
| 54 |
+
"single_word": false,
|
| 55 |
+
"lstrip": true,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"normalized": true,
|
| 58 |
+
"__type": "AddedToken"
|
| 59 |
+
},
|
| 60 |
+
"model_max_length": 512,
|
| 61 |
+
"special_tokens_map_file": null,
|
| 62 |
+
"name_or_path": "roberta-large",
|
| 63 |
+
"tokenizer_class": "RobertaTokenizer"
|
| 64 |
+
}
|