Text Generation
Transformers
Safetensors
English
spin
tiny-models
custom-architecture
story-generation
experimental
custom_code
Instructions to use Quantech/spin-80k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Quantech/spin-80k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Quantech/spin-80k", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Quantech/spin-80k", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Quantech/spin-80k with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Quantech/spin-80k" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Quantech/spin-80k", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Quantech/spin-80k
- SGLang
How to use Quantech/spin-80k with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Quantech/spin-80k" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Quantech/spin-80k", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Quantech/spin-80k" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Quantech/spin-80k", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Quantech/spin-80k with Docker Model Runner:
docker model run hf.co/Quantech/spin-80k
Fix config hyperparameters for 80k architecture and tie embeddings
Browse files- LICENSE.lic +21 -0
- READ.md +63 -0
- config.json +15 -0
- configuration_spin.py +26 -0
- model.safetensors +3 -0
- modeling_spin.py +207 -0
- special_tokens_map.json +5 -0
- tokenizer.json +1601 -0
- tokenizer_config.json +59 -0
LICENSE.lic
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2026 Quatum Technologies
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
READ.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: mit
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
tags:
|
| 8 |
+
- tiny-models
|
| 9 |
+
- custom-architecture
|
| 10 |
+
- story-generation
|
| 11 |
+
- experimental
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Spin-80k
|
| 15 |
+
|
| 16 |
+
**Spin-80k** is a lightweight, 80k-parameter decoder-only language model built from scratch by **Quantech** to demonstrate custom Transformer architecture
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
## Model Specifications
|
| 21 |
+
|
| 22 |
+
* **Organization:** Quantech
|
| 23 |
+
* **Architecture:** Custom Decoder-only Transformer
|
| 24 |
+
* **Total Parameters:** ~80,112
|
| 25 |
+
* **Layers:** 2
|
| 26 |
+
* **Hidden Dimension ($d_{\text{model}}$):** 48
|
| 27 |
+
* **Attention Heads:** 4
|
| 28 |
+
* **Feed-Forward Dimension ($d_{\text{ff}}$):** 128
|
| 29 |
+
* **Positional Encoding:** Rotary Position Embeddings (RoPE)
|
| 30 |
+
* **Normalization:** RMSNorm ($\epsilon = 10^{-5}$)
|
| 31 |
+
* **Activation:** SwiGLU
|
| 32 |
+
* **Vocabulary:** 512 Byte-Pair Encoding (BPE) tokens
|
| 33 |
+
* **Context Length:** 256 tokens
|
| 34 |
+
|
| 35 |
+
---
|
| 36 |
+
|
| 37 |
+
## Quickstart
|
| 38 |
+
|
| 39 |
+
```python
|
| 40 |
+
import torch
|
| 41 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 42 |
+
|
| 43 |
+
repo_id = "Quantech/spin-80k"
|
| 44 |
+
|
| 45 |
+
# Load Tokenizer & Model
|
| 46 |
+
tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
|
| 47 |
+
model = AutoModelForCausalLM.from_pretrained(repo_id, trust_remote_code=True)
|
| 48 |
+
model.eval()
|
| 49 |
+
|
| 50 |
+
# ChatML Format
|
| 51 |
+
prompt = "<|im_start|>user\nWrite a short story about a dog.<|im_end|>\n<|im_start|>assistant\n"
|
| 52 |
+
inputs = tokenizer(prompt, return_tensors="pt")
|
| 53 |
+
|
| 54 |
+
with torch.no_grad():
|
| 55 |
+
outputs = model.generate(
|
| 56 |
+
**inputs,
|
| 57 |
+
max_new_tokens=50,
|
| 58 |
+
temperature=0.7,
|
| 59 |
+
do_sample=True,
|
| 60 |
+
pad_token_id=tokenizer.eos_token_id
|
| 61 |
+
)
|
| 62 |
+
|
| 63 |
+
print(tokenizer.decode(outputs[0]))
|
config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"auto_map": {
|
| 3 |
+
"AutoConfig": "configuration_spin.SpinConfig",
|
| 4 |
+
"AutoModelForCausalLM": "modeling_spin.SpinForCausalLM"
|
| 5 |
+
},
|
| 6 |
+
"d_ff": 128,
|
| 7 |
+
"d_model": 48,
|
| 8 |
+
"max_seq_len": 256,
|
| 9 |
+
"model_type": "spin",
|
| 10 |
+
"n_heads": 4,
|
| 11 |
+
"n_layers": 2,
|
| 12 |
+
"norm_eps": 1e-05,
|
| 13 |
+
"transformers_version": "4.57.6",
|
| 14 |
+
"vocab_size": 512
|
| 15 |
+
}
|
configuration_spin.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import PretrainedConfig
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
class SpinConfig(PretrainedConfig):
|
| 5 |
+
model_type = "spin"
|
| 6 |
+
|
| 7 |
+
def __init__(
|
| 8 |
+
self,
|
| 9 |
+
vocab_size: int = 512,
|
| 10 |
+
max_seq_len: int = 256,
|
| 11 |
+
d_model: int = 48,
|
| 12 |
+
n_layers: int = 2,
|
| 13 |
+
n_heads: int = 4,
|
| 14 |
+
d_ff: int = 128,
|
| 15 |
+
norm_eps: float = 1e-5,
|
| 16 |
+
tie_word_embeddings: bool = True,
|
| 17 |
+
**kwargs,
|
| 18 |
+
):
|
| 19 |
+
super().__init__(tie_word_embeddings=tie_word_embeddings, **kwargs)
|
| 20 |
+
self.vocab_size = vocab_size
|
| 21 |
+
self.max_seq_len = max_seq_len
|
| 22 |
+
self.d_model = d_model
|
| 23 |
+
self.n_layers = n_layers
|
| 24 |
+
self.n_heads = n_heads
|
| 25 |
+
self.d_ff = d_ff
|
| 26 |
+
self.norm_eps = norm_eps
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b743042e716a2dec638778a954a3f2c57ff58040dad09f6335de07cd30ced59
|
| 3 |
+
size 957560
|
modeling_spin.py
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from configuration_spin import SpinConfig
|
| 2 |
+
import math
|
| 3 |
+
import torch
|
| 4 |
+
import torch.nn as nn
|
| 5 |
+
import torch.nn.functional as F
|
| 6 |
+
from transformers import PreTrainedModel
|
| 7 |
+
from transformers.modeling_outputs import CausalLMOutputWithPast
|
| 8 |
+
|
| 9 |
+
class RMSNorm(nn.Module):
|
| 10 |
+
|
| 11 |
+
def __init__(self, dim: int, eps: float = 1e-5):
|
| 12 |
+
super().__init__()
|
| 13 |
+
self.eps = eps
|
| 14 |
+
self.weight = nn.Parameter(torch.ones(dim))
|
| 15 |
+
|
| 16 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
| 17 |
+
variance = x.pow(2).mean(-1, keepdim=True)
|
| 18 |
+
return x * torch.rsqrt(variance + self.eps) * self.weight
|
| 19 |
+
|
| 20 |
+
def precompute_freqs_cis(dim: int, max_seq_len: int, theta: float = 10000.0):
|
| 21 |
+
freqs = 1.0 / (
|
| 22 |
+
theta ** (torch.arange(0, dim, 2)[: (dim // 2)].float() / dim)
|
| 23 |
+
)
|
| 24 |
+
t = torch.arange(max_seq_len, dtype=torch.float32)
|
| 25 |
+
freqs = torch.outer(t, freqs)
|
| 26 |
+
freqs_cos = torch.cos(freqs)
|
| 27 |
+
freqs_sin = torch.sin(freqs)
|
| 28 |
+
return freqs_cos, freqs_sin
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
def apply_rotary_emb(
|
| 32 |
+
xq: torch.Tensor,
|
| 33 |
+
xk: torch.Tensor,
|
| 34 |
+
freqs_cos: torch.Tensor,
|
| 35 |
+
freqs_sin: torch.Tensor,
|
| 36 |
+
):
|
| 37 |
+
|
| 38 |
+
xq_r, xq_i = xq.float().reshape(*xq.shape[:-1], -1, 2).unbind(-1)
|
| 39 |
+
xk_r, xk_i = xk.float().reshape(*xk.shape[:-1], -1, 2).unbind(-1)
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
freqs_cos = freqs_cos.unsqueeze(0).unsqueeze(2)
|
| 43 |
+
freqs_sin = freqs_sin.unsqueeze(0).unsqueeze(2)
|
| 44 |
+
|
| 45 |
+
xq_out_r = xq_r * freqs_cos - xq_i * freqs_sin
|
| 46 |
+
xq_out_i = xq_r * freqs_sin + xq_i * freqs_cos
|
| 47 |
+
xk_out_r = xk_r * freqs_cos - xk_i * freqs_sin
|
| 48 |
+
xk_out_i = xk_r * freqs_sin + xk_i * freqs_cos
|
| 49 |
+
|
| 50 |
+
xq_out = torch.stack([xq_out_r, xq_out_i], dim=-1).flatten(3)
|
| 51 |
+
xk_out = torch.stack([xk_out_r, xk_out_i], dim=-1).flatten(3)
|
| 52 |
+
return xq_out.type_as(xq), xk_out.type_as(xk)
|
| 53 |
+
|
| 54 |
+
class SwiGLU(nn.Module):
|
| 55 |
+
|
| 56 |
+
def __init__(self, d_model: int, d_ff: int):
|
| 57 |
+
super().__init__()
|
| 58 |
+
self.w_gate = nn.Linear(d_model, d_ff, bias=False)
|
| 59 |
+
self.w_up = nn.Linear(d_model, d_ff, bias=False)
|
| 60 |
+
self.w_down = nn.Linear(d_ff, d_model, bias=False)
|
| 61 |
+
|
| 62 |
+
def forward(self, x: torch.Tensor) -> torch.Tensor:
|
| 63 |
+
return self.w_down(F.silu(self.w_gate(x)) * self.w_up(x))
|
| 64 |
+
|
| 65 |
+
class CausalSelfAttention(nn.Module):
|
| 66 |
+
|
| 67 |
+
def __init__(self, config: SpinConfig):
|
| 68 |
+
super().__init__()
|
| 69 |
+
self.n_heads = config.n_heads
|
| 70 |
+
self.head_dim = config.d_model // config.n_heads
|
| 71 |
+
|
| 72 |
+
self.q_proj = nn.Linear(config.d_model, config.d_model, bias=False)
|
| 73 |
+
self.k_proj = nn.Linear(config.d_model, config.d_model, bias=False)
|
| 74 |
+
self.v_proj = nn.Linear(config.d_model, config.d_model, bias=False)
|
| 75 |
+
self.out_proj = nn.Linear(config.d_model, config.d_model, bias=False)
|
| 76 |
+
|
| 77 |
+
mask = torch.full(
|
| 78 |
+
(config.max_seq_len, config.max_seq_len), float("-inf")
|
| 79 |
+
)
|
| 80 |
+
mask = torch.triu(mask, diagonal=1)
|
| 81 |
+
self.register_buffer("causal_mask", mask)
|
| 82 |
+
|
| 83 |
+
def forward(
|
| 84 |
+
self,
|
| 85 |
+
x: torch.Tensor,
|
| 86 |
+
freqs_cos: torch.Tensor,
|
| 87 |
+
freqs_sin: torch.Tensor,
|
| 88 |
+
kv_cache: tuple[torch.Tensor, torch.Tensor] | None = None,
|
| 89 |
+
) -> tuple[torch.Tensor, tuple[torch.Tensor, torch.Tensor]]:
|
| 90 |
+
B, T, C = x.shape
|
| 91 |
+
|
| 92 |
+
q = self.q_proj(x).view(B, T, self.n_heads, self.head_dim)
|
| 93 |
+
k = self.k_proj(x).view(B, T, self.n_heads, self.head_dim)
|
| 94 |
+
v = self.v_proj(x).view(B, T, self.n_heads, self.head_dim)
|
| 95 |
+
|
| 96 |
+
q, k = apply_rotary_emb(q, k, freqs_cos, freqs_sin)
|
| 97 |
+
|
| 98 |
+
q = q.transpose(1, 2)
|
| 99 |
+
k = k.transpose(1, 2)
|
| 100 |
+
v = v.transpose(1, 2)
|
| 101 |
+
|
| 102 |
+
if kv_cache is not None:
|
| 103 |
+
prev_k, prev_v = kv_cache
|
| 104 |
+
k = torch.cat([prev_k, k], dim=2)
|
| 105 |
+
v = torch.cat([prev_v, v], dim=2)
|
| 106 |
+
new_kv_cache = (k, v)
|
| 107 |
+
|
| 108 |
+
total_k_len = k.size(2)
|
| 109 |
+
scores = (q @ k.transpose(-2, -1)) / math.sqrt(self.head_dim)
|
| 110 |
+
|
| 111 |
+
if T > 1:
|
| 112 |
+
scores = scores + self.causal_mask[:T, :total_k_len]
|
| 113 |
+
|
| 114 |
+
attn_weights = F.softmax(scores, dim=-1)
|
| 115 |
+
out = attn_weights @ v
|
| 116 |
+
out = out.transpose(1, 2).contiguous().view(B, T, C)
|
| 117 |
+
return self.out_proj(out), new_kv_cache
|
| 118 |
+
|
| 119 |
+
class TransformerBlock(nn.Module):
|
| 120 |
+
|
| 121 |
+
def __init__(self, config: SpinConfig):
|
| 122 |
+
super().__init__()
|
| 123 |
+
self.attn_norm = RMSNorm(config.d_model, eps=config.norm_eps)
|
| 124 |
+
self.attn = CausalSelfAttention(config)
|
| 125 |
+
self.ffn_norm = RMSNorm(config.d_model, eps=config.norm_eps)
|
| 126 |
+
self.ffn = SwiGLU(config.d_model, config.d_ff)
|
| 127 |
+
|
| 128 |
+
def forward(
|
| 129 |
+
self,
|
| 130 |
+
x: torch.Tensor,
|
| 131 |
+
freqs_cos: torch.Tensor,
|
| 132 |
+
freqs_sin: torch.Tensor,
|
| 133 |
+
kv_cache: tuple[torch.Tensor, torch.Tensor] | None = None,
|
| 134 |
+
) -> tuple[torch.Tensor, tuple[torch.Tensor, torch.Tensor]]:
|
| 135 |
+
norm_x = self.attn_norm(x)
|
| 136 |
+
attn_out, next_kv = self.attn(
|
| 137 |
+
norm_x, freqs_cos, freqs_sin, kv_cache=kv_cache
|
| 138 |
+
)
|
| 139 |
+
x = x + attn_out
|
| 140 |
+
x = x + self.ffn(self.ffn_norm(x))
|
| 141 |
+
return x, next_kv
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
class SpinForCausalLM(PreTrainedModel):
|
| 145 |
+
config_class = SpinConfig
|
| 146 |
+
|
| 147 |
+
def __init__(self, config: SpinConfig):
|
| 148 |
+
super().__init__(config)
|
| 149 |
+
self.config = config
|
| 150 |
+
self.tok_embeddings = nn.Embedding(config.vocab_size, config.d_model)
|
| 151 |
+
self.layers = nn.ModuleList(
|
| 152 |
+
[TransformerBlock(config) for _ in range(config.n_layers)]
|
| 153 |
+
)
|
| 154 |
+
self.norm = RMSNorm(config.d_model, eps=config.norm_eps)
|
| 155 |
+
self.lm_head = nn.Linear(config.d_model, config.vocab_size, bias=False)
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
self.tok_embeddings.weight = self.lm_head.weight
|
| 159 |
+
|
| 160 |
+
head_dim = config.d_model // config.n_heads
|
| 161 |
+
freqs_cos, freqs_sin = precompute_freqs_cis(
|
| 162 |
+
head_dim, config.max_seq_len
|
| 163 |
+
)
|
| 164 |
+
self.register_buffer("freqs_cos", freqs_cos)
|
| 165 |
+
self.register_buffer("freqs_sin", freqs_sin)
|
| 166 |
+
|
| 167 |
+
self.post_init()
|
| 168 |
+
|
| 169 |
+
def forward(
|
| 170 |
+
self,
|
| 171 |
+
input_ids: torch.Tensor,
|
| 172 |
+
labels: torch.Tensor = None,
|
| 173 |
+
kv_caches=None,
|
| 174 |
+
start_pos: int = 0,
|
| 175 |
+
return_dict: bool = True,
|
| 176 |
+
):
|
| 177 |
+
B, T = input_ids.shape
|
| 178 |
+
x = self.tok_embeddings(input_ids)
|
| 179 |
+
|
| 180 |
+
freqs_cos = self.freqs_cos[start_pos : start_pos + T]
|
| 181 |
+
freqs_sin = self.freqs_sin[start_pos : start_pos + T]
|
| 182 |
+
|
| 183 |
+
new_kv_caches = []
|
| 184 |
+
for i, layer in enumerate(self.layers):
|
| 185 |
+
cache_i = kv_caches[i] if kv_caches is not None else None
|
| 186 |
+
x, new_cache = layer(x, freqs_cos, freqs_sin, kv_cache=cache_i)
|
| 187 |
+
new_kv_caches.append(new_cache)
|
| 188 |
+
|
| 189 |
+
x = self.norm(x)
|
| 190 |
+
logits = self.lm_head(x)
|
| 191 |
+
|
| 192 |
+
loss = None
|
| 193 |
+
if labels is not None:
|
| 194 |
+
loss = F.cross_entropy(
|
| 195 |
+
logits.view(-1, self.config.vocab_size),
|
| 196 |
+
labels.view(-1),
|
| 197 |
+
ignore_index=-100,
|
| 198 |
+
)
|
| 199 |
+
|
| 200 |
+
if not return_dict:
|
| 201 |
+
return (logits, loss, new_kv_caches)
|
| 202 |
+
|
| 203 |
+
return CausalLMOutputWithPast(
|
| 204 |
+
loss=loss, logits=logits, past_key_values=new_kv_caches
|
| 205 |
+
)
|
| 206 |
+
|
| 207 |
+
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "<|im_start|>",
|
| 3 |
+
"eos_token": "<|im_end|>",
|
| 4 |
+
"pad_token": "<|pad|>"
|
| 5 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,1601 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "1.0",
|
| 3 |
+
"truncation": null,
|
| 4 |
+
"padding": null,
|
| 5 |
+
"added_tokens": [
|
| 6 |
+
{
|
| 7 |
+
"id": 0,
|
| 8 |
+
"content": "<|unk|>",
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"lstrip": false,
|
| 11 |
+
"rstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"special": true
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"id": 1,
|
| 17 |
+
"content": "<|pad|>",
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"normalized": false,
|
| 22 |
+
"special": true
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"id": 2,
|
| 26 |
+
"content": "<|bos|>",
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"rstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"special": true
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"id": 3,
|
| 35 |
+
"content": "<|eos|>",
|
| 36 |
+
"single_word": false,
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"rstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"special": true
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"id": 4,
|
| 44 |
+
"content": "<|im_start|>",
|
| 45 |
+
"single_word": false,
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"id": 5,
|
| 53 |
+
"content": "<|im_end|>",
|
| 54 |
+
"single_word": false,
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"normalized": false,
|
| 58 |
+
"special": true
|
| 59 |
+
}
|
| 60 |
+
],
|
| 61 |
+
"normalizer": null,
|
| 62 |
+
"pre_tokenizer": {
|
| 63 |
+
"type": "ByteLevel",
|
| 64 |
+
"add_prefix_space": false,
|
| 65 |
+
"trim_offsets": true,
|
| 66 |
+
"use_regex": true
|
| 67 |
+
},
|
| 68 |
+
"post_processor": null,
|
| 69 |
+
"decoder": {
|
| 70 |
+
"type": "ByteLevel",
|
| 71 |
+
"add_prefix_space": true,
|
| 72 |
+
"trim_offsets": true,
|
| 73 |
+
"use_regex": true
|
| 74 |
+
},
|
| 75 |
+
"model": {
|
| 76 |
+
"type": "BPE",
|
| 77 |
+
"dropout": null,
|
| 78 |
+
"unk_token": "<|unk|>",
|
| 79 |
+
"continuing_subword_prefix": null,
|
| 80 |
+
"end_of_word_suffix": null,
|
| 81 |
+
"fuse_unk": false,
|
| 82 |
+
"byte_fallback": false,
|
| 83 |
+
"ignore_merges": false,
|
| 84 |
+
"vocab": {
|
| 85 |
+
"<|unk|>": 0,
|
| 86 |
+
"<|pad|>": 1,
|
| 87 |
+
"<|bos|>": 2,
|
| 88 |
+
"<|eos|>": 3,
|
| 89 |
+
"<|im_start|>": 4,
|
| 90 |
+
"<|im_end|>": 5,
|
| 91 |
+
"!": 6,
|
| 92 |
+
"\"": 7,
|
| 93 |
+
"#": 8,
|
| 94 |
+
"$": 9,
|
| 95 |
+
"%": 10,
|
| 96 |
+
"&": 11,
|
| 97 |
+
"'": 12,
|
| 98 |
+
"(": 13,
|
| 99 |
+
")": 14,
|
| 100 |
+
"*": 15,
|
| 101 |
+
"+": 16,
|
| 102 |
+
",": 17,
|
| 103 |
+
"-": 18,
|
| 104 |
+
".": 19,
|
| 105 |
+
"/": 20,
|
| 106 |
+
"0": 21,
|
| 107 |
+
"1": 22,
|
| 108 |
+
"2": 23,
|
| 109 |
+
"3": 24,
|
| 110 |
+
"4": 25,
|
| 111 |
+
"5": 26,
|
| 112 |
+
"6": 27,
|
| 113 |
+
"7": 28,
|
| 114 |
+
"8": 29,
|
| 115 |
+
"9": 30,
|
| 116 |
+
":": 31,
|
| 117 |
+
";": 32,
|
| 118 |
+
"<": 33,
|
| 119 |
+
"=": 34,
|
| 120 |
+
">": 35,
|
| 121 |
+
"?": 36,
|
| 122 |
+
"@": 37,
|
| 123 |
+
"A": 38,
|
| 124 |
+
"B": 39,
|
| 125 |
+
"C": 40,
|
| 126 |
+
"D": 41,
|
| 127 |
+
"E": 42,
|
| 128 |
+
"F": 43,
|
| 129 |
+
"G": 44,
|
| 130 |
+
"H": 45,
|
| 131 |
+
"I": 46,
|
| 132 |
+
"J": 47,
|
| 133 |
+
"K": 48,
|
| 134 |
+
"L": 49,
|
| 135 |
+
"M": 50,
|
| 136 |
+
"N": 51,
|
| 137 |
+
"O": 52,
|
| 138 |
+
"P": 53,
|
| 139 |
+
"Q": 54,
|
| 140 |
+
"R": 55,
|
| 141 |
+
"S": 56,
|
| 142 |
+
"T": 57,
|
| 143 |
+
"U": 58,
|
| 144 |
+
"V": 59,
|
| 145 |
+
"W": 60,
|
| 146 |
+
"X": 61,
|
| 147 |
+
"Y": 62,
|
| 148 |
+
"Z": 63,
|
| 149 |
+
"[": 64,
|
| 150 |
+
"\\": 65,
|
| 151 |
+
"]": 66,
|
| 152 |
+
"^": 67,
|
| 153 |
+
"_": 68,
|
| 154 |
+
"`": 69,
|
| 155 |
+
"a": 70,
|
| 156 |
+
"b": 71,
|
| 157 |
+
"c": 72,
|
| 158 |
+
"d": 73,
|
| 159 |
+
"e": 74,
|
| 160 |
+
"f": 75,
|
| 161 |
+
"g": 76,
|
| 162 |
+
"h": 77,
|
| 163 |
+
"i": 78,
|
| 164 |
+
"j": 79,
|
| 165 |
+
"k": 80,
|
| 166 |
+
"l": 81,
|
| 167 |
+
"m": 82,
|
| 168 |
+
"n": 83,
|
| 169 |
+
"o": 84,
|
| 170 |
+
"p": 85,
|
| 171 |
+
"q": 86,
|
| 172 |
+
"r": 87,
|
| 173 |
+
"s": 88,
|
| 174 |
+
"t": 89,
|
| 175 |
+
"u": 90,
|
| 176 |
+
"v": 91,
|
| 177 |
+
"w": 92,
|
| 178 |
+
"x": 93,
|
| 179 |
+
"y": 94,
|
| 180 |
+
"z": 95,
|
| 181 |
+
"{": 96,
|
| 182 |
+
"|": 97,
|
| 183 |
+
"}": 98,
|
| 184 |
+
"~": 99,
|
| 185 |
+
"¡": 100,
|
| 186 |
+
"¢": 101,
|
| 187 |
+
"£": 102,
|
| 188 |
+
"¤": 103,
|
| 189 |
+
"¥": 104,
|
| 190 |
+
"¦": 105,
|
| 191 |
+
"§": 106,
|
| 192 |
+
"¨": 107,
|
| 193 |
+
"©": 108,
|
| 194 |
+
"ª": 109,
|
| 195 |
+
"«": 110,
|
| 196 |
+
"¬": 111,
|
| 197 |
+
"®": 112,
|
| 198 |
+
"¯": 113,
|
| 199 |
+
"°": 114,
|
| 200 |
+
"±": 115,
|
| 201 |
+
"²": 116,
|
| 202 |
+
"³": 117,
|
| 203 |
+
"´": 118,
|
| 204 |
+
"µ": 119,
|
| 205 |
+
"¶": 120,
|
| 206 |
+
"·": 121,
|
| 207 |
+
"¸": 122,
|
| 208 |
+
"¹": 123,
|
| 209 |
+
"º": 124,
|
| 210 |
+
"»": 125,
|
| 211 |
+
"¼": 126,
|
| 212 |
+
"½": 127,
|
| 213 |
+
"¾": 128,
|
| 214 |
+
"¿": 129,
|
| 215 |
+
"À": 130,
|
| 216 |
+
"Á": 131,
|
| 217 |
+
"Â": 132,
|
| 218 |
+
"Ã": 133,
|
| 219 |
+
"Ä": 134,
|
| 220 |
+
"Å": 135,
|
| 221 |
+
"Æ": 136,
|
| 222 |
+
"Ç": 137,
|
| 223 |
+
"È": 138,
|
| 224 |
+
"É": 139,
|
| 225 |
+
"Ê": 140,
|
| 226 |
+
"Ë": 141,
|
| 227 |
+
"Ì": 142,
|
| 228 |
+
"Í": 143,
|
| 229 |
+
"Î": 144,
|
| 230 |
+
"Ï": 145,
|
| 231 |
+
"Ð": 146,
|
| 232 |
+
"Ñ": 147,
|
| 233 |
+
"Ò": 148,
|
| 234 |
+
"Ó": 149,
|
| 235 |
+
"Ô": 150,
|
| 236 |
+
"Õ": 151,
|
| 237 |
+
"Ö": 152,
|
| 238 |
+
"×": 153,
|
| 239 |
+
"Ø": 154,
|
| 240 |
+
"Ù": 155,
|
| 241 |
+
"Ú": 156,
|
| 242 |
+
"Û": 157,
|
| 243 |
+
"Ü": 158,
|
| 244 |
+
"Ý": 159,
|
| 245 |
+
"Þ": 160,
|
| 246 |
+
"ß": 161,
|
| 247 |
+
"à": 162,
|
| 248 |
+
"á": 163,
|
| 249 |
+
"â": 164,
|
| 250 |
+
"ã": 165,
|
| 251 |
+
"ä": 166,
|
| 252 |
+
"å": 167,
|
| 253 |
+
"æ": 168,
|
| 254 |
+
"ç": 169,
|
| 255 |
+
"è": 170,
|
| 256 |
+
"é": 171,
|
| 257 |
+
"ê": 172,
|
| 258 |
+
"ë": 173,
|
| 259 |
+
"ì": 174,
|
| 260 |
+
"í": 175,
|
| 261 |
+
"î": 176,
|
| 262 |
+
"ï": 177,
|
| 263 |
+
"ð": 178,
|
| 264 |
+
"ñ": 179,
|
| 265 |
+
"ò": 180,
|
| 266 |
+
"ó": 181,
|
| 267 |
+
"ô": 182,
|
| 268 |
+
"õ": 183,
|
| 269 |
+
"ö": 184,
|
| 270 |
+
"÷": 185,
|
| 271 |
+
"ø": 186,
|
| 272 |
+
"ù": 187,
|
| 273 |
+
"ú": 188,
|
| 274 |
+
"û": 189,
|
| 275 |
+
"ü": 190,
|
| 276 |
+
"ý": 191,
|
| 277 |
+
"��": 192,
|
| 278 |
+
"ÿ": 193,
|
| 279 |
+
"Ā": 194,
|
| 280 |
+
"ā": 195,
|
| 281 |
+
"Ă": 196,
|
| 282 |
+
"ă": 197,
|
| 283 |
+
"Ą": 198,
|
| 284 |
+
"ą": 199,
|
| 285 |
+
"Ć": 200,
|
| 286 |
+
"ć": 201,
|
| 287 |
+
"Ĉ": 202,
|
| 288 |
+
"ĉ": 203,
|
| 289 |
+
"Ċ": 204,
|
| 290 |
+
"ċ": 205,
|
| 291 |
+
"Č": 206,
|
| 292 |
+
"č": 207,
|
| 293 |
+
"Ď": 208,
|
| 294 |
+
"ď": 209,
|
| 295 |
+
"Đ": 210,
|
| 296 |
+
"đ": 211,
|
| 297 |
+
"Ē": 212,
|
| 298 |
+
"ē": 213,
|
| 299 |
+
"Ĕ": 214,
|
| 300 |
+
"ĕ": 215,
|
| 301 |
+
"Ė": 216,
|
| 302 |
+
"ė": 217,
|
| 303 |
+
"Ę": 218,
|
| 304 |
+
"ę": 219,
|
| 305 |
+
"Ě": 220,
|
| 306 |
+
"ě": 221,
|
| 307 |
+
"Ĝ": 222,
|
| 308 |
+
"ĝ": 223,
|
| 309 |
+
"Ğ": 224,
|
| 310 |
+
"ğ": 225,
|
| 311 |
+
"Ġ": 226,
|
| 312 |
+
"ġ": 227,
|
| 313 |
+
"Ģ": 228,
|
| 314 |
+
"ģ": 229,
|
| 315 |
+
"Ĥ": 230,
|
| 316 |
+
"ĥ": 231,
|
| 317 |
+
"Ħ": 232,
|
| 318 |
+
"ħ": 233,
|
| 319 |
+
"Ĩ": 234,
|
| 320 |
+
"ĩ": 235,
|
| 321 |
+
"Ī": 236,
|
| 322 |
+
"ī": 237,
|
| 323 |
+
"Ĭ": 238,
|
| 324 |
+
"ĭ": 239,
|
| 325 |
+
"Į": 240,
|
| 326 |
+
"į": 241,
|
| 327 |
+
"İ": 242,
|
| 328 |
+
"ı": 243,
|
| 329 |
+
"IJ": 244,
|
| 330 |
+
"ij": 245,
|
| 331 |
+
"Ĵ": 246,
|
| 332 |
+
"ĵ": 247,
|
| 333 |
+
"Ķ": 248,
|
| 334 |
+
"ķ": 249,
|
| 335 |
+
"ĸ": 250,
|
| 336 |
+
"Ĺ": 251,
|
| 337 |
+
"ĺ": 252,
|
| 338 |
+
"Ļ": 253,
|
| 339 |
+
"ļ": 254,
|
| 340 |
+
"Ľ": 255,
|
| 341 |
+
"ľ": 256,
|
| 342 |
+
"Ŀ": 257,
|
| 343 |
+
"ŀ": 258,
|
| 344 |
+
"Ł": 259,
|
| 345 |
+
"ł": 260,
|
| 346 |
+
"Ń": 261,
|
| 347 |
+
"he": 262,
|
| 348 |
+
"Ġt": 263,
|
| 349 |
+
"Ġa": 264,
|
| 350 |
+
"Ġs": 265,
|
| 351 |
+
"Ġw": 266,
|
| 352 |
+
"nd": 267,
|
| 353 |
+
"Ġthe": 268,
|
| 354 |
+
"ed": 269,
|
| 355 |
+
"Ġand": 270,
|
| 356 |
+
"Ġto": 271,
|
| 357 |
+
"Ġb": 272,
|
| 358 |
+
"in": 273,
|
| 359 |
+
"Ġh": 274,
|
| 360 |
+
"Ġwa": 275,
|
| 361 |
+
"re": 276,
|
| 362 |
+
"Ġf": 277,
|
| 363 |
+
"ou": 278,
|
| 364 |
+
"it": 279,
|
| 365 |
+
"Ġl": 280,
|
| 366 |
+
"Ġc": 281,
|
| 367 |
+
"Ġd": 282,
|
| 368 |
+
"Ġhe": 283,
|
| 369 |
+
"er": 284,
|
| 370 |
+
"Ġm": 285,
|
| 371 |
+
"Ġp": 286,
|
| 372 |
+
"Ġwas": 287,
|
| 373 |
+
"ĠT": 288,
|
| 374 |
+
"om": 289,
|
| 375 |
+
"Ġo": 290,
|
| 376 |
+
"ay": 291,
|
| 377 |
+
"is": 292,
|
| 378 |
+
"ar": 293,
|
| 379 |
+
"il": 294,
|
| 380 |
+
"ing": 295,
|
| 381 |
+
"Ġg": 296,
|
| 382 |
+
"id": 297,
|
| 383 |
+
"at": 298,
|
| 384 |
+
"en": 299,
|
| 385 |
+
"Ġn": 300,
|
| 386 |
+
"Ġsa": 301,
|
| 387 |
+
"Ġha": 302,
|
| 388 |
+
"ĠS": 303,
|
| 389 |
+
"ĠThe": 304,
|
| 390 |
+
"an": 305,
|
| 391 |
+
"im": 306,
|
| 392 |
+
"or": 307,
|
| 393 |
+
"on": 308,
|
| 394 |
+
"Ġit": 309,
|
| 395 |
+
"Ġth": 310,
|
| 396 |
+
"ll": 311,
|
| 397 |
+
"le": 312,
|
| 398 |
+
"ĠH": 313,
|
| 399 |
+
"Ġher": 314,
|
| 400 |
+
"et": 315,
|
| 401 |
+
"ot": 316,
|
| 402 |
+
"ir": 317,
|
| 403 |
+
"ĠShe": 318,
|
| 404 |
+
"ĠHe": 319,
|
| 405 |
+
"es": 320,
|
| 406 |
+
"Ġin": 321,
|
| 407 |
+
"ow": 322,
|
| 408 |
+
"ut": 323,
|
| 409 |
+
"ver": 324,
|
| 410 |
+
"ĠThey": 325,
|
| 411 |
+
"ck": 326,
|
| 412 |
+
"ily": 327,
|
| 413 |
+
"Ġu": 328,
|
| 414 |
+
"Ġe": 329,
|
| 415 |
+
"Ġy": 330,
|
| 416 |
+
"ld": 331,
|
| 417 |
+
"oo": 332,
|
| 418 |
+
"Ġsaid": 333,
|
| 419 |
+
"ig": 334,
|
| 420 |
+
"Ġ\"": 335,
|
| 421 |
+
"Ġr": 336,
|
| 422 |
+
"am": 337,
|
| 423 |
+
"Ġbe": 338,
|
| 424 |
+
"ĠI": 339,
|
| 425 |
+
"Ġst": 340,
|
| 426 |
+
"Lily": 341,
|
| 427 |
+
"ith": 342,
|
| 428 |
+
"ke": 343,
|
| 429 |
+
"ce": 344,
|
| 430 |
+
"pp": 345,
|
| 431 |
+
"ve": 346,
|
| 432 |
+
"Ġwith": 347,
|
| 433 |
+
"Ġshe": 348,
|
| 434 |
+
"On": 349,
|
| 435 |
+
"Ġon": 350,
|
| 436 |
+
"Ġyou": 351,
|
| 437 |
+
"ri": 352,
|
| 438 |
+
"ked": 353,
|
| 439 |
+
"Ġpl": 354,
|
| 440 |
+
"Ġhis": 355,
|
| 441 |
+
"Ġof": 356,
|
| 442 |
+
"nt": 357,
|
| 443 |
+
"Ġso": 358,
|
| 444 |
+
"ad": 359,
|
| 445 |
+
"Ġday": 360,
|
| 446 |
+
"very": 361,
|
| 447 |
+
"Ġthat": 362,
|
| 448 |
+
"ĠLily": 363,
|
| 449 |
+
"Ġplay": 364,
|
| 450 |
+
"Ġup": 365,
|
| 451 |
+
"Ġwe": 366,
|
| 452 |
+
"Ġmom": 367,
|
| 453 |
+
"Ġhad": 368,
|
| 454 |
+
"Ġthey": 369,
|
| 455 |
+
"st": 370,
|
| 456 |
+
"ĠB": 371,
|
| 457 |
+
"el": 372,
|
| 458 |
+
"Ġfor": 373,
|
| 459 |
+
"un": 374,
|
| 460 |
+
"my": 375,
|
| 461 |
+
"'s": 376,
|
| 462 |
+
"ould": 377,
|
| 463 |
+
"Ġli": 378,
|
| 464 |
+
"The": 379,
|
| 465 |
+
"Ġhapp": 380,
|
| 466 |
+
"ent": 381,
|
| 467 |
+
"ch": 382,
|
| 468 |
+
"itt": 383,
|
| 469 |
+
"Ġwant": 384,
|
| 470 |
+
"her": 385,
|
| 471 |
+
"Ġsh": 386,
|
| 472 |
+
"out": 387,
|
| 473 |
+
"Ġdo": 388,
|
| 474 |
+
"Ġnot": 389,
|
| 475 |
+
"end": 390,
|
| 476 |
+
"ome": 391,
|
| 477 |
+
"all": 392,
|
| 478 |
+
"se": 393,
|
| 479 |
+
"Ġvery": 394,
|
| 480 |
+
"ound": 395,
|
| 481 |
+
"ly": 396,
|
| 482 |
+
"ime": 397,
|
| 483 |
+
"ittle": 398,
|
| 484 |
+
"Ġk": 399,
|
| 485 |
+
"Ġtime": 400,
|
| 486 |
+
"Ġwh": 401,
|
| 487 |
+
"Ġlittle": 402,
|
| 488 |
+
"Ġthere": 403,
|
| 489 |
+
"Ġne": 404,
|
| 490 |
+
"Ġis": 405,
|
| 491 |
+
"Ġbig": 406,
|
| 492 |
+
"ht": 407,
|
| 493 |
+
"Ġhappy": 408,
|
| 494 |
+
"al": 409,
|
| 495 |
+
"ĠM": 410,
|
| 496 |
+
"Ġre": 411,
|
| 497 |
+
"Ġsm": 412,
|
| 498 |
+
"ĠĊ": 413,
|
| 499 |
+
"riend": 414,
|
| 500 |
+
"Ġfriend": 415,
|
| 501 |
+
"ĠIt": 416,
|
| 502 |
+
"Ġsaw": 417,
|
| 503 |
+
"Ġbut": 418,
|
| 504 |
+
".\"": 419,
|
| 505 |
+
"ra": 420,
|
| 506 |
+
"Ġan": 421,
|
| 507 |
+
"Ġas": 422,
|
| 508 |
+
"ry": 423,
|
| 509 |
+
"One": 424,
|
| 510 |
+
"ack": 425,
|
| 511 |
+
"ide": 426,
|
| 512 |
+
"ake": 427,
|
| 513 |
+
"ved": 428,
|
| 514 |
+
"'t": 429,
|
| 515 |
+
"!\"": 430,
|
| 516 |
+
"ug": 431,
|
| 517 |
+
"ter": 432,
|
| 518 |
+
"Ġlo": 433,
|
| 519 |
+
"Ġloo": 434,
|
| 520 |
+
"Once": 435,
|
| 521 |
+
"Ġwere": 436,
|
| 522 |
+
"ĠTim": 437,
|
| 523 |
+
"Ġse": 438,
|
| 524 |
+
"ore": 439,
|
| 525 |
+
"Ġbo": 440,
|
| 526 |
+
"Ġtoo": 441,
|
| 527 |
+
"Ġhim": 442,
|
| 528 |
+
"Ġgo": 443,
|
| 529 |
+
"Ġare": 444,
|
| 530 |
+
"ec": 445,
|
| 531 |
+
"Ġupon": 446,
|
| 532 |
+
"ill": 447,
|
| 533 |
+
"irl": 448,
|
| 534 |
+
"Ġwanted": 449,
|
| 535 |
+
"Ġthem": 450,
|
| 536 |
+
"ard": 451,
|
| 537 |
+
"Ġj": 452,
|
| 538 |
+
"Ġgirl": 453,
|
| 539 |
+
"Ġout": 454,
|
| 540 |
+
"Ġtheir": 455,
|
| 541 |
+
"Ġat": 456,
|
| 542 |
+
"ind": 457,
|
| 543 |
+
"way": 458,
|
| 544 |
+
"ur": 459,
|
| 545 |
+
"fu": 460,
|
| 546 |
+
"Ġdid": 461,
|
| 547 |
+
"ĠA": 462,
|
| 548 |
+
"Ġsp": 463,
|
| 549 |
+
"Ġsmil": 464,
|
| 550 |
+
"Ġcould": 465,
|
| 551 |
+
"hen": 466,
|
| 552 |
+
"Ġhave": 467,
|
| 553 |
+
"ain": 468,
|
| 554 |
+
"ĠBen": 469,
|
| 555 |
+
"Ġwent": 470,
|
| 556 |
+
"hed": 471,
|
| 557 |
+
"Ġnam": 472,
|
| 558 |
+
"Ġcan": 473,
|
| 559 |
+
"art": 474,
|
| 560 |
+
"rom": 475,
|
| 561 |
+
"lp": 476,
|
| 562 |
+
"ic": 477,
|
| 563 |
+
"Ġex": 478,
|
| 564 |
+
"round": 479,
|
| 565 |
+
"Ġfriends": 480,
|
| 566 |
+
"?\"": 481,
|
| 567 |
+
"Ġhelp": 482,
|
| 568 |
+
"ood": 483,
|
| 569 |
+
"ful": 484,
|
| 570 |
+
"Ġkn": 485,
|
| 571 |
+
"ĠJ": 486,
|
| 572 |
+
"Ġall": 487,
|
| 573 |
+
"hing": 488,
|
| 574 |
+
"ight": 489,
|
| 575 |
+
"um": 490,
|
| 576 |
+
"ark": 491,
|
| 577 |
+
"Ġfun": 492,
|
| 578 |
+
"one": 493,
|
| 579 |
+
"Ġsay": 494,
|
| 580 |
+
"Ġback": 495,
|
| 581 |
+
"You": 496,
|
| 582 |
+
"Ġnamed": 497,
|
| 583 |
+
"are": 498,
|
| 584 |
+
"Ġcl": 499,
|
| 585 |
+
"ĠTom": 500,
|
| 586 |
+
"Ġno": 501,
|
| 587 |
+
"Ġle": 502,
|
| 588 |
+
"Ġloved": 503,
|
| 589 |
+
"op": 504,
|
| 590 |
+
"elt": 505,
|
| 591 |
+
"ĠTimmy": 506,
|
| 592 |
+
"ĠOne": 507,
|
| 593 |
+
"oug": 508,
|
| 594 |
+
"Ġsc": 509,
|
| 595 |
+
"Ġfelt": 510,
|
| 596 |
+
"Ġtoy": 511
|
| 597 |
+
},
|
| 598 |
+
"merges": [
|
| 599 |
+
[
|
| 600 |
+
"h",
|
| 601 |
+
"e"
|
| 602 |
+
],
|
| 603 |
+
[
|
| 604 |
+
"Ġ",
|
| 605 |
+
"t"
|
| 606 |
+
],
|
| 607 |
+
[
|
| 608 |
+
"Ġ",
|
| 609 |
+
"a"
|
| 610 |
+
],
|
| 611 |
+
[
|
| 612 |
+
"Ġ",
|
| 613 |
+
"s"
|
| 614 |
+
],
|
| 615 |
+
[
|
| 616 |
+
"Ġ",
|
| 617 |
+
"w"
|
| 618 |
+
],
|
| 619 |
+
[
|
| 620 |
+
"n",
|
| 621 |
+
"d"
|
| 622 |
+
],
|
| 623 |
+
[
|
| 624 |
+
"Ġt",
|
| 625 |
+
"he"
|
| 626 |
+
],
|
| 627 |
+
[
|
| 628 |
+
"e",
|
| 629 |
+
"d"
|
| 630 |
+
],
|
| 631 |
+
[
|
| 632 |
+
"Ġa",
|
| 633 |
+
"nd"
|
| 634 |
+
],
|
| 635 |
+
[
|
| 636 |
+
"Ġt",
|
| 637 |
+
"o"
|
| 638 |
+
],
|
| 639 |
+
[
|
| 640 |
+
"Ġ",
|
| 641 |
+
"b"
|
| 642 |
+
],
|
| 643 |
+
[
|
| 644 |
+
"i",
|
| 645 |
+
"n"
|
| 646 |
+
],
|
| 647 |
+
[
|
| 648 |
+
"Ġ",
|
| 649 |
+
"h"
|
| 650 |
+
],
|
| 651 |
+
[
|
| 652 |
+
"Ġw",
|
| 653 |
+
"a"
|
| 654 |
+
],
|
| 655 |
+
[
|
| 656 |
+
"r",
|
| 657 |
+
"e"
|
| 658 |
+
],
|
| 659 |
+
[
|
| 660 |
+
"Ġ",
|
| 661 |
+
"f"
|
| 662 |
+
],
|
| 663 |
+
[
|
| 664 |
+
"o",
|
| 665 |
+
"u"
|
| 666 |
+
],
|
| 667 |
+
[
|
| 668 |
+
"i",
|
| 669 |
+
"t"
|
| 670 |
+
],
|
| 671 |
+
[
|
| 672 |
+
"Ġ",
|
| 673 |
+
"l"
|
| 674 |
+
],
|
| 675 |
+
[
|
| 676 |
+
"Ġ",
|
| 677 |
+
"c"
|
| 678 |
+
],
|
| 679 |
+
[
|
| 680 |
+
"Ġ",
|
| 681 |
+
"d"
|
| 682 |
+
],
|
| 683 |
+
[
|
| 684 |
+
"Ġ",
|
| 685 |
+
"he"
|
| 686 |
+
],
|
| 687 |
+
[
|
| 688 |
+
"e",
|
| 689 |
+
"r"
|
| 690 |
+
],
|
| 691 |
+
[
|
| 692 |
+
"Ġ",
|
| 693 |
+
"m"
|
| 694 |
+
],
|
| 695 |
+
[
|
| 696 |
+
"Ġ",
|
| 697 |
+
"p"
|
| 698 |
+
],
|
| 699 |
+
[
|
| 700 |
+
"Ġwa",
|
| 701 |
+
"s"
|
| 702 |
+
],
|
| 703 |
+
[
|
| 704 |
+
"Ġ",
|
| 705 |
+
"T"
|
| 706 |
+
],
|
| 707 |
+
[
|
| 708 |
+
"o",
|
| 709 |
+
"m"
|
| 710 |
+
],
|
| 711 |
+
[
|
| 712 |
+
"Ġ",
|
| 713 |
+
"o"
|
| 714 |
+
],
|
| 715 |
+
[
|
| 716 |
+
"a",
|
| 717 |
+
"y"
|
| 718 |
+
],
|
| 719 |
+
[
|
| 720 |
+
"i",
|
| 721 |
+
"s"
|
| 722 |
+
],
|
| 723 |
+
[
|
| 724 |
+
"a",
|
| 725 |
+
"r"
|
| 726 |
+
],
|
| 727 |
+
[
|
| 728 |
+
"i",
|
| 729 |
+
"l"
|
| 730 |
+
],
|
| 731 |
+
[
|
| 732 |
+
"in",
|
| 733 |
+
"g"
|
| 734 |
+
],
|
| 735 |
+
[
|
| 736 |
+
"Ġ",
|
| 737 |
+
"g"
|
| 738 |
+
],
|
| 739 |
+
[
|
| 740 |
+
"i",
|
| 741 |
+
"d"
|
| 742 |
+
],
|
| 743 |
+
[
|
| 744 |
+
"a",
|
| 745 |
+
"t"
|
| 746 |
+
],
|
| 747 |
+
[
|
| 748 |
+
"e",
|
| 749 |
+
"n"
|
| 750 |
+
],
|
| 751 |
+
[
|
| 752 |
+
"Ġ",
|
| 753 |
+
"n"
|
| 754 |
+
],
|
| 755 |
+
[
|
| 756 |
+
"Ġs",
|
| 757 |
+
"a"
|
| 758 |
+
],
|
| 759 |
+
[
|
| 760 |
+
"Ġh",
|
| 761 |
+
"a"
|
| 762 |
+
],
|
| 763 |
+
[
|
| 764 |
+
"Ġ",
|
| 765 |
+
"S"
|
| 766 |
+
],
|
| 767 |
+
[
|
| 768 |
+
"ĠT",
|
| 769 |
+
"he"
|
| 770 |
+
],
|
| 771 |
+
[
|
| 772 |
+
"a",
|
| 773 |
+
"n"
|
| 774 |
+
],
|
| 775 |
+
[
|
| 776 |
+
"i",
|
| 777 |
+
"m"
|
| 778 |
+
],
|
| 779 |
+
[
|
| 780 |
+
"o",
|
| 781 |
+
"r"
|
| 782 |
+
],
|
| 783 |
+
[
|
| 784 |
+
"o",
|
| 785 |
+
"n"
|
| 786 |
+
],
|
| 787 |
+
[
|
| 788 |
+
"Ġ",
|
| 789 |
+
"it"
|
| 790 |
+
],
|
| 791 |
+
[
|
| 792 |
+
"Ġt",
|
| 793 |
+
"h"
|
| 794 |
+
],
|
| 795 |
+
[
|
| 796 |
+
"l",
|
| 797 |
+
"l"
|
| 798 |
+
],
|
| 799 |
+
[
|
| 800 |
+
"l",
|
| 801 |
+
"e"
|
| 802 |
+
],
|
| 803 |
+
[
|
| 804 |
+
"Ġ",
|
| 805 |
+
"H"
|
| 806 |
+
],
|
| 807 |
+
[
|
| 808 |
+
"Ġhe",
|
| 809 |
+
"r"
|
| 810 |
+
],
|
| 811 |
+
[
|
| 812 |
+
"e",
|
| 813 |
+
"t"
|
| 814 |
+
],
|
| 815 |
+
[
|
| 816 |
+
"o",
|
| 817 |
+
"t"
|
| 818 |
+
],
|
| 819 |
+
[
|
| 820 |
+
"i",
|
| 821 |
+
"r"
|
| 822 |
+
],
|
| 823 |
+
[
|
| 824 |
+
"ĠS",
|
| 825 |
+
"he"
|
| 826 |
+
],
|
| 827 |
+
[
|
| 828 |
+
"ĠH",
|
| 829 |
+
"e"
|
| 830 |
+
],
|
| 831 |
+
[
|
| 832 |
+
"e",
|
| 833 |
+
"s"
|
| 834 |
+
],
|
| 835 |
+
[
|
| 836 |
+
"Ġ",
|
| 837 |
+
"in"
|
| 838 |
+
],
|
| 839 |
+
[
|
| 840 |
+
"o",
|
| 841 |
+
"w"
|
| 842 |
+
],
|
| 843 |
+
[
|
| 844 |
+
"u",
|
| 845 |
+
"t"
|
| 846 |
+
],
|
| 847 |
+
[
|
| 848 |
+
"v",
|
| 849 |
+
"er"
|
| 850 |
+
],
|
| 851 |
+
[
|
| 852 |
+
"ĠThe",
|
| 853 |
+
"y"
|
| 854 |
+
],
|
| 855 |
+
[
|
| 856 |
+
"c",
|
| 857 |
+
"k"
|
| 858 |
+
],
|
| 859 |
+
[
|
| 860 |
+
"il",
|
| 861 |
+
"y"
|
| 862 |
+
],
|
| 863 |
+
[
|
| 864 |
+
"Ġ",
|
| 865 |
+
"u"
|
| 866 |
+
],
|
| 867 |
+
[
|
| 868 |
+
"Ġ",
|
| 869 |
+
"e"
|
| 870 |
+
],
|
| 871 |
+
[
|
| 872 |
+
"Ġ",
|
| 873 |
+
"y"
|
| 874 |
+
],
|
| 875 |
+
[
|
| 876 |
+
"l",
|
| 877 |
+
"d"
|
| 878 |
+
],
|
| 879 |
+
[
|
| 880 |
+
"o",
|
| 881 |
+
"o"
|
| 882 |
+
],
|
| 883 |
+
[
|
| 884 |
+
"Ġsa",
|
| 885 |
+
"id"
|
| 886 |
+
],
|
| 887 |
+
[
|
| 888 |
+
"i",
|
| 889 |
+
"g"
|
| 890 |
+
],
|
| 891 |
+
[
|
| 892 |
+
"Ġ",
|
| 893 |
+
"\""
|
| 894 |
+
],
|
| 895 |
+
[
|
| 896 |
+
"Ġ",
|
| 897 |
+
"r"
|
| 898 |
+
],
|
| 899 |
+
[
|
| 900 |
+
"a",
|
| 901 |
+
"m"
|
| 902 |
+
],
|
| 903 |
+
[
|
| 904 |
+
"Ġb",
|
| 905 |
+
"e"
|
| 906 |
+
],
|
| 907 |
+
[
|
| 908 |
+
"Ġ",
|
| 909 |
+
"I"
|
| 910 |
+
],
|
| 911 |
+
[
|
| 912 |
+
"Ġs",
|
| 913 |
+
"t"
|
| 914 |
+
],
|
| 915 |
+
[
|
| 916 |
+
"L",
|
| 917 |
+
"ily"
|
| 918 |
+
],
|
| 919 |
+
[
|
| 920 |
+
"it",
|
| 921 |
+
"h"
|
| 922 |
+
],
|
| 923 |
+
[
|
| 924 |
+
"k",
|
| 925 |
+
"e"
|
| 926 |
+
],
|
| 927 |
+
[
|
| 928 |
+
"c",
|
| 929 |
+
"e"
|
| 930 |
+
],
|
| 931 |
+
[
|
| 932 |
+
"p",
|
| 933 |
+
"p"
|
| 934 |
+
],
|
| 935 |
+
[
|
| 936 |
+
"v",
|
| 937 |
+
"e"
|
| 938 |
+
],
|
| 939 |
+
[
|
| 940 |
+
"Ġw",
|
| 941 |
+
"ith"
|
| 942 |
+
],
|
| 943 |
+
[
|
| 944 |
+
"Ġs",
|
| 945 |
+
"he"
|
| 946 |
+
],
|
| 947 |
+
[
|
| 948 |
+
"O",
|
| 949 |
+
"n"
|
| 950 |
+
],
|
| 951 |
+
[
|
| 952 |
+
"Ġo",
|
| 953 |
+
"n"
|
| 954 |
+
],
|
| 955 |
+
[
|
| 956 |
+
"Ġy",
|
| 957 |
+
"ou"
|
| 958 |
+
],
|
| 959 |
+
[
|
| 960 |
+
"r",
|
| 961 |
+
"i"
|
| 962 |
+
],
|
| 963 |
+
[
|
| 964 |
+
"k",
|
| 965 |
+
"ed"
|
| 966 |
+
],
|
| 967 |
+
[
|
| 968 |
+
"Ġp",
|
| 969 |
+
"l"
|
| 970 |
+
],
|
| 971 |
+
[
|
| 972 |
+
"Ġh",
|
| 973 |
+
"is"
|
| 974 |
+
],
|
| 975 |
+
[
|
| 976 |
+
"Ġo",
|
| 977 |
+
"f"
|
| 978 |
+
],
|
| 979 |
+
[
|
| 980 |
+
"n",
|
| 981 |
+
"t"
|
| 982 |
+
],
|
| 983 |
+
[
|
| 984 |
+
"Ġs",
|
| 985 |
+
"o"
|
| 986 |
+
],
|
| 987 |
+
[
|
| 988 |
+
"a",
|
| 989 |
+
"d"
|
| 990 |
+
],
|
| 991 |
+
[
|
| 992 |
+
"Ġd",
|
| 993 |
+
"ay"
|
| 994 |
+
],
|
| 995 |
+
[
|
| 996 |
+
"ver",
|
| 997 |
+
"y"
|
| 998 |
+
],
|
| 999 |
+
[
|
| 1000 |
+
"Ġth",
|
| 1001 |
+
"at"
|
| 1002 |
+
],
|
| 1003 |
+
[
|
| 1004 |
+
"Ġ",
|
| 1005 |
+
"Lily"
|
| 1006 |
+
],
|
| 1007 |
+
[
|
| 1008 |
+
"Ġpl",
|
| 1009 |
+
"ay"
|
| 1010 |
+
],
|
| 1011 |
+
[
|
| 1012 |
+
"Ġu",
|
| 1013 |
+
"p"
|
| 1014 |
+
],
|
| 1015 |
+
[
|
| 1016 |
+
"Ġw",
|
| 1017 |
+
"e"
|
| 1018 |
+
],
|
| 1019 |
+
[
|
| 1020 |
+
"Ġm",
|
| 1021 |
+
"om"
|
| 1022 |
+
],
|
| 1023 |
+
[
|
| 1024 |
+
"Ġha",
|
| 1025 |
+
"d"
|
| 1026 |
+
],
|
| 1027 |
+
[
|
| 1028 |
+
"Ġthe",
|
| 1029 |
+
"y"
|
| 1030 |
+
],
|
| 1031 |
+
[
|
| 1032 |
+
"s",
|
| 1033 |
+
"t"
|
| 1034 |
+
],
|
| 1035 |
+
[
|
| 1036 |
+
"Ġ",
|
| 1037 |
+
"B"
|
| 1038 |
+
],
|
| 1039 |
+
[
|
| 1040 |
+
"e",
|
| 1041 |
+
"l"
|
| 1042 |
+
],
|
| 1043 |
+
[
|
| 1044 |
+
"Ġf",
|
| 1045 |
+
"or"
|
| 1046 |
+
],
|
| 1047 |
+
[
|
| 1048 |
+
"u",
|
| 1049 |
+
"n"
|
| 1050 |
+
],
|
| 1051 |
+
[
|
| 1052 |
+
"m",
|
| 1053 |
+
"y"
|
| 1054 |
+
],
|
| 1055 |
+
[
|
| 1056 |
+
"'",
|
| 1057 |
+
"s"
|
| 1058 |
+
],
|
| 1059 |
+
[
|
| 1060 |
+
"ou",
|
| 1061 |
+
"ld"
|
| 1062 |
+
],
|
| 1063 |
+
[
|
| 1064 |
+
"Ġl",
|
| 1065 |
+
"i"
|
| 1066 |
+
],
|
| 1067 |
+
[
|
| 1068 |
+
"T",
|
| 1069 |
+
"he"
|
| 1070 |
+
],
|
| 1071 |
+
[
|
| 1072 |
+
"Ġha",
|
| 1073 |
+
"pp"
|
| 1074 |
+
],
|
| 1075 |
+
[
|
| 1076 |
+
"en",
|
| 1077 |
+
"t"
|
| 1078 |
+
],
|
| 1079 |
+
[
|
| 1080 |
+
"c",
|
| 1081 |
+
"h"
|
| 1082 |
+
],
|
| 1083 |
+
[
|
| 1084 |
+
"it",
|
| 1085 |
+
"t"
|
| 1086 |
+
],
|
| 1087 |
+
[
|
| 1088 |
+
"Ġwa",
|
| 1089 |
+
"nt"
|
| 1090 |
+
],
|
| 1091 |
+
[
|
| 1092 |
+
"he",
|
| 1093 |
+
"r"
|
| 1094 |
+
],
|
| 1095 |
+
[
|
| 1096 |
+
"Ġs",
|
| 1097 |
+
"h"
|
| 1098 |
+
],
|
| 1099 |
+
[
|
| 1100 |
+
"ou",
|
| 1101 |
+
"t"
|
| 1102 |
+
],
|
| 1103 |
+
[
|
| 1104 |
+
"Ġd",
|
| 1105 |
+
"o"
|
| 1106 |
+
],
|
| 1107 |
+
[
|
| 1108 |
+
"Ġn",
|
| 1109 |
+
"ot"
|
| 1110 |
+
],
|
| 1111 |
+
[
|
| 1112 |
+
"e",
|
| 1113 |
+
"nd"
|
| 1114 |
+
],
|
| 1115 |
+
[
|
| 1116 |
+
"om",
|
| 1117 |
+
"e"
|
| 1118 |
+
],
|
| 1119 |
+
[
|
| 1120 |
+
"a",
|
| 1121 |
+
"ll"
|
| 1122 |
+
],
|
| 1123 |
+
[
|
| 1124 |
+
"s",
|
| 1125 |
+
"e"
|
| 1126 |
+
],
|
| 1127 |
+
[
|
| 1128 |
+
"Ġ",
|
| 1129 |
+
"very"
|
| 1130 |
+
],
|
| 1131 |
+
[
|
| 1132 |
+
"ou",
|
| 1133 |
+
"nd"
|
| 1134 |
+
],
|
| 1135 |
+
[
|
| 1136 |
+
"l",
|
| 1137 |
+
"y"
|
| 1138 |
+
],
|
| 1139 |
+
[
|
| 1140 |
+
"im",
|
| 1141 |
+
"e"
|
| 1142 |
+
],
|
| 1143 |
+
[
|
| 1144 |
+
"itt",
|
| 1145 |
+
"le"
|
| 1146 |
+
],
|
| 1147 |
+
[
|
| 1148 |
+
"Ġ",
|
| 1149 |
+
"k"
|
| 1150 |
+
],
|
| 1151 |
+
[
|
| 1152 |
+
"Ġt",
|
| 1153 |
+
"ime"
|
| 1154 |
+
],
|
| 1155 |
+
[
|
| 1156 |
+
"Ġw",
|
| 1157 |
+
"h"
|
| 1158 |
+
],
|
| 1159 |
+
[
|
| 1160 |
+
"Ġl",
|
| 1161 |
+
"ittle"
|
| 1162 |
+
],
|
| 1163 |
+
[
|
| 1164 |
+
"Ġthe",
|
| 1165 |
+
"re"
|
| 1166 |
+
],
|
| 1167 |
+
[
|
| 1168 |
+
"Ġn",
|
| 1169 |
+
"e"
|
| 1170 |
+
],
|
| 1171 |
+
[
|
| 1172 |
+
"Ġ",
|
| 1173 |
+
"is"
|
| 1174 |
+
],
|
| 1175 |
+
[
|
| 1176 |
+
"Ġb",
|
| 1177 |
+
"ig"
|
| 1178 |
+
],
|
| 1179 |
+
[
|
| 1180 |
+
"h",
|
| 1181 |
+
"t"
|
| 1182 |
+
],
|
| 1183 |
+
[
|
| 1184 |
+
"Ġhapp",
|
| 1185 |
+
"y"
|
| 1186 |
+
],
|
| 1187 |
+
[
|
| 1188 |
+
"a",
|
| 1189 |
+
"l"
|
| 1190 |
+
],
|
| 1191 |
+
[
|
| 1192 |
+
"Ġ",
|
| 1193 |
+
"M"
|
| 1194 |
+
],
|
| 1195 |
+
[
|
| 1196 |
+
"Ġ",
|
| 1197 |
+
"re"
|
| 1198 |
+
],
|
| 1199 |
+
[
|
| 1200 |
+
"Ġs",
|
| 1201 |
+
"m"
|
| 1202 |
+
],
|
| 1203 |
+
[
|
| 1204 |
+
"Ġ",
|
| 1205 |
+
"Ċ"
|
| 1206 |
+
],
|
| 1207 |
+
[
|
| 1208 |
+
"ri",
|
| 1209 |
+
"end"
|
| 1210 |
+
],
|
| 1211 |
+
[
|
| 1212 |
+
"Ġf",
|
| 1213 |
+
"riend"
|
| 1214 |
+
],
|
| 1215 |
+
[
|
| 1216 |
+
"ĠI",
|
| 1217 |
+
"t"
|
| 1218 |
+
],
|
| 1219 |
+
[
|
| 1220 |
+
"Ġsa",
|
| 1221 |
+
"w"
|
| 1222 |
+
],
|
| 1223 |
+
[
|
| 1224 |
+
"Ġb",
|
| 1225 |
+
"ut"
|
| 1226 |
+
],
|
| 1227 |
+
[
|
| 1228 |
+
".",
|
| 1229 |
+
"\""
|
| 1230 |
+
],
|
| 1231 |
+
[
|
| 1232 |
+
"r",
|
| 1233 |
+
"a"
|
| 1234 |
+
],
|
| 1235 |
+
[
|
| 1236 |
+
"Ġa",
|
| 1237 |
+
"n"
|
| 1238 |
+
],
|
| 1239 |
+
[
|
| 1240 |
+
"Ġa",
|
| 1241 |
+
"s"
|
| 1242 |
+
],
|
| 1243 |
+
[
|
| 1244 |
+
"r",
|
| 1245 |
+
"y"
|
| 1246 |
+
],
|
| 1247 |
+
[
|
| 1248 |
+
"On",
|
| 1249 |
+
"e"
|
| 1250 |
+
],
|
| 1251 |
+
[
|
| 1252 |
+
"a",
|
| 1253 |
+
"ck"
|
| 1254 |
+
],
|
| 1255 |
+
[
|
| 1256 |
+
"id",
|
| 1257 |
+
"e"
|
| 1258 |
+
],
|
| 1259 |
+
[
|
| 1260 |
+
"a",
|
| 1261 |
+
"ke"
|
| 1262 |
+
],
|
| 1263 |
+
[
|
| 1264 |
+
"v",
|
| 1265 |
+
"ed"
|
| 1266 |
+
],
|
| 1267 |
+
[
|
| 1268 |
+
"'",
|
| 1269 |
+
"t"
|
| 1270 |
+
],
|
| 1271 |
+
[
|
| 1272 |
+
"!",
|
| 1273 |
+
"\""
|
| 1274 |
+
],
|
| 1275 |
+
[
|
| 1276 |
+
"u",
|
| 1277 |
+
"g"
|
| 1278 |
+
],
|
| 1279 |
+
[
|
| 1280 |
+
"t",
|
| 1281 |
+
"er"
|
| 1282 |
+
],
|
| 1283 |
+
[
|
| 1284 |
+
"Ġl",
|
| 1285 |
+
"o"
|
| 1286 |
+
],
|
| 1287 |
+
[
|
| 1288 |
+
"Ġl",
|
| 1289 |
+
"oo"
|
| 1290 |
+
],
|
| 1291 |
+
[
|
| 1292 |
+
"On",
|
| 1293 |
+
"ce"
|
| 1294 |
+
],
|
| 1295 |
+
[
|
| 1296 |
+
"Ġwe",
|
| 1297 |
+
"re"
|
| 1298 |
+
],
|
| 1299 |
+
[
|
| 1300 |
+
"ĠT",
|
| 1301 |
+
"im"
|
| 1302 |
+
],
|
| 1303 |
+
[
|
| 1304 |
+
"Ġs",
|
| 1305 |
+
"e"
|
| 1306 |
+
],
|
| 1307 |
+
[
|
| 1308 |
+
"o",
|
| 1309 |
+
"re"
|
| 1310 |
+
],
|
| 1311 |
+
[
|
| 1312 |
+
"Ġb",
|
| 1313 |
+
"o"
|
| 1314 |
+
],
|
| 1315 |
+
[
|
| 1316 |
+
"Ġto",
|
| 1317 |
+
"o"
|
| 1318 |
+
],
|
| 1319 |
+
[
|
| 1320 |
+
"Ġh",
|
| 1321 |
+
"im"
|
| 1322 |
+
],
|
| 1323 |
+
[
|
| 1324 |
+
"Ġg",
|
| 1325 |
+
"o"
|
| 1326 |
+
],
|
| 1327 |
+
[
|
| 1328 |
+
"Ġa",
|
| 1329 |
+
"re"
|
| 1330 |
+
],
|
| 1331 |
+
[
|
| 1332 |
+
"e",
|
| 1333 |
+
"c"
|
| 1334 |
+
],
|
| 1335 |
+
[
|
| 1336 |
+
"Ġup",
|
| 1337 |
+
"on"
|
| 1338 |
+
],
|
| 1339 |
+
[
|
| 1340 |
+
"il",
|
| 1341 |
+
"l"
|
| 1342 |
+
],
|
| 1343 |
+
[
|
| 1344 |
+
"ir",
|
| 1345 |
+
"l"
|
| 1346 |
+
],
|
| 1347 |
+
[
|
| 1348 |
+
"Ġwant",
|
| 1349 |
+
"ed"
|
| 1350 |
+
],
|
| 1351 |
+
[
|
| 1352 |
+
"Ġthe",
|
| 1353 |
+
"m"
|
| 1354 |
+
],
|
| 1355 |
+
[
|
| 1356 |
+
"ar",
|
| 1357 |
+
"d"
|
| 1358 |
+
],
|
| 1359 |
+
[
|
| 1360 |
+
"Ġ",
|
| 1361 |
+
"j"
|
| 1362 |
+
],
|
| 1363 |
+
[
|
| 1364 |
+
"Ġg",
|
| 1365 |
+
"irl"
|
| 1366 |
+
],
|
| 1367 |
+
[
|
| 1368 |
+
"Ġ",
|
| 1369 |
+
"out"
|
| 1370 |
+
],
|
| 1371 |
+
[
|
| 1372 |
+
"Ġthe",
|
| 1373 |
+
"ir"
|
| 1374 |
+
],
|
| 1375 |
+
[
|
| 1376 |
+
"Ġa",
|
| 1377 |
+
"t"
|
| 1378 |
+
],
|
| 1379 |
+
[
|
| 1380 |
+
"i",
|
| 1381 |
+
"nd"
|
| 1382 |
+
],
|
| 1383 |
+
[
|
| 1384 |
+
"w",
|
| 1385 |
+
"ay"
|
| 1386 |
+
],
|
| 1387 |
+
[
|
| 1388 |
+
"u",
|
| 1389 |
+
"r"
|
| 1390 |
+
],
|
| 1391 |
+
[
|
| 1392 |
+
"f",
|
| 1393 |
+
"u"
|
| 1394 |
+
],
|
| 1395 |
+
[
|
| 1396 |
+
"Ġd",
|
| 1397 |
+
"id"
|
| 1398 |
+
],
|
| 1399 |
+
[
|
| 1400 |
+
"Ġ",
|
| 1401 |
+
"A"
|
| 1402 |
+
],
|
| 1403 |
+
[
|
| 1404 |
+
"Ġs",
|
| 1405 |
+
"p"
|
| 1406 |
+
],
|
| 1407 |
+
[
|
| 1408 |
+
"Ġsm",
|
| 1409 |
+
"il"
|
| 1410 |
+
],
|
| 1411 |
+
[
|
| 1412 |
+
"Ġc",
|
| 1413 |
+
"ould"
|
| 1414 |
+
],
|
| 1415 |
+
[
|
| 1416 |
+
"he",
|
| 1417 |
+
"n"
|
| 1418 |
+
],
|
| 1419 |
+
[
|
| 1420 |
+
"Ġha",
|
| 1421 |
+
"ve"
|
| 1422 |
+
],
|
| 1423 |
+
[
|
| 1424 |
+
"a",
|
| 1425 |
+
"in"
|
| 1426 |
+
],
|
| 1427 |
+
[
|
| 1428 |
+
"ĠB",
|
| 1429 |
+
"en"
|
| 1430 |
+
],
|
| 1431 |
+
[
|
| 1432 |
+
"Ġw",
|
| 1433 |
+
"ent"
|
| 1434 |
+
],
|
| 1435 |
+
[
|
| 1436 |
+
"he",
|
| 1437 |
+
"d"
|
| 1438 |
+
],
|
| 1439 |
+
[
|
| 1440 |
+
"Ġn",
|
| 1441 |
+
"am"
|
| 1442 |
+
],
|
| 1443 |
+
[
|
| 1444 |
+
"Ġc",
|
| 1445 |
+
"an"
|
| 1446 |
+
],
|
| 1447 |
+
[
|
| 1448 |
+
"ar",
|
| 1449 |
+
"t"
|
| 1450 |
+
],
|
| 1451 |
+
[
|
| 1452 |
+
"r",
|
| 1453 |
+
"om"
|
| 1454 |
+
],
|
| 1455 |
+
[
|
| 1456 |
+
"l",
|
| 1457 |
+
"p"
|
| 1458 |
+
],
|
| 1459 |
+
[
|
| 1460 |
+
"i",
|
| 1461 |
+
"c"
|
| 1462 |
+
],
|
| 1463 |
+
[
|
| 1464 |
+
"Ġe",
|
| 1465 |
+
"x"
|
| 1466 |
+
],
|
| 1467 |
+
[
|
| 1468 |
+
"r",
|
| 1469 |
+
"ound"
|
| 1470 |
+
],
|
| 1471 |
+
[
|
| 1472 |
+
"Ġfriend",
|
| 1473 |
+
"s"
|
| 1474 |
+
],
|
| 1475 |
+
[
|
| 1476 |
+
"?",
|
| 1477 |
+
"\""
|
| 1478 |
+
],
|
| 1479 |
+
[
|
| 1480 |
+
"Ġhe",
|
| 1481 |
+
"lp"
|
| 1482 |
+
],
|
| 1483 |
+
[
|
| 1484 |
+
"oo",
|
| 1485 |
+
"d"
|
| 1486 |
+
],
|
| 1487 |
+
[
|
| 1488 |
+
"fu",
|
| 1489 |
+
"l"
|
| 1490 |
+
],
|
| 1491 |
+
[
|
| 1492 |
+
"Ġk",
|
| 1493 |
+
"n"
|
| 1494 |
+
],
|
| 1495 |
+
[
|
| 1496 |
+
"Ġ",
|
| 1497 |
+
"J"
|
| 1498 |
+
],
|
| 1499 |
+
[
|
| 1500 |
+
"Ġa",
|
| 1501 |
+
"ll"
|
| 1502 |
+
],
|
| 1503 |
+
[
|
| 1504 |
+
"h",
|
| 1505 |
+
"ing"
|
| 1506 |
+
],
|
| 1507 |
+
[
|
| 1508 |
+
"ig",
|
| 1509 |
+
"ht"
|
| 1510 |
+
],
|
| 1511 |
+
[
|
| 1512 |
+
"u",
|
| 1513 |
+
"m"
|
| 1514 |
+
],
|
| 1515 |
+
[
|
| 1516 |
+
"ar",
|
| 1517 |
+
"k"
|
| 1518 |
+
],
|
| 1519 |
+
[
|
| 1520 |
+
"Ġf",
|
| 1521 |
+
"un"
|
| 1522 |
+
],
|
| 1523 |
+
[
|
| 1524 |
+
"on",
|
| 1525 |
+
"e"
|
| 1526 |
+
],
|
| 1527 |
+
[
|
| 1528 |
+
"Ġs",
|
| 1529 |
+
"ay"
|
| 1530 |
+
],
|
| 1531 |
+
[
|
| 1532 |
+
"Ġb",
|
| 1533 |
+
"ack"
|
| 1534 |
+
],
|
| 1535 |
+
[
|
| 1536 |
+
"Y",
|
| 1537 |
+
"ou"
|
| 1538 |
+
],
|
| 1539 |
+
[
|
| 1540 |
+
"Ġnam",
|
| 1541 |
+
"ed"
|
| 1542 |
+
],
|
| 1543 |
+
[
|
| 1544 |
+
"a",
|
| 1545 |
+
"re"
|
| 1546 |
+
],
|
| 1547 |
+
[
|
| 1548 |
+
"Ġc",
|
| 1549 |
+
"l"
|
| 1550 |
+
],
|
| 1551 |
+
[
|
| 1552 |
+
"ĠT",
|
| 1553 |
+
"om"
|
| 1554 |
+
],
|
| 1555 |
+
[
|
| 1556 |
+
"Ġn",
|
| 1557 |
+
"o"
|
| 1558 |
+
],
|
| 1559 |
+
[
|
| 1560 |
+
"Ġl",
|
| 1561 |
+
"e"
|
| 1562 |
+
],
|
| 1563 |
+
[
|
| 1564 |
+
"Ġlo",
|
| 1565 |
+
"ved"
|
| 1566 |
+
],
|
| 1567 |
+
[
|
| 1568 |
+
"o",
|
| 1569 |
+
"p"
|
| 1570 |
+
],
|
| 1571 |
+
[
|
| 1572 |
+
"el",
|
| 1573 |
+
"t"
|
| 1574 |
+
],
|
| 1575 |
+
[
|
| 1576 |
+
"ĠTim",
|
| 1577 |
+
"my"
|
| 1578 |
+
],
|
| 1579 |
+
[
|
| 1580 |
+
"Ġ",
|
| 1581 |
+
"One"
|
| 1582 |
+
],
|
| 1583 |
+
[
|
| 1584 |
+
"ou",
|
| 1585 |
+
"g"
|
| 1586 |
+
],
|
| 1587 |
+
[
|
| 1588 |
+
"Ġs",
|
| 1589 |
+
"c"
|
| 1590 |
+
],
|
| 1591 |
+
[
|
| 1592 |
+
"Ġf",
|
| 1593 |
+
"elt"
|
| 1594 |
+
],
|
| 1595 |
+
[
|
| 1596 |
+
"Ġto",
|
| 1597 |
+
"y"
|
| 1598 |
+
]
|
| 1599 |
+
]
|
| 1600 |
+
}
|
| 1601 |
+
}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "<|unk|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"1": {
|
| 12 |
+
"content": "<|pad|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"2": {
|
| 20 |
+
"content": "<|bos|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"3": {
|
| 28 |
+
"content": "<|eos|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"4": {
|
| 36 |
+
"content": "<|im_start|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"5": {
|
| 44 |
+
"content": "<|im_end|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
}
|
| 51 |
+
},
|
| 52 |
+
"bos_token": "<|im_start|>",
|
| 53 |
+
"clean_up_tokenization_spaces": false,
|
| 54 |
+
"eos_token": "<|im_end|>",
|
| 55 |
+
"extra_special_tokens": {},
|
| 56 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 57 |
+
"pad_token": "<|pad|>",
|
| 58 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 59 |
+
}
|