Upload checkpoint-1500
Browse files- architecture.py +238 -0
- config.json +37 -0
- generation_config.json +9 -0
- merges.txt +0 -0
- model-00001-of-00007.safetensors +3 -0
- model-00002-of-00007.safetensors +3 -0
- model-00003-of-00007.safetensors +3 -0
- model-00004-of-00007.safetensors +3 -0
- model-00005-of-00007.safetensors +3 -0
- model-00006-of-00007.safetensors +3 -0
- model-00007-of-00007.safetensors +3 -0
- model.safetensors.index.json +297 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer_config.json +784 -0
- trainer_state.json +1203 -0
- training_args.bin +3 -0
- vocab.json +0 -0
architecture.py
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- START OF FILE architectureV3.py ---
|
| 2 |
+
|
| 3 |
+
import torch
|
| 4 |
+
import torch.nn as nn
|
| 5 |
+
import torch.nn.functional as F
|
| 6 |
+
from transformers import Phi3Config, Phi3ForCausalLM
|
| 7 |
+
from transformers.modeling_outputs import CausalLMOutputWithPast
|
| 8 |
+
from typing import Optional, Dict, Tuple
|
| 9 |
+
from dataclasses import dataclass
|
| 10 |
+
|
| 11 |
+
@dataclass
|
| 12 |
+
class CausalLMOutputWithLTM(CausalLMOutputWithPast):
|
| 13 |
+
loss: Optional[torch.FloatTensor] = None
|
| 14 |
+
logits: torch.FloatTensor = None
|
| 15 |
+
past_key_values: Optional[Tuple[Tuple[torch.FloatTensor]]] = None
|
| 16 |
+
hidden_states: Optional[Tuple[torch.FloatTensor]] = None
|
| 17 |
+
attentions: Optional[Tuple[torch.FloatTensor]] = None
|
| 18 |
+
ltm_state: Optional[torch.Tensor] = None # The returned LTM state
|
| 19 |
+
|
| 20 |
+
# --- BUILDING BLOCK 1: Hierarchical VectorMemoryHead (Stateless) ---
|
| 21 |
+
class VectorMemoryHead(nn.Module):
|
| 22 |
+
def __init__(self, hidden_dim: int, num_memory_slots: int, num_heads: int, ff_dim: int,
|
| 23 |
+
num_long_term_memory_slots: int = 0,
|
| 24 |
+
device=None, dtype=None):
|
| 25 |
+
super().__init__()
|
| 26 |
+
self.hidden_dim = hidden_dim
|
| 27 |
+
self.num_memory_slots = num_memory_slots
|
| 28 |
+
self.num_long_term_memory_slots = num_long_term_memory_slots
|
| 29 |
+
self.use_long_term_memory = self.num_long_term_memory_slots > 0
|
| 30 |
+
|
| 31 |
+
encoder_layer = nn.TransformerEncoderLayer(
|
| 32 |
+
d_model=hidden_dim, nhead=num_heads, dim_feedforward=ff_dim, dropout=0.1, batch_first=True,
|
| 33 |
+
device=device, dtype=dtype)
|
| 34 |
+
self.encoder = nn.TransformerEncoder(encoder_layer, num_layers=1)
|
| 35 |
+
self.memory_queries = nn.Parameter(torch.randn(1, num_memory_slots, hidden_dim, device=device, dtype=dtype))
|
| 36 |
+
self.memory_attention = nn.MultiheadAttention(
|
| 37 |
+
embed_dim=hidden_dim, num_heads=num_heads, dropout=0.1, batch_first=True, device=device, dtype=dtype)
|
| 38 |
+
self.memory_layernorm = nn.LayerNorm(hidden_dim, device=device, dtype=dtype)
|
| 39 |
+
self.decoder_attention = nn.MultiheadAttention(
|
| 40 |
+
embed_dim=hidden_dim, num_heads=num_heads, dropout=0.1, batch_first=True, device=device, dtype=dtype)
|
| 41 |
+
self.decoder_layernorm = nn.LayerNorm(hidden_dim, device=device, dtype=dtype)
|
| 42 |
+
self.decoder_ffn = nn.Sequential(
|
| 43 |
+
nn.Linear(hidden_dim, ff_dim, device=device, dtype=dtype), nn.ReLU(),
|
| 44 |
+
nn.Linear(ff_dim, hidden_dim, device=device, dtype=dtype))
|
| 45 |
+
|
| 46 |
+
if self.use_long_term_memory:
|
| 47 |
+
self.memory_update_gate = nn.Sequential(
|
| 48 |
+
nn.Linear(hidden_dim, hidden_dim, device=device, dtype=dtype), nn.Sigmoid())
|
| 49 |
+
self.ltm_retrieval_attention = nn.MultiheadAttention(
|
| 50 |
+
embed_dim=hidden_dim, num_heads=num_heads, dropout=0.1, batch_first=True, device=device, dtype=dtype)
|
| 51 |
+
|
| 52 |
+
def forward(self, memory_input_sequence: torch.Tensor,
|
| 53 |
+
long_term_memory: Optional[torch.Tensor] = None) -> Tuple[torch.Tensor, torch.Tensor, Optional[torch.Tensor]]:
|
| 54 |
+
batch_size = memory_input_sequence.shape[0]
|
| 55 |
+
new_ltm_state = long_term_memory
|
| 56 |
+
queries = self.memory_queries.expand(batch_size, -1, -1)
|
| 57 |
+
encoded_vectors = self.encoder(memory_input_sequence)
|
| 58 |
+
compressed_memory, _ = self.memory_attention(query=queries, key=encoded_vectors, value=encoded_vectors)
|
| 59 |
+
compressed_memory = self.memory_layernorm(compressed_memory + queries)
|
| 60 |
+
final_memory_context = compressed_memory
|
| 61 |
+
|
| 62 |
+
if self.use_long_term_memory and long_term_memory is not None:
|
| 63 |
+
retrieved_ltm, _ = self.ltm_retrieval_attention(
|
| 64 |
+
query=compressed_memory, key=long_term_memory, value=long_term_memory)
|
| 65 |
+
l1_summary = compressed_memory.mean(dim=1, keepdim=True)
|
| 66 |
+
update_gate = self.memory_update_gate(l1_summary)
|
| 67 |
+
new_ltm_state = (update_gate * l1_summary) + ((1 - update_gate) * long_term_memory)
|
| 68 |
+
final_memory_context = final_memory_context + retrieved_ltm
|
| 69 |
+
|
| 70 |
+
reconstructed, _ = self.decoder_attention(query=encoded_vectors, key=final_memory_context, value=final_memory_context)
|
| 71 |
+
reconstructed_vectors = self.decoder_layernorm(reconstructed + encoded_vectors)
|
| 72 |
+
reconstructed_vectors = self.decoder_ffn(reconstructed_vectors)
|
| 73 |
+
return compressed_memory, reconstructed_vectors, new_ltm_state
|
| 74 |
+
|
| 75 |
+
# --- BUILDING BLOCK 2: ReflectiveMemoryLayer ---
|
| 76 |
+
class ReflectiveMemoryLayer(nn.Module):
|
| 77 |
+
def __init__(self, original_layer: nn.Linear, global_input_dim: int,
|
| 78 |
+
memory_dim: int, num_memory_slots: int, memory_num_heads: int,
|
| 79 |
+
global_state_storage: Dict):
|
| 80 |
+
super().__init__()
|
| 81 |
+
self.input_dim, self.output_dim = original_layer.in_features, original_layer.out_features
|
| 82 |
+
self.memory_dim, self.global_state_storage = memory_dim, global_state_storage
|
| 83 |
+
self.linear = original_layer # Keep the original linear layer frozen
|
| 84 |
+
self.refinement_passes: int = 2
|
| 85 |
+
device, dtype = self.linear.weight.device, self.linear.weight.dtype
|
| 86 |
+
|
| 87 |
+
self.local_state_proj = nn.Linear(self.input_dim, memory_dim, device=device, dtype=dtype)
|
| 88 |
+
self.global_state_proj = nn.Linear(global_input_dim, memory_dim, device=device, dtype=dtype)
|
| 89 |
+
self.memory_head = VectorMemoryHead(
|
| 90 |
+
hidden_dim=memory_dim, num_memory_slots=num_memory_slots, num_heads=memory_num_heads,
|
| 91 |
+
ff_dim=memory_dim * 2, num_long_term_memory_slots=32, device=device, dtype=dtype)
|
| 92 |
+
self.thought_critique_attention = nn.MultiheadAttention(
|
| 93 |
+
embed_dim=memory_dim, num_heads=memory_num_heads, dropout=0.1, batch_first=True, device=device, dtype=dtype)
|
| 94 |
+
self.thought_layernorm = nn.LayerNorm(memory_dim, device=device, dtype=dtype)
|
| 95 |
+
self.correction_head = nn.Linear(memory_dim, 2 * self.output_dim, device=device, dtype=dtype)
|
| 96 |
+
|
| 97 |
+
self.last_corrected_activation, self.last_additive_correction = None, None
|
| 98 |
+
self.last_memory_input, self.last_reconstructed_from_memory = None, None
|
| 99 |
+
|
| 100 |
+
def forward(self, x: torch.Tensor):
|
| 101 |
+
base_output = self.linear(x)
|
| 102 |
+
if 'embeds' not in self.global_state_storage:
|
| 103 |
+
return base_output
|
| 104 |
+
|
| 105 |
+
global_embeds = self.global_state_storage['embeds']
|
| 106 |
+
if global_embeds.shape[1] != x.shape[1]:
|
| 107 |
+
global_embeds = global_embeds[:, -x.shape[1]:, :]
|
| 108 |
+
B, S, _ = x.shape
|
| 109 |
+
|
| 110 |
+
# CRITICAL FIX: Always detach LTM state to prevent backward through previous graphs
|
| 111 |
+
ltm_state = self.global_state_storage.get('ltm', None)
|
| 112 |
+
if ltm_state is not None:
|
| 113 |
+
ltm_state = ltm_state.detach()
|
| 114 |
+
|
| 115 |
+
proj_local = self.local_state_proj(x)
|
| 116 |
+
proj_global = self.global_state_proj(global_embeds)
|
| 117 |
+
memory_input = torch.stack([proj_global, proj_local], dim=2)
|
| 118 |
+
memory_input_flat = memory_input.view(B * S, 2, self.memory_dim)
|
| 119 |
+
|
| 120 |
+
# *** FIX: Expand LTM state to match the flattened token dimension (B*S) ***
|
| 121 |
+
ltm_state_expanded = None
|
| 122 |
+
if ltm_state is not None:
|
| 123 |
+
ltm_state_expanded = ltm_state.repeat_interleave(S, dim=0)
|
| 124 |
+
|
| 125 |
+
compressed_mem_flat, recon_flat, new_ltm_state_expanded = self.memory_head(memory_input_flat, ltm_state_expanded)
|
| 126 |
+
|
| 127 |
+
# *** FIX: Condense updated LTM state back to batch dimension B ***
|
| 128 |
+
if new_ltm_state_expanded is not None:
|
| 129 |
+
num_ltm_slots = new_ltm_state_expanded.shape[1]
|
| 130 |
+
new_ltm_condensed = new_ltm_state_expanded.view(B, S, num_ltm_slots, self.memory_dim).mean(dim=1)
|
| 131 |
+
# CRITICAL FIX: Always detach when storing in global state
|
| 132 |
+
self.global_state_storage['ltm'] = new_ltm_condensed.detach()
|
| 133 |
+
|
| 134 |
+
initial_thought = compressed_mem_flat.mean(dim=1).view(B, S, self.memory_dim)
|
| 135 |
+
current_thought = initial_thought
|
| 136 |
+
if not self.training and self.refinement_passes > 0:
|
| 137 |
+
with torch.no_grad():
|
| 138 |
+
for _ in range(self.refinement_passes):
|
| 139 |
+
current_thought_flat = current_thought.view(B * S, 1, self.memory_dim)
|
| 140 |
+
internal_ref, _ = self.memory_head.decoder_attention(
|
| 141 |
+
query=current_thought_flat, key=compressed_mem_flat, value=compressed_mem_flat)
|
| 142 |
+
external_crit, _ = self.thought_critique_attention(
|
| 143 |
+
query=current_thought_flat, key=memory_input_flat, value=memory_input_flat)
|
| 144 |
+
refined_thought = current_thought + internal_ref.view(B,S,-1) + external_crit.view(B,S,-1)
|
| 145 |
+
current_thought = self.thought_layernorm(refined_thought)
|
| 146 |
+
|
| 147 |
+
thought_for_correction = current_thought if not self.training else initial_thought
|
| 148 |
+
raw_correction = self.correction_head(thought_for_correction)
|
| 149 |
+
gate, value = torch.chunk(raw_correction, 2, dim=-1)
|
| 150 |
+
final_activation = base_output * torch.sigmoid(gate.to(x.dtype)) + value.to(x.dtype)
|
| 151 |
+
|
| 152 |
+
if self.training:
|
| 153 |
+
# CRITICAL FIX: Detach tensors stored for debugging/analysis
|
| 154 |
+
self.last_corrected_activation = final_activation.detach()
|
| 155 |
+
self.last_additive_correction = value.detach()
|
| 156 |
+
self.last_memory_input = memory_input.detach()
|
| 157 |
+
self.last_reconstructed_from_memory = recon_flat.view(B, S, 2, self.memory_dim).detach()
|
| 158 |
+
return final_activation
|
| 159 |
+
|
| 160 |
+
# --- BUILDING BLOCK 3: The Full Custom Model with State Management ---
|
| 161 |
+
class Phi3WithReflectiveMemoryForCausalLM(Phi3ForCausalLM):
|
| 162 |
+
def __init__(self, config):
|
| 163 |
+
super().__init__(config)
|
| 164 |
+
self.global_state_storage = {}
|
| 165 |
+
self.target_layer_path = "model.layers.15.mlp.gate_up_proj"
|
| 166 |
+
self.memory_dim, self.num_long_term_memory_slots = 256, 32
|
| 167 |
+
|
| 168 |
+
# CRITICAL FIX: Ensure embeddings are detached when stored
|
| 169 |
+
def embedding_hook(module, input, output):
|
| 170 |
+
self.global_state_storage['embeds'] = output.detach()
|
| 171 |
+
|
| 172 |
+
self.model.embed_tokens.register_forward_hook(embedding_hook)
|
| 173 |
+
|
| 174 |
+
try:
|
| 175 |
+
original_layer = self.get_submodule(self.target_layer_path)
|
| 176 |
+
custom_layer = ReflectiveMemoryLayer(
|
| 177 |
+
original_layer=original_layer, global_input_dim=config.hidden_size,
|
| 178 |
+
memory_dim=self.memory_dim, num_memory_slots=32, memory_num_heads=16,
|
| 179 |
+
global_state_storage=self.global_state_storage)
|
| 180 |
+
parent_path = ".".join(self.target_layer_path.split('.')[:-1])
|
| 181 |
+
setattr(self.get_submodule(parent_path), self.target_layer_path.split('.')[-1], custom_layer)
|
| 182 |
+
print(f"Successfully replaced '{self.target_layer_path}' with ReflectiveMemoryLayer.")
|
| 183 |
+
except AttributeError:
|
| 184 |
+
print(f"Could not find target layer '{self.target_layer_path}'. Model remains unmodified.")
|
| 185 |
+
|
| 186 |
+
def _init_ltm_state(self, batch_size, device, dtype):
|
| 187 |
+
# *** FIX: Initialize LTM state per item in the batch (no hardcoded hack) ***
|
| 188 |
+
return torch.zeros(
|
| 189 |
+
batch_size, self.num_long_term_memory_slots, self.memory_dim, device=device, dtype=dtype)
|
| 190 |
+
|
| 191 |
+
def forward(self, input_ids: torch.LongTensor = None, attention_mask: Optional[torch.Tensor] = None,
|
| 192 |
+
position_ids: Optional[torch.LongTensor] = None, past_key_values: Optional[list[torch.FloatTensor]] = None,
|
| 193 |
+
inputs_embeds: Optional[torch.FloatTensor] = None, labels: Optional[torch.LongTensor] = None,
|
| 194 |
+
use_cache: Optional[bool] = None, output_attentions: Optional[bool] = None,
|
| 195 |
+
output_hidden_states: Optional[bool] = None, return_dict: Optional[bool] = None,
|
| 196 |
+
ltm_state: Optional[torch.Tensor] = None):
|
| 197 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
| 198 |
+
|
| 199 |
+
# CRITICAL FIX: Don't clear global state storage completely, just reset embeds
|
| 200 |
+
# This prevents losing LTM state continuity
|
| 201 |
+
if 'embeds' in self.global_state_storage:
|
| 202 |
+
del self.global_state_storage['embeds']
|
| 203 |
+
|
| 204 |
+
# *** FIX: Initialize LTM state if not provided, for both training and first step of inference ***
|
| 205 |
+
if ltm_state is None:
|
| 206 |
+
batch_size = input_ids.shape[0] if input_ids is not None else inputs_embeds.shape[0]
|
| 207 |
+
ltm_state = self._init_ltm_state(batch_size, self.device, self.dtype)
|
| 208 |
+
|
| 209 |
+
# CRITICAL FIX: Ensure LTM state is detached when stored
|
| 210 |
+
self.global_state_storage['ltm'] = ltm_state.detach() if ltm_state is not None else None
|
| 211 |
+
|
| 212 |
+
outputs = self.model(
|
| 213 |
+
input_ids=input_ids, attention_mask=attention_mask, position_ids=position_ids,
|
| 214 |
+
past_key_values=past_key_values, inputs_embeds=inputs_embeds, use_cache=use_cache,
|
| 215 |
+
output_attentions=output_attentions, output_hidden_states=output_hidden_states, return_dict=return_dict)
|
| 216 |
+
|
| 217 |
+
hidden_states = outputs[0]
|
| 218 |
+
logits = self.lm_head(hidden_states).float()
|
| 219 |
+
|
| 220 |
+
loss = None
|
| 221 |
+
if labels is not None:
|
| 222 |
+
loss_fct = nn.CrossEntropyLoss()
|
| 223 |
+
loss = loss_fct(logits[..., :-1, :].contiguous().view(-1, self.config.vocab_size),
|
| 224 |
+
labels[..., 1:].contiguous().view(-1))
|
| 225 |
+
# Note: Auxiliary losses from main.py are calculated outside the model forward pass.
|
| 226 |
+
|
| 227 |
+
# CRITICAL FIX: Ensure returned LTM state is detached
|
| 228 |
+
new_ltm_state = self.global_state_storage.get('ltm', None)
|
| 229 |
+
if new_ltm_state is not None:
|
| 230 |
+
new_ltm_state = new_ltm_state.detach()
|
| 231 |
+
|
| 232 |
+
if not return_dict:
|
| 233 |
+
output = (logits,) + outputs[1:] + (new_ltm_state,)
|
| 234 |
+
return (loss,) + output if loss is not None else output
|
| 235 |
+
|
| 236 |
+
return CausalLMOutputWithLTM(
|
| 237 |
+
loss=loss, logits=logits, past_key_values=outputs.past_key_values,
|
| 238 |
+
hidden_states=outputs.hidden_states, attentions=outputs.attentions, ltm_state=new_ltm_state)
|
config.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "./phi3_mini_with_vectormemory_layer_v12_final",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Phi3WithReflectiveMemoryForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"auto_map": {
|
| 9 |
+
"AutoModel": "architecture.Phi3WithReflectiveMemoryForCausalLM",
|
| 10 |
+
"AutoModelForCausalLM": "architecture.Phi3WithReflectiveMemoryForCausalLM"
|
| 11 |
+
},
|
| 12 |
+
"bos_token_id": 100257,
|
| 13 |
+
"embd_pdrop": 0.0,
|
| 14 |
+
"eos_token_id": 100257,
|
| 15 |
+
"hidden_act": "silu",
|
| 16 |
+
"hidden_size": 5120,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 17920,
|
| 19 |
+
"max_position_embeddings": 16384,
|
| 20 |
+
"model_type": "phi3",
|
| 21 |
+
"num_attention_heads": 40,
|
| 22 |
+
"num_hidden_layers": 40,
|
| 23 |
+
"num_key_value_heads": 10,
|
| 24 |
+
"original_max_position_embeddings": 16384,
|
| 25 |
+
"pad_token_id": 100257,
|
| 26 |
+
"partial_rotary_factor": 1.0,
|
| 27 |
+
"resid_pdrop": 0.0,
|
| 28 |
+
"rms_norm_eps": 1e-05,
|
| 29 |
+
"rope_scaling": null,
|
| 30 |
+
"rope_theta": 250000,
|
| 31 |
+
"sliding_window": null,
|
| 32 |
+
"tie_word_embeddings": false,
|
| 33 |
+
"torch_dtype": "bfloat16",
|
| 34 |
+
"transformers_version": "4.49.0",
|
| 35 |
+
"use_cache": false,
|
| 36 |
+
"vocab_size": 100352
|
| 37 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 100257,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
100257,
|
| 6 |
+
100265
|
| 7 |
+
],
|
| 8 |
+
"transformers_version": "4.49.0"
|
| 9 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e055a52dea9e514d5c3b1245ced6e6b0d04c9b316efd02946382844cbd0275b
|
| 3 |
+
size 4933656472
|
model-00002-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ade161164aae03943fb17b68fba9390cbfe8c181c5bb8814a45006d6721b29ea
|
| 3 |
+
size 4954690712
|
model-00003-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e9f50b395c8d4362ddb88860eb9a3bd0d9d1944771527be41babcc5bde030e8
|
| 3 |
+
size 4948172048
|
model-00004-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2f2b1c5f9fe700050099fb926413edc2d85b24ae9c317d7a1fc7a7ec2ce4491
|
| 3 |
+
size 4771169120
|
model-00005-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12b50575d59e89524f9ef42e17c0e80dbc6c89da906ccac5087c0ee0bba535a9
|
| 3 |
+
size 4771169120
|
model-00006-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bc116c49c0acd6edbf34ca52ab0f0a8a7d7fcfff62af2dde7cdcf3bb91fe2ba
|
| 3 |
+
size 4954648144
|
model-00007-of-00007.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:289b2d9f9b099241b1268e2f95a4903e18439fd473149d38bde506612a377d78
|
| 3 |
+
size 1394657832
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,297 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 30728128000
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00007-of-00007.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00007.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_up_proj.weight": "model-00001-of-00007.safetensors",
|
| 11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 12 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.qkv_proj.weight": "model-00001-of-00007.safetensors",
|
| 14 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 15 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 16 |
+
"model.layers.1.mlp.gate_up_proj.weight": "model-00001-of-00007.safetensors",
|
| 17 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 18 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 19 |
+
"model.layers.1.self_attn.qkv_proj.weight": "model-00001-of-00007.safetensors",
|
| 20 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 21 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 22 |
+
"model.layers.10.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 23 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 24 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 25 |
+
"model.layers.10.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 26 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 27 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 28 |
+
"model.layers.11.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 29 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 30 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 31 |
+
"model.layers.11.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 32 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 33 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 34 |
+
"model.layers.12.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 35 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 36 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 37 |
+
"model.layers.12.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 38 |
+
"model.layers.13.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 39 |
+
"model.layers.13.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 40 |
+
"model.layers.13.mlp.gate_up_proj.weight": "model-00003-of-00007.safetensors",
|
| 41 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 42 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 43 |
+
"model.layers.13.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 44 |
+
"model.layers.14.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 45 |
+
"model.layers.14.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 46 |
+
"model.layers.14.mlp.gate_up_proj.weight": "model-00003-of-00007.safetensors",
|
| 47 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 48 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 49 |
+
"model.layers.14.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 50 |
+
"model.layers.15.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 51 |
+
"model.layers.15.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 52 |
+
"model.layers.15.mlp.gate_up_proj.correction_head.bias": "model-00003-of-00007.safetensors",
|
| 53 |
+
"model.layers.15.mlp.gate_up_proj.correction_head.weight": "model-00003-of-00007.safetensors",
|
| 54 |
+
"model.layers.15.mlp.gate_up_proj.global_state_proj.bias": "model-00003-of-00007.safetensors",
|
| 55 |
+
"model.layers.15.mlp.gate_up_proj.global_state_proj.weight": "model-00003-of-00007.safetensors",
|
| 56 |
+
"model.layers.15.mlp.gate_up_proj.linear.weight": "model-00003-of-00007.safetensors",
|
| 57 |
+
"model.layers.15.mlp.gate_up_proj.local_state_proj.bias": "model-00003-of-00007.safetensors",
|
| 58 |
+
"model.layers.15.mlp.gate_up_proj.local_state_proj.weight": "model-00003-of-00007.safetensors",
|
| 59 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_attention.in_proj_bias": "model-00003-of-00007.safetensors",
|
| 60 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_attention.in_proj_weight": "model-00003-of-00007.safetensors",
|
| 61 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_attention.out_proj.bias": "model-00003-of-00007.safetensors",
|
| 62 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_attention.out_proj.weight": "model-00003-of-00007.safetensors",
|
| 63 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_ffn.0.bias": "model-00003-of-00007.safetensors",
|
| 64 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_ffn.0.weight": "model-00003-of-00007.safetensors",
|
| 65 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_ffn.2.bias": "model-00003-of-00007.safetensors",
|
| 66 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_ffn.2.weight": "model-00003-of-00007.safetensors",
|
| 67 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_layernorm.bias": "model-00003-of-00007.safetensors",
|
| 68 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.decoder_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 69 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.linear1.bias": "model-00003-of-00007.safetensors",
|
| 70 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.linear1.weight": "model-00003-of-00007.safetensors",
|
| 71 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.linear2.bias": "model-00003-of-00007.safetensors",
|
| 72 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.linear2.weight": "model-00003-of-00007.safetensors",
|
| 73 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.norm1.bias": "model-00003-of-00007.safetensors",
|
| 74 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.norm1.weight": "model-00003-of-00007.safetensors",
|
| 75 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.norm2.bias": "model-00003-of-00007.safetensors",
|
| 76 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.norm2.weight": "model-00003-of-00007.safetensors",
|
| 77 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.self_attn.in_proj_bias": "model-00003-of-00007.safetensors",
|
| 78 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.self_attn.in_proj_weight": "model-00003-of-00007.safetensors",
|
| 79 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.self_attn.out_proj.bias": "model-00003-of-00007.safetensors",
|
| 80 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.encoder.layers.0.self_attn.out_proj.weight": "model-00003-of-00007.safetensors",
|
| 81 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.ltm_retrieval_attention.in_proj_bias": "model-00003-of-00007.safetensors",
|
| 82 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.ltm_retrieval_attention.in_proj_weight": "model-00003-of-00007.safetensors",
|
| 83 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.ltm_retrieval_attention.out_proj.bias": "model-00003-of-00007.safetensors",
|
| 84 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.ltm_retrieval_attention.out_proj.weight": "model-00003-of-00007.safetensors",
|
| 85 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_attention.in_proj_bias": "model-00003-of-00007.safetensors",
|
| 86 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_attention.in_proj_weight": "model-00003-of-00007.safetensors",
|
| 87 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_attention.out_proj.bias": "model-00003-of-00007.safetensors",
|
| 88 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_attention.out_proj.weight": "model-00003-of-00007.safetensors",
|
| 89 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_layernorm.bias": "model-00003-of-00007.safetensors",
|
| 90 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 91 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_queries": "model-00003-of-00007.safetensors",
|
| 92 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_update_gate.0.bias": "model-00003-of-00007.safetensors",
|
| 93 |
+
"model.layers.15.mlp.gate_up_proj.memory_head.memory_update_gate.0.weight": "model-00003-of-00007.safetensors",
|
| 94 |
+
"model.layers.15.mlp.gate_up_proj.thought_critique_attention.in_proj_bias": "model-00003-of-00007.safetensors",
|
| 95 |
+
"model.layers.15.mlp.gate_up_proj.thought_critique_attention.in_proj_weight": "model-00003-of-00007.safetensors",
|
| 96 |
+
"model.layers.15.mlp.gate_up_proj.thought_critique_attention.out_proj.bias": "model-00003-of-00007.safetensors",
|
| 97 |
+
"model.layers.15.mlp.gate_up_proj.thought_critique_attention.out_proj.weight": "model-00003-of-00007.safetensors",
|
| 98 |
+
"model.layers.15.mlp.gate_up_proj.thought_layernorm.bias": "model-00003-of-00007.safetensors",
|
| 99 |
+
"model.layers.15.mlp.gate_up_proj.thought_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 100 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 101 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 102 |
+
"model.layers.15.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 103 |
+
"model.layers.16.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 105 |
+
"model.layers.16.mlp.gate_up_proj.weight": "model-00003-of-00007.safetensors",
|
| 106 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 107 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 108 |
+
"model.layers.16.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 109 |
+
"model.layers.17.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 110 |
+
"model.layers.17.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 111 |
+
"model.layers.17.mlp.gate_up_proj.weight": "model-00003-of-00007.safetensors",
|
| 112 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 115 |
+
"model.layers.18.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 116 |
+
"model.layers.18.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 117 |
+
"model.layers.18.mlp.gate_up_proj.weight": "model-00003-of-00007.safetensors",
|
| 118 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 119 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 120 |
+
"model.layers.18.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 121 |
+
"model.layers.19.input_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 122 |
+
"model.layers.19.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
|
| 123 |
+
"model.layers.19.mlp.gate_up_proj.weight": "model-00003-of-00007.safetensors",
|
| 124 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
|
| 125 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 126 |
+
"model.layers.19.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 127 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 128 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 129 |
+
"model.layers.2.mlp.gate_up_proj.weight": "model-00001-of-00007.safetensors",
|
| 130 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 131 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 132 |
+
"model.layers.2.self_attn.qkv_proj.weight": "model-00001-of-00007.safetensors",
|
| 133 |
+
"model.layers.20.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 134 |
+
"model.layers.20.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 135 |
+
"model.layers.20.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 136 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 137 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
|
| 138 |
+
"model.layers.20.self_attn.qkv_proj.weight": "model-00003-of-00007.safetensors",
|
| 139 |
+
"model.layers.21.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 140 |
+
"model.layers.21.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 141 |
+
"model.layers.21.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 142 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 143 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 144 |
+
"model.layers.21.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 145 |
+
"model.layers.22.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 146 |
+
"model.layers.22.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 147 |
+
"model.layers.22.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 148 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 149 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 150 |
+
"model.layers.22.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 151 |
+
"model.layers.23.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 152 |
+
"model.layers.23.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 153 |
+
"model.layers.23.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 154 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 155 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 156 |
+
"model.layers.23.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 157 |
+
"model.layers.24.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 158 |
+
"model.layers.24.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 159 |
+
"model.layers.24.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 160 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 161 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 162 |
+
"model.layers.24.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 163 |
+
"model.layers.25.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 164 |
+
"model.layers.25.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 165 |
+
"model.layers.25.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 166 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 167 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 168 |
+
"model.layers.25.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 169 |
+
"model.layers.26.input_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 170 |
+
"model.layers.26.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
|
| 171 |
+
"model.layers.26.mlp.gate_up_proj.weight": "model-00004-of-00007.safetensors",
|
| 172 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
|
| 173 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 174 |
+
"model.layers.26.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 175 |
+
"model.layers.27.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 176 |
+
"model.layers.27.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 177 |
+
"model.layers.27.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 178 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 179 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
|
| 180 |
+
"model.layers.27.self_attn.qkv_proj.weight": "model-00004-of-00007.safetensors",
|
| 181 |
+
"model.layers.28.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 182 |
+
"model.layers.28.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 183 |
+
"model.layers.28.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 184 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 185 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 186 |
+
"model.layers.28.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 187 |
+
"model.layers.29.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 188 |
+
"model.layers.29.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 189 |
+
"model.layers.29.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 190 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 191 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 192 |
+
"model.layers.29.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 193 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 194 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 195 |
+
"model.layers.3.mlp.gate_up_proj.weight": "model-00001-of-00007.safetensors",
|
| 196 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 197 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 198 |
+
"model.layers.3.self_attn.qkv_proj.weight": "model-00001-of-00007.safetensors",
|
| 199 |
+
"model.layers.30.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 200 |
+
"model.layers.30.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 201 |
+
"model.layers.30.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 202 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 203 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 204 |
+
"model.layers.30.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 205 |
+
"model.layers.31.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 206 |
+
"model.layers.31.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 207 |
+
"model.layers.31.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 208 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 209 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 210 |
+
"model.layers.31.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 211 |
+
"model.layers.32.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 212 |
+
"model.layers.32.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 213 |
+
"model.layers.32.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 214 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 215 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 216 |
+
"model.layers.32.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 217 |
+
"model.layers.33.input_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 218 |
+
"model.layers.33.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
|
| 219 |
+
"model.layers.33.mlp.gate_up_proj.weight": "model-00005-of-00007.safetensors",
|
| 220 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
|
| 221 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 222 |
+
"model.layers.33.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 223 |
+
"model.layers.34.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 224 |
+
"model.layers.34.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 225 |
+
"model.layers.34.mlp.gate_up_proj.weight": "model-00006-of-00007.safetensors",
|
| 226 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 227 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
|
| 228 |
+
"model.layers.34.self_attn.qkv_proj.weight": "model-00005-of-00007.safetensors",
|
| 229 |
+
"model.layers.35.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 230 |
+
"model.layers.35.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 231 |
+
"model.layers.35.mlp.gate_up_proj.weight": "model-00006-of-00007.safetensors",
|
| 232 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 233 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 234 |
+
"model.layers.35.self_attn.qkv_proj.weight": "model-00006-of-00007.safetensors",
|
| 235 |
+
"model.layers.36.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 236 |
+
"model.layers.36.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 237 |
+
"model.layers.36.mlp.gate_up_proj.weight": "model-00006-of-00007.safetensors",
|
| 238 |
+
"model.layers.36.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 239 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 240 |
+
"model.layers.36.self_attn.qkv_proj.weight": "model-00006-of-00007.safetensors",
|
| 241 |
+
"model.layers.37.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 242 |
+
"model.layers.37.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 243 |
+
"model.layers.37.mlp.gate_up_proj.weight": "model-00006-of-00007.safetensors",
|
| 244 |
+
"model.layers.37.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 245 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 246 |
+
"model.layers.37.self_attn.qkv_proj.weight": "model-00006-of-00007.safetensors",
|
| 247 |
+
"model.layers.38.input_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 248 |
+
"model.layers.38.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
|
| 249 |
+
"model.layers.38.mlp.gate_up_proj.weight": "model-00006-of-00007.safetensors",
|
| 250 |
+
"model.layers.38.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
|
| 251 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 252 |
+
"model.layers.38.self_attn.qkv_proj.weight": "model-00006-of-00007.safetensors",
|
| 253 |
+
"model.layers.39.input_layernorm.weight": "model-00007-of-00007.safetensors",
|
| 254 |
+
"model.layers.39.mlp.down_proj.weight": "model-00007-of-00007.safetensors",
|
| 255 |
+
"model.layers.39.mlp.gate_up_proj.weight": "model-00006-of-00007.safetensors",
|
| 256 |
+
"model.layers.39.post_attention_layernorm.weight": "model-00007-of-00007.safetensors",
|
| 257 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
|
| 258 |
+
"model.layers.39.self_attn.qkv_proj.weight": "model-00006-of-00007.safetensors",
|
| 259 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 260 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
|
| 261 |
+
"model.layers.4.mlp.gate_up_proj.weight": "model-00001-of-00007.safetensors",
|
| 262 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
|
| 263 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 264 |
+
"model.layers.4.self_attn.qkv_proj.weight": "model-00001-of-00007.safetensors",
|
| 265 |
+
"model.layers.5.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 266 |
+
"model.layers.5.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 267 |
+
"model.layers.5.mlp.gate_up_proj.weight": "model-00001-of-00007.safetensors",
|
| 268 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 269 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
|
| 270 |
+
"model.layers.5.self_attn.qkv_proj.weight": "model-00001-of-00007.safetensors",
|
| 271 |
+
"model.layers.6.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 272 |
+
"model.layers.6.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 273 |
+
"model.layers.6.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 274 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 275 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 276 |
+
"model.layers.6.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 277 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 278 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 279 |
+
"model.layers.7.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 280 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 281 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 282 |
+
"model.layers.7.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 283 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 284 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 285 |
+
"model.layers.8.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 286 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 287 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 288 |
+
"model.layers.8.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 289 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 290 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
|
| 291 |
+
"model.layers.9.mlp.gate_up_proj.weight": "model-00002-of-00007.safetensors",
|
| 292 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
|
| 293 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
|
| 294 |
+
"model.layers.9.self_attn.qkv_proj.weight": "model-00002-of-00007.safetensors",
|
| 295 |
+
"model.norm.weight": "model-00007-of-00007.safetensors"
|
| 296 |
+
}
|
| 297 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|endoftext|>",
|
| 4 |
+
"lstrip": true,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": true,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|im_end|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|endoftext|>",
|
| 18 |
+
"lstrip": true,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": true,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<|endoftext|>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": true,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,784 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"100256": {
|
| 5 |
+
"content": "<|dummy_0|>",
|
| 6 |
+
"lstrip": true,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": true,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"100257": {
|
| 13 |
+
"content": "<|endoftext|>",
|
| 14 |
+
"lstrip": true,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": true,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"100258": {
|
| 21 |
+
"content": "<|fim_prefix|>",
|
| 22 |
+
"lstrip": true,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": true,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"100259": {
|
| 29 |
+
"content": "<|fim_middle|>",
|
| 30 |
+
"lstrip": true,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": true,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"100260": {
|
| 37 |
+
"content": "<|fim_suffix|>",
|
| 38 |
+
"lstrip": true,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": true,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"100261": {
|
| 45 |
+
"content": "<|dummy_1|>",
|
| 46 |
+
"lstrip": true,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": true,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"100262": {
|
| 53 |
+
"content": "<|dummy_2|>",
|
| 54 |
+
"lstrip": true,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": true,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"100263": {
|
| 61 |
+
"content": "<|dummy_3|>",
|
| 62 |
+
"lstrip": true,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": true,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"100264": {
|
| 69 |
+
"content": "<|im_start|>",
|
| 70 |
+
"lstrip": true,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": true,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"100265": {
|
| 77 |
+
"content": "<|im_end|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"100266": {
|
| 85 |
+
"content": "<|im_sep|>",
|
| 86 |
+
"lstrip": true,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": true,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"100267": {
|
| 93 |
+
"content": "<|dummy_4|>",
|
| 94 |
+
"lstrip": true,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": true,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"100268": {
|
| 101 |
+
"content": "<|dummy_5|>",
|
| 102 |
+
"lstrip": true,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": true,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"100269": {
|
| 109 |
+
"content": "<|dummy_6|>",
|
| 110 |
+
"lstrip": true,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": true,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"100270": {
|
| 117 |
+
"content": "<|dummy_7|>",
|
| 118 |
+
"lstrip": true,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": true,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": true
|
| 123 |
+
},
|
| 124 |
+
"100271": {
|
| 125 |
+
"content": "<|dummy_8|>",
|
| 126 |
+
"lstrip": true,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": true,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": true
|
| 131 |
+
},
|
| 132 |
+
"100272": {
|
| 133 |
+
"content": "<|dummy_9|>",
|
| 134 |
+
"lstrip": true,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": true,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": true
|
| 139 |
+
},
|
| 140 |
+
"100273": {
|
| 141 |
+
"content": "<|dummy_10|>",
|
| 142 |
+
"lstrip": true,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": true,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": true
|
| 147 |
+
},
|
| 148 |
+
"100274": {
|
| 149 |
+
"content": "<|dummy_11|>",
|
| 150 |
+
"lstrip": true,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": true,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": true
|
| 155 |
+
},
|
| 156 |
+
"100275": {
|
| 157 |
+
"content": "<|dummy_12|>",
|
| 158 |
+
"lstrip": true,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": true,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": true
|
| 163 |
+
},
|
| 164 |
+
"100276": {
|
| 165 |
+
"content": "<|endofprompt|>",
|
| 166 |
+
"lstrip": true,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": true,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": true
|
| 171 |
+
},
|
| 172 |
+
"100277": {
|
| 173 |
+
"content": "<|dummy_13|>",
|
| 174 |
+
"lstrip": true,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": true,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": true
|
| 179 |
+
},
|
| 180 |
+
"100278": {
|
| 181 |
+
"content": "<|dummy_14|>",
|
| 182 |
+
"lstrip": true,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": true,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": true
|
| 187 |
+
},
|
| 188 |
+
"100279": {
|
| 189 |
+
"content": "<|dummy_15|>",
|
| 190 |
+
"lstrip": true,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": true,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": true
|
| 195 |
+
},
|
| 196 |
+
"100280": {
|
| 197 |
+
"content": "<|dummy_16|>",
|
| 198 |
+
"lstrip": true,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": true,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": true
|
| 203 |
+
},
|
| 204 |
+
"100281": {
|
| 205 |
+
"content": "<|dummy_17|>",
|
| 206 |
+
"lstrip": true,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": true,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": true
|
| 211 |
+
},
|
| 212 |
+
"100282": {
|
| 213 |
+
"content": "<|dummy_18|>",
|
| 214 |
+
"lstrip": true,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": true,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"100283": {
|
| 221 |
+
"content": "<|dummy_19|>",
|
| 222 |
+
"lstrip": true,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": true,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"100284": {
|
| 229 |
+
"content": "<|dummy_20|>",
|
| 230 |
+
"lstrip": true,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": true,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"100285": {
|
| 237 |
+
"content": "<|dummy_21|>",
|
| 238 |
+
"lstrip": true,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": true,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"100286": {
|
| 245 |
+
"content": "<|dummy_22|>",
|
| 246 |
+
"lstrip": true,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": true,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"100287": {
|
| 253 |
+
"content": "<|dummy_23|>",
|
| 254 |
+
"lstrip": true,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": true,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"100288": {
|
| 261 |
+
"content": "<|dummy_24|>",
|
| 262 |
+
"lstrip": true,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": true,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
},
|
| 268 |
+
"100289": {
|
| 269 |
+
"content": "<|dummy_25|>",
|
| 270 |
+
"lstrip": true,
|
| 271 |
+
"normalized": false,
|
| 272 |
+
"rstrip": true,
|
| 273 |
+
"single_word": false,
|
| 274 |
+
"special": true
|
| 275 |
+
},
|
| 276 |
+
"100290": {
|
| 277 |
+
"content": "<|dummy_26|>",
|
| 278 |
+
"lstrip": true,
|
| 279 |
+
"normalized": false,
|
| 280 |
+
"rstrip": true,
|
| 281 |
+
"single_word": false,
|
| 282 |
+
"special": true
|
| 283 |
+
},
|
| 284 |
+
"100291": {
|
| 285 |
+
"content": "<|dummy_27|>",
|
| 286 |
+
"lstrip": true,
|
| 287 |
+
"normalized": false,
|
| 288 |
+
"rstrip": true,
|
| 289 |
+
"single_word": false,
|
| 290 |
+
"special": true
|
| 291 |
+
},
|
| 292 |
+
"100292": {
|
| 293 |
+
"content": "<|dummy_28|>",
|
| 294 |
+
"lstrip": true,
|
| 295 |
+
"normalized": false,
|
| 296 |
+
"rstrip": true,
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"special": true
|
| 299 |
+
},
|
| 300 |
+
"100293": {
|
| 301 |
+
"content": "<|dummy_29|>",
|
| 302 |
+
"lstrip": true,
|
| 303 |
+
"normalized": false,
|
| 304 |
+
"rstrip": true,
|
| 305 |
+
"single_word": false,
|
| 306 |
+
"special": true
|
| 307 |
+
},
|
| 308 |
+
"100294": {
|
| 309 |
+
"content": "<|dummy_30|>",
|
| 310 |
+
"lstrip": true,
|
| 311 |
+
"normalized": false,
|
| 312 |
+
"rstrip": true,
|
| 313 |
+
"single_word": false,
|
| 314 |
+
"special": true
|
| 315 |
+
},
|
| 316 |
+
"100295": {
|
| 317 |
+
"content": "<|dummy_31|>",
|
| 318 |
+
"lstrip": true,
|
| 319 |
+
"normalized": false,
|
| 320 |
+
"rstrip": true,
|
| 321 |
+
"single_word": false,
|
| 322 |
+
"special": true
|
| 323 |
+
},
|
| 324 |
+
"100296": {
|
| 325 |
+
"content": "<|dummy_32|>",
|
| 326 |
+
"lstrip": true,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"rstrip": true,
|
| 329 |
+
"single_word": false,
|
| 330 |
+
"special": true
|
| 331 |
+
},
|
| 332 |
+
"100297": {
|
| 333 |
+
"content": "<|dummy_33|>",
|
| 334 |
+
"lstrip": true,
|
| 335 |
+
"normalized": false,
|
| 336 |
+
"rstrip": true,
|
| 337 |
+
"single_word": false,
|
| 338 |
+
"special": true
|
| 339 |
+
},
|
| 340 |
+
"100298": {
|
| 341 |
+
"content": "<|dummy_34|>",
|
| 342 |
+
"lstrip": true,
|
| 343 |
+
"normalized": false,
|
| 344 |
+
"rstrip": true,
|
| 345 |
+
"single_word": false,
|
| 346 |
+
"special": true
|
| 347 |
+
},
|
| 348 |
+
"100299": {
|
| 349 |
+
"content": "<|dummy_35|>",
|
| 350 |
+
"lstrip": true,
|
| 351 |
+
"normalized": false,
|
| 352 |
+
"rstrip": true,
|
| 353 |
+
"single_word": false,
|
| 354 |
+
"special": true
|
| 355 |
+
},
|
| 356 |
+
"100300": {
|
| 357 |
+
"content": "<|dummy_36|>",
|
| 358 |
+
"lstrip": true,
|
| 359 |
+
"normalized": false,
|
| 360 |
+
"rstrip": true,
|
| 361 |
+
"single_word": false,
|
| 362 |
+
"special": true
|
| 363 |
+
},
|
| 364 |
+
"100301": {
|
| 365 |
+
"content": "<|dummy_37|>",
|
| 366 |
+
"lstrip": true,
|
| 367 |
+
"normalized": false,
|
| 368 |
+
"rstrip": true,
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"special": true
|
| 371 |
+
},
|
| 372 |
+
"100302": {
|
| 373 |
+
"content": "<|dummy_38|>",
|
| 374 |
+
"lstrip": true,
|
| 375 |
+
"normalized": false,
|
| 376 |
+
"rstrip": true,
|
| 377 |
+
"single_word": false,
|
| 378 |
+
"special": true
|
| 379 |
+
},
|
| 380 |
+
"100303": {
|
| 381 |
+
"content": "<|dummy_39|>",
|
| 382 |
+
"lstrip": true,
|
| 383 |
+
"normalized": false,
|
| 384 |
+
"rstrip": true,
|
| 385 |
+
"single_word": false,
|
| 386 |
+
"special": true
|
| 387 |
+
},
|
| 388 |
+
"100304": {
|
| 389 |
+
"content": "<|dummy_40|>",
|
| 390 |
+
"lstrip": true,
|
| 391 |
+
"normalized": false,
|
| 392 |
+
"rstrip": true,
|
| 393 |
+
"single_word": false,
|
| 394 |
+
"special": true
|
| 395 |
+
},
|
| 396 |
+
"100305": {
|
| 397 |
+
"content": "<|dummy_41|>",
|
| 398 |
+
"lstrip": true,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"rstrip": true,
|
| 401 |
+
"single_word": false,
|
| 402 |
+
"special": true
|
| 403 |
+
},
|
| 404 |
+
"100306": {
|
| 405 |
+
"content": "<|dummy_42|>",
|
| 406 |
+
"lstrip": true,
|
| 407 |
+
"normalized": false,
|
| 408 |
+
"rstrip": true,
|
| 409 |
+
"single_word": false,
|
| 410 |
+
"special": true
|
| 411 |
+
},
|
| 412 |
+
"100307": {
|
| 413 |
+
"content": "<|dummy_43|>",
|
| 414 |
+
"lstrip": true,
|
| 415 |
+
"normalized": false,
|
| 416 |
+
"rstrip": true,
|
| 417 |
+
"single_word": false,
|
| 418 |
+
"special": true
|
| 419 |
+
},
|
| 420 |
+
"100308": {
|
| 421 |
+
"content": "<|dummy_44|>",
|
| 422 |
+
"lstrip": true,
|
| 423 |
+
"normalized": false,
|
| 424 |
+
"rstrip": true,
|
| 425 |
+
"single_word": false,
|
| 426 |
+
"special": true
|
| 427 |
+
},
|
| 428 |
+
"100309": {
|
| 429 |
+
"content": "<|dummy_45|>",
|
| 430 |
+
"lstrip": true,
|
| 431 |
+
"normalized": false,
|
| 432 |
+
"rstrip": true,
|
| 433 |
+
"single_word": false,
|
| 434 |
+
"special": true
|
| 435 |
+
},
|
| 436 |
+
"100310": {
|
| 437 |
+
"content": "<|dummy_46|>",
|
| 438 |
+
"lstrip": true,
|
| 439 |
+
"normalized": false,
|
| 440 |
+
"rstrip": true,
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"special": true
|
| 443 |
+
},
|
| 444 |
+
"100311": {
|
| 445 |
+
"content": "<|dummy_47|>",
|
| 446 |
+
"lstrip": true,
|
| 447 |
+
"normalized": false,
|
| 448 |
+
"rstrip": true,
|
| 449 |
+
"single_word": false,
|
| 450 |
+
"special": true
|
| 451 |
+
},
|
| 452 |
+
"100312": {
|
| 453 |
+
"content": "<|dummy_48|>",
|
| 454 |
+
"lstrip": true,
|
| 455 |
+
"normalized": false,
|
| 456 |
+
"rstrip": true,
|
| 457 |
+
"single_word": false,
|
| 458 |
+
"special": true
|
| 459 |
+
},
|
| 460 |
+
"100313": {
|
| 461 |
+
"content": "<|dummy_49|>",
|
| 462 |
+
"lstrip": true,
|
| 463 |
+
"normalized": false,
|
| 464 |
+
"rstrip": true,
|
| 465 |
+
"single_word": false,
|
| 466 |
+
"special": true
|
| 467 |
+
},
|
| 468 |
+
"100314": {
|
| 469 |
+
"content": "<|dummy_50|>",
|
| 470 |
+
"lstrip": true,
|
| 471 |
+
"normalized": false,
|
| 472 |
+
"rstrip": true,
|
| 473 |
+
"single_word": false,
|
| 474 |
+
"special": true
|
| 475 |
+
},
|
| 476 |
+
"100315": {
|
| 477 |
+
"content": "<|dummy_51|>",
|
| 478 |
+
"lstrip": true,
|
| 479 |
+
"normalized": false,
|
| 480 |
+
"rstrip": true,
|
| 481 |
+
"single_word": false,
|
| 482 |
+
"special": true
|
| 483 |
+
},
|
| 484 |
+
"100316": {
|
| 485 |
+
"content": "<|dummy_52|>",
|
| 486 |
+
"lstrip": true,
|
| 487 |
+
"normalized": false,
|
| 488 |
+
"rstrip": true,
|
| 489 |
+
"single_word": false,
|
| 490 |
+
"special": true
|
| 491 |
+
},
|
| 492 |
+
"100317": {
|
| 493 |
+
"content": "<|dummy_53|>",
|
| 494 |
+
"lstrip": true,
|
| 495 |
+
"normalized": false,
|
| 496 |
+
"rstrip": true,
|
| 497 |
+
"single_word": false,
|
| 498 |
+
"special": true
|
| 499 |
+
},
|
| 500 |
+
"100318": {
|
| 501 |
+
"content": "<|dummy_54|>",
|
| 502 |
+
"lstrip": true,
|
| 503 |
+
"normalized": false,
|
| 504 |
+
"rstrip": true,
|
| 505 |
+
"single_word": false,
|
| 506 |
+
"special": true
|
| 507 |
+
},
|
| 508 |
+
"100319": {
|
| 509 |
+
"content": "<|dummy_55|>",
|
| 510 |
+
"lstrip": true,
|
| 511 |
+
"normalized": false,
|
| 512 |
+
"rstrip": true,
|
| 513 |
+
"single_word": false,
|
| 514 |
+
"special": true
|
| 515 |
+
},
|
| 516 |
+
"100320": {
|
| 517 |
+
"content": "<|dummy_56|>",
|
| 518 |
+
"lstrip": true,
|
| 519 |
+
"normalized": false,
|
| 520 |
+
"rstrip": true,
|
| 521 |
+
"single_word": false,
|
| 522 |
+
"special": true
|
| 523 |
+
},
|
| 524 |
+
"100321": {
|
| 525 |
+
"content": "<|dummy_57|>",
|
| 526 |
+
"lstrip": true,
|
| 527 |
+
"normalized": false,
|
| 528 |
+
"rstrip": true,
|
| 529 |
+
"single_word": false,
|
| 530 |
+
"special": true
|
| 531 |
+
},
|
| 532 |
+
"100322": {
|
| 533 |
+
"content": "<|dummy_58|>",
|
| 534 |
+
"lstrip": true,
|
| 535 |
+
"normalized": false,
|
| 536 |
+
"rstrip": true,
|
| 537 |
+
"single_word": false,
|
| 538 |
+
"special": true
|
| 539 |
+
},
|
| 540 |
+
"100323": {
|
| 541 |
+
"content": "<|dummy_59|>",
|
| 542 |
+
"lstrip": true,
|
| 543 |
+
"normalized": false,
|
| 544 |
+
"rstrip": true,
|
| 545 |
+
"single_word": false,
|
| 546 |
+
"special": true
|
| 547 |
+
},
|
| 548 |
+
"100324": {
|
| 549 |
+
"content": "<|dummy_60|>",
|
| 550 |
+
"lstrip": true,
|
| 551 |
+
"normalized": false,
|
| 552 |
+
"rstrip": true,
|
| 553 |
+
"single_word": false,
|
| 554 |
+
"special": true
|
| 555 |
+
},
|
| 556 |
+
"100325": {
|
| 557 |
+
"content": "<|dummy_61|>",
|
| 558 |
+
"lstrip": true,
|
| 559 |
+
"normalized": false,
|
| 560 |
+
"rstrip": true,
|
| 561 |
+
"single_word": false,
|
| 562 |
+
"special": true
|
| 563 |
+
},
|
| 564 |
+
"100326": {
|
| 565 |
+
"content": "<|dummy_62|>",
|
| 566 |
+
"lstrip": true,
|
| 567 |
+
"normalized": false,
|
| 568 |
+
"rstrip": true,
|
| 569 |
+
"single_word": false,
|
| 570 |
+
"special": true
|
| 571 |
+
},
|
| 572 |
+
"100327": {
|
| 573 |
+
"content": "<|dummy_63|>",
|
| 574 |
+
"lstrip": true,
|
| 575 |
+
"normalized": false,
|
| 576 |
+
"rstrip": true,
|
| 577 |
+
"single_word": false,
|
| 578 |
+
"special": true
|
| 579 |
+
},
|
| 580 |
+
"100328": {
|
| 581 |
+
"content": "<|dummy_64|>",
|
| 582 |
+
"lstrip": true,
|
| 583 |
+
"normalized": false,
|
| 584 |
+
"rstrip": true,
|
| 585 |
+
"single_word": false,
|
| 586 |
+
"special": true
|
| 587 |
+
},
|
| 588 |
+
"100329": {
|
| 589 |
+
"content": "<|dummy_65|>",
|
| 590 |
+
"lstrip": true,
|
| 591 |
+
"normalized": false,
|
| 592 |
+
"rstrip": true,
|
| 593 |
+
"single_word": false,
|
| 594 |
+
"special": true
|
| 595 |
+
},
|
| 596 |
+
"100330": {
|
| 597 |
+
"content": "<|dummy_66|>",
|
| 598 |
+
"lstrip": true,
|
| 599 |
+
"normalized": false,
|
| 600 |
+
"rstrip": true,
|
| 601 |
+
"single_word": false,
|
| 602 |
+
"special": true
|
| 603 |
+
},
|
| 604 |
+
"100331": {
|
| 605 |
+
"content": "<|dummy_67|>",
|
| 606 |
+
"lstrip": true,
|
| 607 |
+
"normalized": false,
|
| 608 |
+
"rstrip": true,
|
| 609 |
+
"single_word": false,
|
| 610 |
+
"special": true
|
| 611 |
+
},
|
| 612 |
+
"100332": {
|
| 613 |
+
"content": "<|dummy_68|>",
|
| 614 |
+
"lstrip": true,
|
| 615 |
+
"normalized": false,
|
| 616 |
+
"rstrip": true,
|
| 617 |
+
"single_word": false,
|
| 618 |
+
"special": true
|
| 619 |
+
},
|
| 620 |
+
"100333": {
|
| 621 |
+
"content": "<|dummy_69|>",
|
| 622 |
+
"lstrip": true,
|
| 623 |
+
"normalized": false,
|
| 624 |
+
"rstrip": true,
|
| 625 |
+
"single_word": false,
|
| 626 |
+
"special": true
|
| 627 |
+
},
|
| 628 |
+
"100334": {
|
| 629 |
+
"content": "<|dummy_70|>",
|
| 630 |
+
"lstrip": true,
|
| 631 |
+
"normalized": false,
|
| 632 |
+
"rstrip": true,
|
| 633 |
+
"single_word": false,
|
| 634 |
+
"special": true
|
| 635 |
+
},
|
| 636 |
+
"100335": {
|
| 637 |
+
"content": "<|dummy_71|>",
|
| 638 |
+
"lstrip": true,
|
| 639 |
+
"normalized": false,
|
| 640 |
+
"rstrip": true,
|
| 641 |
+
"single_word": false,
|
| 642 |
+
"special": true
|
| 643 |
+
},
|
| 644 |
+
"100336": {
|
| 645 |
+
"content": "<|dummy_72|>",
|
| 646 |
+
"lstrip": true,
|
| 647 |
+
"normalized": false,
|
| 648 |
+
"rstrip": true,
|
| 649 |
+
"single_word": false,
|
| 650 |
+
"special": true
|
| 651 |
+
},
|
| 652 |
+
"100337": {
|
| 653 |
+
"content": "<|dummy_73|>",
|
| 654 |
+
"lstrip": true,
|
| 655 |
+
"normalized": false,
|
| 656 |
+
"rstrip": true,
|
| 657 |
+
"single_word": false,
|
| 658 |
+
"special": true
|
| 659 |
+
},
|
| 660 |
+
"100338": {
|
| 661 |
+
"content": "<|dummy_74|>",
|
| 662 |
+
"lstrip": true,
|
| 663 |
+
"normalized": false,
|
| 664 |
+
"rstrip": true,
|
| 665 |
+
"single_word": false,
|
| 666 |
+
"special": true
|
| 667 |
+
},
|
| 668 |
+
"100339": {
|
| 669 |
+
"content": "<|dummy_75|>",
|
| 670 |
+
"lstrip": true,
|
| 671 |
+
"normalized": false,
|
| 672 |
+
"rstrip": true,
|
| 673 |
+
"single_word": false,
|
| 674 |
+
"special": true
|
| 675 |
+
},
|
| 676 |
+
"100340": {
|
| 677 |
+
"content": "<|dummy_76|>",
|
| 678 |
+
"lstrip": true,
|
| 679 |
+
"normalized": false,
|
| 680 |
+
"rstrip": true,
|
| 681 |
+
"single_word": false,
|
| 682 |
+
"special": true
|
| 683 |
+
},
|
| 684 |
+
"100341": {
|
| 685 |
+
"content": "<|dummy_77|>",
|
| 686 |
+
"lstrip": true,
|
| 687 |
+
"normalized": false,
|
| 688 |
+
"rstrip": true,
|
| 689 |
+
"single_word": false,
|
| 690 |
+
"special": true
|
| 691 |
+
},
|
| 692 |
+
"100342": {
|
| 693 |
+
"content": "<|dummy_78|>",
|
| 694 |
+
"lstrip": true,
|
| 695 |
+
"normalized": false,
|
| 696 |
+
"rstrip": true,
|
| 697 |
+
"single_word": false,
|
| 698 |
+
"special": true
|
| 699 |
+
},
|
| 700 |
+
"100343": {
|
| 701 |
+
"content": "<|dummy_79|>",
|
| 702 |
+
"lstrip": true,
|
| 703 |
+
"normalized": false,
|
| 704 |
+
"rstrip": true,
|
| 705 |
+
"single_word": false,
|
| 706 |
+
"special": true
|
| 707 |
+
},
|
| 708 |
+
"100344": {
|
| 709 |
+
"content": "<|dummy_80|>",
|
| 710 |
+
"lstrip": true,
|
| 711 |
+
"normalized": false,
|
| 712 |
+
"rstrip": true,
|
| 713 |
+
"single_word": false,
|
| 714 |
+
"special": true
|
| 715 |
+
},
|
| 716 |
+
"100345": {
|
| 717 |
+
"content": "<|dummy_81|>",
|
| 718 |
+
"lstrip": true,
|
| 719 |
+
"normalized": false,
|
| 720 |
+
"rstrip": true,
|
| 721 |
+
"single_word": false,
|
| 722 |
+
"special": true
|
| 723 |
+
},
|
| 724 |
+
"100346": {
|
| 725 |
+
"content": "<|dummy_82|>",
|
| 726 |
+
"lstrip": true,
|
| 727 |
+
"normalized": false,
|
| 728 |
+
"rstrip": true,
|
| 729 |
+
"single_word": false,
|
| 730 |
+
"special": true
|
| 731 |
+
},
|
| 732 |
+
"100347": {
|
| 733 |
+
"content": "<|dummy_83|>",
|
| 734 |
+
"lstrip": true,
|
| 735 |
+
"normalized": false,
|
| 736 |
+
"rstrip": true,
|
| 737 |
+
"single_word": false,
|
| 738 |
+
"special": true
|
| 739 |
+
},
|
| 740 |
+
"100348": {
|
| 741 |
+
"content": "<|dummy_84|>",
|
| 742 |
+
"lstrip": true,
|
| 743 |
+
"normalized": false,
|
| 744 |
+
"rstrip": true,
|
| 745 |
+
"single_word": false,
|
| 746 |
+
"special": true
|
| 747 |
+
},
|
| 748 |
+
"100349": {
|
| 749 |
+
"content": "<|dummy_85|>",
|
| 750 |
+
"lstrip": true,
|
| 751 |
+
"normalized": false,
|
| 752 |
+
"rstrip": true,
|
| 753 |
+
"single_word": false,
|
| 754 |
+
"special": true
|
| 755 |
+
},
|
| 756 |
+
"100350": {
|
| 757 |
+
"content": "<|dummy_86|>",
|
| 758 |
+
"lstrip": true,
|
| 759 |
+
"normalized": false,
|
| 760 |
+
"rstrip": true,
|
| 761 |
+
"single_word": false,
|
| 762 |
+
"special": true
|
| 763 |
+
},
|
| 764 |
+
"100351": {
|
| 765 |
+
"content": "<|dummy_87|>",
|
| 766 |
+
"lstrip": true,
|
| 767 |
+
"normalized": false,
|
| 768 |
+
"rstrip": true,
|
| 769 |
+
"single_word": false,
|
| 770 |
+
"special": true
|
| 771 |
+
}
|
| 772 |
+
},
|
| 773 |
+
"bos_token": "<|endoftext|>",
|
| 774 |
+
"chat_template": "{% for message in messages %}{% if (message['role'] == 'system') %}{{'<|im_start|>system<|im_sep|>' + message['content'] + '<|im_end|>'}}{% elif (message['role'] == 'user') %}{{'<|im_start|>user<|im_sep|>' + message['content'] + '<|im_end|><|im_start|>assistant<|im_sep|>'}}{% elif (message['role'] == 'assistant') %}{{message['content'] + '<|im_end|>'}}{% endif %}{% endfor %}",
|
| 775 |
+
"clean_up_tokenization_spaces": false,
|
| 776 |
+
"eos_token": "<|im_end|>",
|
| 777 |
+
"extra_special_tokens": {},
|
| 778 |
+
"model_max_length": 16384,
|
| 779 |
+
"pad_token": "<|endoftext|>",
|
| 780 |
+
"padding_side": "right",
|
| 781 |
+
"split_special_tokens": false,
|
| 782 |
+
"tokenizer_class": "GPT2Tokenizer",
|
| 783 |
+
"unk_token": "<|endoftext|>"
|
| 784 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 136.37209302325581,
|
| 5 |
+
"eval_steps": 100,
|
| 6 |
+
"global_step": 1500,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"epoch": 0.9302325581395349,
|
| 13 |
+
"grad_norm": 0.11999286711215973,
|
| 14 |
+
"learning_rate": 1.0000000000000001e-11,
|
| 15 |
+
"loss": 0.7581,
|
| 16 |
+
"step": 10
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"epoch": 1.8372093023255816,
|
| 20 |
+
"grad_norm": 0.11325732618570328,
|
| 21 |
+
"learning_rate": 2.0000000000000002e-11,
|
| 22 |
+
"loss": 0.7301,
|
| 23 |
+
"step": 20
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"epoch": 2.744186046511628,
|
| 27 |
+
"grad_norm": 0.11053073406219482,
|
| 28 |
+
"learning_rate": 3.0000000000000006e-11,
|
| 29 |
+
"loss": 0.7401,
|
| 30 |
+
"step": 30
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"epoch": 3.6511627906976747,
|
| 34 |
+
"grad_norm": 0.10902135074138641,
|
| 35 |
+
"learning_rate": 4.0000000000000004e-11,
|
| 36 |
+
"loss": 0.7335,
|
| 37 |
+
"step": 40
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 4.558139534883721,
|
| 41 |
+
"grad_norm": 0.12092321366071701,
|
| 42 |
+
"learning_rate": 5.000000000000001e-11,
|
| 43 |
+
"loss": 0.7457,
|
| 44 |
+
"step": 50
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"epoch": 5.465116279069767,
|
| 48 |
+
"grad_norm": 0.11132938414812088,
|
| 49 |
+
"learning_rate": 6.000000000000001e-11,
|
| 50 |
+
"loss": 0.727,
|
| 51 |
+
"step": 60
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"epoch": 6.372093023255814,
|
| 55 |
+
"grad_norm": 0.11651039868593216,
|
| 56 |
+
"learning_rate": 7e-11,
|
| 57 |
+
"loss": 0.743,
|
| 58 |
+
"step": 70
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"epoch": 7.27906976744186,
|
| 62 |
+
"grad_norm": 0.11514942348003387,
|
| 63 |
+
"learning_rate": 8.000000000000001e-11,
|
| 64 |
+
"loss": 0.7364,
|
| 65 |
+
"step": 80
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"epoch": 8.186046511627907,
|
| 69 |
+
"grad_norm": 0.10909898579120636,
|
| 70 |
+
"learning_rate": 9.000000000000001e-11,
|
| 71 |
+
"loss": 0.7424,
|
| 72 |
+
"step": 90
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"epoch": 9.093023255813954,
|
| 76 |
+
"grad_norm": 0.11504866927862167,
|
| 77 |
+
"learning_rate": 1.0000000000000002e-10,
|
| 78 |
+
"loss": 0.7313,
|
| 79 |
+
"step": 100
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"epoch": 9.093023255813954,
|
| 83 |
+
"eval_loss": 1.036345362663269,
|
| 84 |
+
"eval_runtime": 12.1723,
|
| 85 |
+
"eval_samples_per_second": 24.646,
|
| 86 |
+
"eval_steps_per_second": 1.561,
|
| 87 |
+
"step": 100
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 10.0,
|
| 91 |
+
"grad_norm": 0.08790237456560135,
|
| 92 |
+
"learning_rate": 1.1000000000000001e-10,
|
| 93 |
+
"loss": 0.7378,
|
| 94 |
+
"step": 110
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 10.930232558139535,
|
| 98 |
+
"grad_norm": 0.11877016723155975,
|
| 99 |
+
"learning_rate": 1.2000000000000003e-10,
|
| 100 |
+
"loss": 0.7512,
|
| 101 |
+
"step": 120
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 11.837209302325581,
|
| 105 |
+
"grad_norm": 0.11611445248126984,
|
| 106 |
+
"learning_rate": 1.3e-10,
|
| 107 |
+
"loss": 0.7507,
|
| 108 |
+
"step": 130
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 12.744186046511627,
|
| 112 |
+
"grad_norm": 0.113347128033638,
|
| 113 |
+
"learning_rate": 1.4e-10,
|
| 114 |
+
"loss": 0.7294,
|
| 115 |
+
"step": 140
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 13.651162790697674,
|
| 119 |
+
"grad_norm": 0.11206036806106567,
|
| 120 |
+
"learning_rate": 1.5000000000000002e-10,
|
| 121 |
+
"loss": 0.7424,
|
| 122 |
+
"step": 150
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 14.55813953488372,
|
| 126 |
+
"grad_norm": 0.1124008446931839,
|
| 127 |
+
"learning_rate": 1.6000000000000002e-10,
|
| 128 |
+
"loss": 0.7296,
|
| 129 |
+
"step": 160
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 15.465116279069768,
|
| 133 |
+
"grad_norm": 0.10790089517831802,
|
| 134 |
+
"learning_rate": 1.7e-10,
|
| 135 |
+
"loss": 0.7433,
|
| 136 |
+
"step": 170
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 16.372093023255815,
|
| 140 |
+
"grad_norm": 0.11213608831167221,
|
| 141 |
+
"learning_rate": 1.8000000000000002e-10,
|
| 142 |
+
"loss": 0.7361,
|
| 143 |
+
"step": 180
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 17.27906976744186,
|
| 147 |
+
"grad_norm": 0.11423593014478683,
|
| 148 |
+
"learning_rate": 1.9000000000000002e-10,
|
| 149 |
+
"loss": 0.7365,
|
| 150 |
+
"step": 190
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 18.186046511627907,
|
| 154 |
+
"grad_norm": 0.11061576008796692,
|
| 155 |
+
"learning_rate": 2.0000000000000003e-10,
|
| 156 |
+
"loss": 0.7323,
|
| 157 |
+
"step": 200
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 18.186046511627907,
|
| 161 |
+
"eval_loss": 1.0363353490829468,
|
| 162 |
+
"eval_runtime": 3.4847,
|
| 163 |
+
"eval_samples_per_second": 86.091,
|
| 164 |
+
"eval_steps_per_second": 5.452,
|
| 165 |
+
"step": 200
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"epoch": 19.093023255813954,
|
| 169 |
+
"grad_norm": 0.1096525564789772,
|
| 170 |
+
"learning_rate": 2.1e-10,
|
| 171 |
+
"loss": 0.7416,
|
| 172 |
+
"step": 210
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 20.0,
|
| 176 |
+
"grad_norm": 0.09144695103168488,
|
| 177 |
+
"learning_rate": 2.2000000000000002e-10,
|
| 178 |
+
"loss": 0.7385,
|
| 179 |
+
"step": 220
|
| 180 |
+
},
|
| 181 |
+
{
|
| 182 |
+
"epoch": 20.930232558139537,
|
| 183 |
+
"grad_norm": 0.11446302384138107,
|
| 184 |
+
"learning_rate": 2.3e-10,
|
| 185 |
+
"loss": 0.7537,
|
| 186 |
+
"step": 230
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"epoch": 21.837209302325583,
|
| 190 |
+
"grad_norm": 0.11259186267852783,
|
| 191 |
+
"learning_rate": 2.4000000000000005e-10,
|
| 192 |
+
"loss": 0.7392,
|
| 193 |
+
"step": 240
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"epoch": 22.74418604651163,
|
| 197 |
+
"grad_norm": 0.11434454470872879,
|
| 198 |
+
"learning_rate": 2.5e-10,
|
| 199 |
+
"loss": 0.7313,
|
| 200 |
+
"step": 250
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"epoch": 23.651162790697676,
|
| 204 |
+
"grad_norm": 0.11167125403881073,
|
| 205 |
+
"learning_rate": 2.6e-10,
|
| 206 |
+
"loss": 0.7353,
|
| 207 |
+
"step": 260
|
| 208 |
+
},
|
| 209 |
+
{
|
| 210 |
+
"epoch": 24.558139534883722,
|
| 211 |
+
"grad_norm": 0.11144951730966568,
|
| 212 |
+
"learning_rate": 2.7e-10,
|
| 213 |
+
"loss": 0.7399,
|
| 214 |
+
"step": 270
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"epoch": 25.46511627906977,
|
| 218 |
+
"grad_norm": 0.1126742884516716,
|
| 219 |
+
"learning_rate": 2.8e-10,
|
| 220 |
+
"loss": 0.7399,
|
| 221 |
+
"step": 280
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"epoch": 26.372093023255815,
|
| 225 |
+
"grad_norm": 0.1094028502702713,
|
| 226 |
+
"learning_rate": 2.9000000000000003e-10,
|
| 227 |
+
"loss": 0.7293,
|
| 228 |
+
"step": 290
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"epoch": 27.27906976744186,
|
| 232 |
+
"grad_norm": 0.11483245342969894,
|
| 233 |
+
"learning_rate": 3.0000000000000005e-10,
|
| 234 |
+
"loss": 0.7399,
|
| 235 |
+
"step": 300
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 27.27906976744186,
|
| 239 |
+
"eval_loss": 1.0362988710403442,
|
| 240 |
+
"eval_runtime": 3.4771,
|
| 241 |
+
"eval_samples_per_second": 86.279,
|
| 242 |
+
"eval_steps_per_second": 5.464,
|
| 243 |
+
"step": 300
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"epoch": 28.186046511627907,
|
| 247 |
+
"grad_norm": 0.11464320868253708,
|
| 248 |
+
"learning_rate": 3.1e-10,
|
| 249 |
+
"loss": 0.7331,
|
| 250 |
+
"step": 310
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"epoch": 29.093023255813954,
|
| 254 |
+
"grad_norm": 0.11819777637720108,
|
| 255 |
+
"learning_rate": 3.2000000000000003e-10,
|
| 256 |
+
"loss": 0.7373,
|
| 257 |
+
"step": 320
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"epoch": 30.0,
|
| 261 |
+
"grad_norm": 0.09258207678794861,
|
| 262 |
+
"learning_rate": 3.3000000000000005e-10,
|
| 263 |
+
"loss": 0.7354,
|
| 264 |
+
"step": 330
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"epoch": 30.930232558139537,
|
| 268 |
+
"grad_norm": 0.1188226267695427,
|
| 269 |
+
"learning_rate": 3.4e-10,
|
| 270 |
+
"loss": 0.7555,
|
| 271 |
+
"step": 340
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 31.837209302325583,
|
| 275 |
+
"grad_norm": 0.11625378578901291,
|
| 276 |
+
"learning_rate": 3.5e-10,
|
| 277 |
+
"loss": 0.7378,
|
| 278 |
+
"step": 350
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"epoch": 32.74418604651163,
|
| 282 |
+
"grad_norm": 0.11547369509935379,
|
| 283 |
+
"learning_rate": 3.6000000000000005e-10,
|
| 284 |
+
"loss": 0.743,
|
| 285 |
+
"step": 360
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"epoch": 33.651162790697676,
|
| 289 |
+
"grad_norm": 0.11356023699045181,
|
| 290 |
+
"learning_rate": 3.7e-10,
|
| 291 |
+
"loss": 0.7284,
|
| 292 |
+
"step": 370
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"epoch": 34.55813953488372,
|
| 296 |
+
"grad_norm": 0.11071494221687317,
|
| 297 |
+
"learning_rate": 3.8000000000000003e-10,
|
| 298 |
+
"loss": 0.7387,
|
| 299 |
+
"step": 380
|
| 300 |
+
},
|
| 301 |
+
{
|
| 302 |
+
"epoch": 35.46511627906977,
|
| 303 |
+
"grad_norm": 0.1178072988986969,
|
| 304 |
+
"learning_rate": 3.9000000000000005e-10,
|
| 305 |
+
"loss": 0.7358,
|
| 306 |
+
"step": 390
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"epoch": 36.372093023255815,
|
| 310 |
+
"grad_norm": 0.11321323364973068,
|
| 311 |
+
"learning_rate": 4.0000000000000007e-10,
|
| 312 |
+
"loss": 0.7351,
|
| 313 |
+
"step": 400
|
| 314 |
+
},
|
| 315 |
+
{
|
| 316 |
+
"epoch": 36.372093023255815,
|
| 317 |
+
"eval_loss": 1.0363104343414307,
|
| 318 |
+
"eval_runtime": 3.476,
|
| 319 |
+
"eval_samples_per_second": 86.307,
|
| 320 |
+
"eval_steps_per_second": 5.466,
|
| 321 |
+
"step": 400
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 37.27906976744186,
|
| 325 |
+
"grad_norm": 0.11338995397090912,
|
| 326 |
+
"learning_rate": 4.1000000000000003e-10,
|
| 327 |
+
"loss": 0.7356,
|
| 328 |
+
"step": 410
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"epoch": 38.18604651162791,
|
| 332 |
+
"grad_norm": 0.11327381432056427,
|
| 333 |
+
"learning_rate": 4.2e-10,
|
| 334 |
+
"loss": 0.7428,
|
| 335 |
+
"step": 420
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"epoch": 39.093023255813954,
|
| 339 |
+
"grad_norm": 0.11791234463453293,
|
| 340 |
+
"learning_rate": 4.3000000000000007e-10,
|
| 341 |
+
"loss": 0.7357,
|
| 342 |
+
"step": 430
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"epoch": 40.0,
|
| 346 |
+
"grad_norm": 0.0945475697517395,
|
| 347 |
+
"learning_rate": 4.4000000000000003e-10,
|
| 348 |
+
"loss": 0.7373,
|
| 349 |
+
"step": 440
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"epoch": 40.93023255813954,
|
| 353 |
+
"grad_norm": 0.11064665764570236,
|
| 354 |
+
"learning_rate": 4.5000000000000005e-10,
|
| 355 |
+
"loss": 0.7571,
|
| 356 |
+
"step": 450
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 41.83720930232558,
|
| 360 |
+
"grad_norm": 0.11861127614974976,
|
| 361 |
+
"learning_rate": 4.6e-10,
|
| 362 |
+
"loss": 0.7367,
|
| 363 |
+
"step": 460
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 42.74418604651163,
|
| 367 |
+
"grad_norm": 0.11622505635023117,
|
| 368 |
+
"learning_rate": 4.7e-10,
|
| 369 |
+
"loss": 0.7379,
|
| 370 |
+
"step": 470
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 43.651162790697676,
|
| 374 |
+
"grad_norm": 0.11720574647188187,
|
| 375 |
+
"learning_rate": 4.800000000000001e-10,
|
| 376 |
+
"loss": 0.7405,
|
| 377 |
+
"step": 480
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"epoch": 44.55813953488372,
|
| 381 |
+
"grad_norm": 0.1113167405128479,
|
| 382 |
+
"learning_rate": 4.900000000000001e-10,
|
| 383 |
+
"loss": 0.7325,
|
| 384 |
+
"step": 490
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"epoch": 45.46511627906977,
|
| 388 |
+
"grad_norm": 0.1178051307797432,
|
| 389 |
+
"learning_rate": 5e-10,
|
| 390 |
+
"loss": 0.7357,
|
| 391 |
+
"step": 500
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"epoch": 45.46511627906977,
|
| 395 |
+
"eval_loss": 1.0363179445266724,
|
| 396 |
+
"eval_runtime": 3.4794,
|
| 397 |
+
"eval_samples_per_second": 86.222,
|
| 398 |
+
"eval_steps_per_second": 5.461,
|
| 399 |
+
"step": 500
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"epoch": 46.372093023255815,
|
| 403 |
+
"grad_norm": 0.11302001774311066,
|
| 404 |
+
"learning_rate": 5.1e-10,
|
| 405 |
+
"loss": 0.7368,
|
| 406 |
+
"step": 510
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 47.27906976744186,
|
| 410 |
+
"grad_norm": 0.11157575994729996,
|
| 411 |
+
"learning_rate": 5.2e-10,
|
| 412 |
+
"loss": 0.737,
|
| 413 |
+
"step": 520
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"epoch": 48.18604651162791,
|
| 417 |
+
"grad_norm": 0.11483639478683472,
|
| 418 |
+
"learning_rate": 5.3e-10,
|
| 419 |
+
"loss": 0.738,
|
| 420 |
+
"step": 530
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"epoch": 49.093023255813954,
|
| 424 |
+
"grad_norm": 0.11399766802787781,
|
| 425 |
+
"learning_rate": 5.4e-10,
|
| 426 |
+
"loss": 0.7383,
|
| 427 |
+
"step": 540
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"epoch": 50.0,
|
| 431 |
+
"grad_norm": 0.09255016595125198,
|
| 432 |
+
"learning_rate": 5.500000000000001e-10,
|
| 433 |
+
"loss": 0.735,
|
| 434 |
+
"step": 550
|
| 435 |
+
},
|
| 436 |
+
{
|
| 437 |
+
"epoch": 50.93023255813954,
|
| 438 |
+
"grad_norm": 0.11325773596763611,
|
| 439 |
+
"learning_rate": 5.6e-10,
|
| 440 |
+
"loss": 0.7596,
|
| 441 |
+
"step": 560
|
| 442 |
+
},
|
| 443 |
+
{
|
| 444 |
+
"epoch": 51.83720930232558,
|
| 445 |
+
"grad_norm": 0.11773113161325455,
|
| 446 |
+
"learning_rate": 5.700000000000001e-10,
|
| 447 |
+
"loss": 0.7386,
|
| 448 |
+
"step": 570
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"epoch": 52.74418604651163,
|
| 452 |
+
"grad_norm": 0.11714331805706024,
|
| 453 |
+
"learning_rate": 5.800000000000001e-10,
|
| 454 |
+
"loss": 0.732,
|
| 455 |
+
"step": 580
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"epoch": 53.651162790697676,
|
| 459 |
+
"grad_norm": 0.11106540262699127,
|
| 460 |
+
"learning_rate": 5.9e-10,
|
| 461 |
+
"loss": 0.7379,
|
| 462 |
+
"step": 590
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"epoch": 54.55813953488372,
|
| 466 |
+
"grad_norm": 0.1199754998087883,
|
| 467 |
+
"learning_rate": 6.000000000000001e-10,
|
| 468 |
+
"loss": 0.7337,
|
| 469 |
+
"step": 600
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 54.55813953488372,
|
| 473 |
+
"eval_loss": 1.0363249778747559,
|
| 474 |
+
"eval_runtime": 3.4958,
|
| 475 |
+
"eval_samples_per_second": 85.818,
|
| 476 |
+
"eval_steps_per_second": 5.435,
|
| 477 |
+
"step": 600
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"epoch": 55.46511627906977,
|
| 481 |
+
"grad_norm": 0.11072533577680588,
|
| 482 |
+
"learning_rate": 6.100000000000001e-10,
|
| 483 |
+
"loss": 0.7349,
|
| 484 |
+
"step": 610
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"epoch": 56.372093023255815,
|
| 488 |
+
"grad_norm": 0.11371786892414093,
|
| 489 |
+
"learning_rate": 6.2e-10,
|
| 490 |
+
"loss": 0.7356,
|
| 491 |
+
"step": 620
|
| 492 |
+
},
|
| 493 |
+
{
|
| 494 |
+
"epoch": 57.27906976744186,
|
| 495 |
+
"grad_norm": 0.11891023069620132,
|
| 496 |
+
"learning_rate": 6.300000000000001e-10,
|
| 497 |
+
"loss": 0.7408,
|
| 498 |
+
"step": 630
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"epoch": 58.18604651162791,
|
| 502 |
+
"grad_norm": 0.11063282191753387,
|
| 503 |
+
"learning_rate": 6.400000000000001e-10,
|
| 504 |
+
"loss": 0.7358,
|
| 505 |
+
"step": 640
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 59.093023255813954,
|
| 509 |
+
"grad_norm": 0.1132306382060051,
|
| 510 |
+
"learning_rate": 6.5e-10,
|
| 511 |
+
"loss": 0.741,
|
| 512 |
+
"step": 650
|
| 513 |
+
},
|
| 514 |
+
{
|
| 515 |
+
"epoch": 60.0,
|
| 516 |
+
"grad_norm": 0.09035759419202805,
|
| 517 |
+
"learning_rate": 6.600000000000001e-10,
|
| 518 |
+
"loss": 0.7358,
|
| 519 |
+
"step": 660
|
| 520 |
+
},
|
| 521 |
+
{
|
| 522 |
+
"epoch": 60.93023255813954,
|
| 523 |
+
"grad_norm": 0.11425936967134476,
|
| 524 |
+
"learning_rate": 6.700000000000001e-10,
|
| 525 |
+
"loss": 0.7549,
|
| 526 |
+
"step": 670
|
| 527 |
+
},
|
| 528 |
+
{
|
| 529 |
+
"epoch": 61.83720930232558,
|
| 530 |
+
"grad_norm": 0.10887646675109863,
|
| 531 |
+
"learning_rate": 6.8e-10,
|
| 532 |
+
"loss": 0.738,
|
| 533 |
+
"step": 680
|
| 534 |
+
},
|
| 535 |
+
{
|
| 536 |
+
"epoch": 62.74418604651163,
|
| 537 |
+
"grad_norm": 0.11473378539085388,
|
| 538 |
+
"learning_rate": 6.9e-10,
|
| 539 |
+
"loss": 0.7357,
|
| 540 |
+
"step": 690
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"epoch": 63.651162790697676,
|
| 544 |
+
"grad_norm": 0.11401313543319702,
|
| 545 |
+
"learning_rate": 7e-10,
|
| 546 |
+
"loss": 0.7405,
|
| 547 |
+
"step": 700
|
| 548 |
+
},
|
| 549 |
+
{
|
| 550 |
+
"epoch": 63.651162790697676,
|
| 551 |
+
"eval_loss": 1.036296010017395,
|
| 552 |
+
"eval_runtime": 3.4935,
|
| 553 |
+
"eval_samples_per_second": 85.874,
|
| 554 |
+
"eval_steps_per_second": 5.439,
|
| 555 |
+
"step": 700
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 64.55813953488372,
|
| 559 |
+
"grad_norm": 0.11050975322723389,
|
| 560 |
+
"learning_rate": 7.100000000000001e-10,
|
| 561 |
+
"loss": 0.7423,
|
| 562 |
+
"step": 710
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 65.46511627906976,
|
| 566 |
+
"grad_norm": 0.11604534834623337,
|
| 567 |
+
"learning_rate": 7.200000000000001e-10,
|
| 568 |
+
"loss": 0.7356,
|
| 569 |
+
"step": 720
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 66.37209302325581,
|
| 573 |
+
"grad_norm": 0.11239884048700333,
|
| 574 |
+
"learning_rate": 7.300000000000001e-10,
|
| 575 |
+
"loss": 0.7332,
|
| 576 |
+
"step": 730
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"epoch": 67.27906976744185,
|
| 580 |
+
"grad_norm": 0.11227668821811676,
|
| 581 |
+
"learning_rate": 7.4e-10,
|
| 582 |
+
"loss": 0.7402,
|
| 583 |
+
"step": 740
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"epoch": 68.18604651162791,
|
| 587 |
+
"grad_norm": 0.11599355936050415,
|
| 588 |
+
"learning_rate": 7.5e-10,
|
| 589 |
+
"loss": 0.7305,
|
| 590 |
+
"step": 750
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 69.09302325581395,
|
| 594 |
+
"grad_norm": 0.11684999614953995,
|
| 595 |
+
"learning_rate": 7.600000000000001e-10,
|
| 596 |
+
"loss": 0.7435,
|
| 597 |
+
"step": 760
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 70.0,
|
| 601 |
+
"grad_norm": 0.09078619629144669,
|
| 602 |
+
"learning_rate": 7.7e-10,
|
| 603 |
+
"loss": 0.7354,
|
| 604 |
+
"step": 770
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 70.93023255813954,
|
| 608 |
+
"grad_norm": 0.11326087266206741,
|
| 609 |
+
"learning_rate": 7.800000000000001e-10,
|
| 610 |
+
"loss": 0.7546,
|
| 611 |
+
"step": 780
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 71.83720930232558,
|
| 615 |
+
"grad_norm": 0.1127663403749466,
|
| 616 |
+
"learning_rate": 7.900000000000001e-10,
|
| 617 |
+
"loss": 0.7374,
|
| 618 |
+
"step": 790
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"epoch": 72.74418604651163,
|
| 622 |
+
"grad_norm": 0.11612005531787872,
|
| 623 |
+
"learning_rate": 8.000000000000001e-10,
|
| 624 |
+
"loss": 0.7267,
|
| 625 |
+
"step": 800
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 72.74418604651163,
|
| 629 |
+
"eval_loss": 1.036307692527771,
|
| 630 |
+
"eval_runtime": 3.489,
|
| 631 |
+
"eval_samples_per_second": 85.984,
|
| 632 |
+
"eval_steps_per_second": 5.446,
|
| 633 |
+
"step": 800
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 73.65116279069767,
|
| 637 |
+
"grad_norm": 0.10922073572874069,
|
| 638 |
+
"learning_rate": 8.100000000000001e-10,
|
| 639 |
+
"loss": 0.7435,
|
| 640 |
+
"step": 810
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 74.55813953488372,
|
| 644 |
+
"grad_norm": 0.11204863339662552,
|
| 645 |
+
"learning_rate": 8.200000000000001e-10,
|
| 646 |
+
"loss": 0.7351,
|
| 647 |
+
"step": 820
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 75.46511627906976,
|
| 651 |
+
"grad_norm": 0.11315888166427612,
|
| 652 |
+
"learning_rate": 8.3e-10,
|
| 653 |
+
"loss": 0.7346,
|
| 654 |
+
"step": 830
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 76.37209302325581,
|
| 658 |
+
"grad_norm": 0.11475896835327148,
|
| 659 |
+
"learning_rate": 8.4e-10,
|
| 660 |
+
"loss": 0.7368,
|
| 661 |
+
"step": 840
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 77.27906976744185,
|
| 665 |
+
"grad_norm": 0.11209738999605179,
|
| 666 |
+
"learning_rate": 8.500000000000002e-10,
|
| 667 |
+
"loss": 0.7345,
|
| 668 |
+
"step": 850
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 78.18604651162791,
|
| 672 |
+
"grad_norm": 0.10578745603561401,
|
| 673 |
+
"learning_rate": 8.600000000000001e-10,
|
| 674 |
+
"loss": 0.7347,
|
| 675 |
+
"step": 860
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 79.09302325581395,
|
| 679 |
+
"grad_norm": 0.11142127960920334,
|
| 680 |
+
"learning_rate": 8.700000000000001e-10,
|
| 681 |
+
"loss": 0.7382,
|
| 682 |
+
"step": 870
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 80.0,
|
| 686 |
+
"grad_norm": 0.08924738317728043,
|
| 687 |
+
"learning_rate": 8.800000000000001e-10,
|
| 688 |
+
"loss": 0.7369,
|
| 689 |
+
"step": 880
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 80.93023255813954,
|
| 693 |
+
"grad_norm": 0.1128871962428093,
|
| 694 |
+
"learning_rate": 8.9e-10,
|
| 695 |
+
"loss": 0.7531,
|
| 696 |
+
"step": 890
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 81.83720930232558,
|
| 700 |
+
"grad_norm": 0.11317210644483566,
|
| 701 |
+
"learning_rate": 9.000000000000001e-10,
|
| 702 |
+
"loss": 0.7381,
|
| 703 |
+
"step": 900
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 81.83720930232558,
|
| 707 |
+
"eval_loss": 1.0362827777862549,
|
| 708 |
+
"eval_runtime": 3.4931,
|
| 709 |
+
"eval_samples_per_second": 85.883,
|
| 710 |
+
"eval_steps_per_second": 5.439,
|
| 711 |
+
"step": 900
|
| 712 |
+
},
|
| 713 |
+
{
|
| 714 |
+
"epoch": 82.74418604651163,
|
| 715 |
+
"grad_norm": 0.11075228452682495,
|
| 716 |
+
"learning_rate": 9.100000000000001e-10,
|
| 717 |
+
"loss": 0.7398,
|
| 718 |
+
"step": 910
|
| 719 |
+
},
|
| 720 |
+
{
|
| 721 |
+
"epoch": 83.65116279069767,
|
| 722 |
+
"grad_norm": 0.11806778609752655,
|
| 723 |
+
"learning_rate": 9.2e-10,
|
| 724 |
+
"loss": 0.7383,
|
| 725 |
+
"step": 920
|
| 726 |
+
},
|
| 727 |
+
{
|
| 728 |
+
"epoch": 84.55813953488372,
|
| 729 |
+
"grad_norm": 0.10795407742261887,
|
| 730 |
+
"learning_rate": 9.300000000000001e-10,
|
| 731 |
+
"loss": 0.7358,
|
| 732 |
+
"step": 930
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"epoch": 85.46511627906976,
|
| 736 |
+
"grad_norm": 0.11355073004961014,
|
| 737 |
+
"learning_rate": 9.4e-10,
|
| 738 |
+
"loss": 0.7318,
|
| 739 |
+
"step": 940
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 86.37209302325581,
|
| 743 |
+
"grad_norm": 0.11858271807432175,
|
| 744 |
+
"learning_rate": 9.5e-10,
|
| 745 |
+
"loss": 0.7382,
|
| 746 |
+
"step": 950
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"epoch": 87.27906976744185,
|
| 750 |
+
"grad_norm": 0.10782402008771896,
|
| 751 |
+
"learning_rate": 9.600000000000002e-10,
|
| 752 |
+
"loss": 0.7339,
|
| 753 |
+
"step": 960
|
| 754 |
+
},
|
| 755 |
+
{
|
| 756 |
+
"epoch": 88.18604651162791,
|
| 757 |
+
"grad_norm": 0.10977963358163834,
|
| 758 |
+
"learning_rate": 9.700000000000002e-10,
|
| 759 |
+
"loss": 0.7422,
|
| 760 |
+
"step": 970
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"epoch": 89.09302325581395,
|
| 764 |
+
"grad_norm": 0.1131366416811943,
|
| 765 |
+
"learning_rate": 9.800000000000001e-10,
|
| 766 |
+
"loss": 0.7395,
|
| 767 |
+
"step": 980
|
| 768 |
+
},
|
| 769 |
+
{
|
| 770 |
+
"epoch": 90.0,
|
| 771 |
+
"grad_norm": 0.08679576963186264,
|
| 772 |
+
"learning_rate": 9.9e-10,
|
| 773 |
+
"loss": 0.7349,
|
| 774 |
+
"step": 990
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"epoch": 90.93023255813954,
|
| 778 |
+
"grad_norm": 0.1211756095290184,
|
| 779 |
+
"learning_rate": 1e-09,
|
| 780 |
+
"loss": 0.7559,
|
| 781 |
+
"step": 1000
|
| 782 |
+
},
|
| 783 |
+
{
|
| 784 |
+
"epoch": 90.93023255813954,
|
| 785 |
+
"eval_loss": 1.0363088846206665,
|
| 786 |
+
"eval_runtime": 3.483,
|
| 787 |
+
"eval_samples_per_second": 86.132,
|
| 788 |
+
"eval_steps_per_second": 5.455,
|
| 789 |
+
"step": 1000
|
| 790 |
+
},
|
| 791 |
+
{
|
| 792 |
+
"epoch": 91.83720930232558,
|
| 793 |
+
"grad_norm": 0.11302389204502106,
|
| 794 |
+
"learning_rate": 1.01e-09,
|
| 795 |
+
"loss": 0.7363,
|
| 796 |
+
"step": 1010
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"epoch": 92.74418604651163,
|
| 800 |
+
"grad_norm": 0.10905308276414871,
|
| 801 |
+
"learning_rate": 1.02e-09,
|
| 802 |
+
"loss": 0.7377,
|
| 803 |
+
"step": 1020
|
| 804 |
+
},
|
| 805 |
+
{
|
| 806 |
+
"epoch": 93.65116279069767,
|
| 807 |
+
"grad_norm": 0.11702612787485123,
|
| 808 |
+
"learning_rate": 1.03e-09,
|
| 809 |
+
"loss": 0.7262,
|
| 810 |
+
"step": 1030
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"epoch": 94.55813953488372,
|
| 814 |
+
"grad_norm": 0.11045394837856293,
|
| 815 |
+
"learning_rate": 1.04e-09,
|
| 816 |
+
"loss": 0.7451,
|
| 817 |
+
"step": 1040
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"epoch": 95.46511627906976,
|
| 821 |
+
"grad_norm": 0.11365518718957901,
|
| 822 |
+
"learning_rate": 1.05e-09,
|
| 823 |
+
"loss": 0.7371,
|
| 824 |
+
"step": 1050
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"epoch": 96.37209302325581,
|
| 828 |
+
"grad_norm": 0.11288804560899734,
|
| 829 |
+
"learning_rate": 1.06e-09,
|
| 830 |
+
"loss": 0.74,
|
| 831 |
+
"step": 1060
|
| 832 |
+
},
|
| 833 |
+
{
|
| 834 |
+
"epoch": 97.27906976744185,
|
| 835 |
+
"grad_norm": 0.11331238597631454,
|
| 836 |
+
"learning_rate": 1.07e-09,
|
| 837 |
+
"loss": 0.732,
|
| 838 |
+
"step": 1070
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 98.18604651162791,
|
| 842 |
+
"grad_norm": 0.11176671087741852,
|
| 843 |
+
"learning_rate": 1.08e-09,
|
| 844 |
+
"loss": 0.742,
|
| 845 |
+
"step": 1080
|
| 846 |
+
},
|
| 847 |
+
{
|
| 848 |
+
"epoch": 99.09302325581395,
|
| 849 |
+
"grad_norm": 0.10659754276275635,
|
| 850 |
+
"learning_rate": 1.0900000000000002e-09,
|
| 851 |
+
"loss": 0.7335,
|
| 852 |
+
"step": 1090
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"epoch": 100.0,
|
| 856 |
+
"grad_norm": 0.08784844726324081,
|
| 857 |
+
"learning_rate": 1.1000000000000001e-09,
|
| 858 |
+
"loss": 0.7371,
|
| 859 |
+
"step": 1100
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"epoch": 100.0,
|
| 863 |
+
"eval_loss": 1.0363367795944214,
|
| 864 |
+
"eval_runtime": 3.5094,
|
| 865 |
+
"eval_samples_per_second": 85.485,
|
| 866 |
+
"eval_steps_per_second": 5.414,
|
| 867 |
+
"step": 1100
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"epoch": 100.93023255813954,
|
| 871 |
+
"grad_norm": 0.11300911009311676,
|
| 872 |
+
"learning_rate": 1.11e-09,
|
| 873 |
+
"loss": 0.7575,
|
| 874 |
+
"step": 1110
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 101.83720930232558,
|
| 878 |
+
"grad_norm": 0.11774452775716782,
|
| 879 |
+
"learning_rate": 1.12e-09,
|
| 880 |
+
"loss": 0.7373,
|
| 881 |
+
"step": 1120
|
| 882 |
+
},
|
| 883 |
+
{
|
| 884 |
+
"epoch": 102.74418604651163,
|
| 885 |
+
"grad_norm": 0.10687077045440674,
|
| 886 |
+
"learning_rate": 1.13e-09,
|
| 887 |
+
"loss": 0.7418,
|
| 888 |
+
"step": 1130
|
| 889 |
+
},
|
| 890 |
+
{
|
| 891 |
+
"epoch": 103.65116279069767,
|
| 892 |
+
"grad_norm": 0.11354215443134308,
|
| 893 |
+
"learning_rate": 1.1400000000000002e-09,
|
| 894 |
+
"loss": 0.7316,
|
| 895 |
+
"step": 1140
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"epoch": 104.55813953488372,
|
| 899 |
+
"grad_norm": 0.11316734552383423,
|
| 900 |
+
"learning_rate": 1.1500000000000002e-09,
|
| 901 |
+
"loss": 0.746,
|
| 902 |
+
"step": 1150
|
| 903 |
+
},
|
| 904 |
+
{
|
| 905 |
+
"epoch": 105.46511627906976,
|
| 906 |
+
"grad_norm": 0.11537086218595505,
|
| 907 |
+
"learning_rate": 1.1600000000000001e-09,
|
| 908 |
+
"loss": 0.7324,
|
| 909 |
+
"step": 1160
|
| 910 |
+
},
|
| 911 |
+
{
|
| 912 |
+
"epoch": 106.37209302325581,
|
| 913 |
+
"grad_norm": 0.11474544554948807,
|
| 914 |
+
"learning_rate": 1.17e-09,
|
| 915 |
+
"loss": 0.7341,
|
| 916 |
+
"step": 1170
|
| 917 |
+
},
|
| 918 |
+
{
|
| 919 |
+
"epoch": 107.27906976744185,
|
| 920 |
+
"grad_norm": 0.11136472970247269,
|
| 921 |
+
"learning_rate": 1.18e-09,
|
| 922 |
+
"loss": 0.7334,
|
| 923 |
+
"step": 1180
|
| 924 |
+
},
|
| 925 |
+
{
|
| 926 |
+
"epoch": 108.18604651162791,
|
| 927 |
+
"grad_norm": 0.10674024373292923,
|
| 928 |
+
"learning_rate": 1.1900000000000002e-09,
|
| 929 |
+
"loss": 0.7345,
|
| 930 |
+
"step": 1190
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"epoch": 109.09302325581395,
|
| 934 |
+
"grad_norm": 0.10979607701301575,
|
| 935 |
+
"learning_rate": 1.2000000000000002e-09,
|
| 936 |
+
"loss": 0.7396,
|
| 937 |
+
"step": 1200
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 109.09302325581395,
|
| 941 |
+
"eval_loss": 1.036333441734314,
|
| 942 |
+
"eval_runtime": 3.4932,
|
| 943 |
+
"eval_samples_per_second": 85.881,
|
| 944 |
+
"eval_steps_per_second": 5.439,
|
| 945 |
+
"step": 1200
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"epoch": 110.0,
|
| 949 |
+
"grad_norm": 0.09423299878835678,
|
| 950 |
+
"learning_rate": 1.2100000000000002e-09,
|
| 951 |
+
"loss": 0.7386,
|
| 952 |
+
"step": 1210
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"epoch": 110.93023255813954,
|
| 956 |
+
"grad_norm": 0.11316266655921936,
|
| 957 |
+
"learning_rate": 1.2200000000000001e-09,
|
| 958 |
+
"loss": 0.7584,
|
| 959 |
+
"step": 1220
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"epoch": 111.83720930232558,
|
| 963 |
+
"grad_norm": 0.12226978689432144,
|
| 964 |
+
"learning_rate": 1.23e-09,
|
| 965 |
+
"loss": 0.737,
|
| 966 |
+
"step": 1230
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"epoch": 112.74418604651163,
|
| 970 |
+
"grad_norm": 0.11621031910181046,
|
| 971 |
+
"learning_rate": 1.24e-09,
|
| 972 |
+
"loss": 0.7368,
|
| 973 |
+
"step": 1240
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 113.65116279069767,
|
| 977 |
+
"grad_norm": 0.11429636180400848,
|
| 978 |
+
"learning_rate": 1.25e-09,
|
| 979 |
+
"loss": 0.731,
|
| 980 |
+
"step": 1250
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"epoch": 114.55813953488372,
|
| 984 |
+
"grad_norm": 0.11287425458431244,
|
| 985 |
+
"learning_rate": 1.2600000000000002e-09,
|
| 986 |
+
"loss": 0.7398,
|
| 987 |
+
"step": 1260
|
| 988 |
+
},
|
| 989 |
+
{
|
| 990 |
+
"epoch": 115.46511627906976,
|
| 991 |
+
"grad_norm": 0.10956660658121109,
|
| 992 |
+
"learning_rate": 1.2700000000000002e-09,
|
| 993 |
+
"loss": 0.7341,
|
| 994 |
+
"step": 1270
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"epoch": 116.37209302325581,
|
| 998 |
+
"grad_norm": 0.10884570330381393,
|
| 999 |
+
"learning_rate": 1.2800000000000001e-09,
|
| 1000 |
+
"loss": 0.7364,
|
| 1001 |
+
"step": 1280
|
| 1002 |
+
},
|
| 1003 |
+
{
|
| 1004 |
+
"epoch": 117.27906976744185,
|
| 1005 |
+
"grad_norm": 0.11374054849147797,
|
| 1006 |
+
"learning_rate": 1.29e-09,
|
| 1007 |
+
"loss": 0.7431,
|
| 1008 |
+
"step": 1290
|
| 1009 |
+
},
|
| 1010 |
+
{
|
| 1011 |
+
"epoch": 118.18604651162791,
|
| 1012 |
+
"grad_norm": 0.11244415491819382,
|
| 1013 |
+
"learning_rate": 1.3e-09,
|
| 1014 |
+
"loss": 0.7411,
|
| 1015 |
+
"step": 1300
|
| 1016 |
+
},
|
| 1017 |
+
{
|
| 1018 |
+
"epoch": 118.18604651162791,
|
| 1019 |
+
"eval_loss": 1.0363229513168335,
|
| 1020 |
+
"eval_runtime": 3.504,
|
| 1021 |
+
"eval_samples_per_second": 85.616,
|
| 1022 |
+
"eval_steps_per_second": 5.422,
|
| 1023 |
+
"step": 1300
|
| 1024 |
+
},
|
| 1025 |
+
{
|
| 1026 |
+
"epoch": 119.09302325581395,
|
| 1027 |
+
"grad_norm": 0.11712588369846344,
|
| 1028 |
+
"learning_rate": 1.3100000000000002e-09,
|
| 1029 |
+
"loss": 0.7345,
|
| 1030 |
+
"step": 1310
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"epoch": 120.0,
|
| 1034 |
+
"grad_norm": 0.0905037373304367,
|
| 1035 |
+
"learning_rate": 1.3200000000000002e-09,
|
| 1036 |
+
"loss": 0.7356,
|
| 1037 |
+
"step": 1320
|
| 1038 |
+
},
|
| 1039 |
+
{
|
| 1040 |
+
"epoch": 120.93023255813954,
|
| 1041 |
+
"grad_norm": 0.11537771672010422,
|
| 1042 |
+
"learning_rate": 1.3300000000000002e-09,
|
| 1043 |
+
"loss": 0.7568,
|
| 1044 |
+
"step": 1330
|
| 1045 |
+
},
|
| 1046 |
+
{
|
| 1047 |
+
"epoch": 121.83720930232558,
|
| 1048 |
+
"grad_norm": 0.1106189489364624,
|
| 1049 |
+
"learning_rate": 1.3400000000000001e-09,
|
| 1050 |
+
"loss": 0.7353,
|
| 1051 |
+
"step": 1340
|
| 1052 |
+
},
|
| 1053 |
+
{
|
| 1054 |
+
"epoch": 122.74418604651163,
|
| 1055 |
+
"grad_norm": 0.11432438343763351,
|
| 1056 |
+
"learning_rate": 1.35e-09,
|
| 1057 |
+
"loss": 0.7348,
|
| 1058 |
+
"step": 1350
|
| 1059 |
+
},
|
| 1060 |
+
{
|
| 1061 |
+
"epoch": 123.65116279069767,
|
| 1062 |
+
"grad_norm": 0.11351707577705383,
|
| 1063 |
+
"learning_rate": 1.36e-09,
|
| 1064 |
+
"loss": 0.7478,
|
| 1065 |
+
"step": 1360
|
| 1066 |
+
},
|
| 1067 |
+
{
|
| 1068 |
+
"epoch": 124.55813953488372,
|
| 1069 |
+
"grad_norm": 0.11303924024105072,
|
| 1070 |
+
"learning_rate": 1.37e-09,
|
| 1071 |
+
"loss": 0.7317,
|
| 1072 |
+
"step": 1370
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 125.46511627906976,
|
| 1076 |
+
"grad_norm": 0.11493802070617676,
|
| 1077 |
+
"learning_rate": 1.38e-09,
|
| 1078 |
+
"loss": 0.7358,
|
| 1079 |
+
"step": 1380
|
| 1080 |
+
},
|
| 1081 |
+
{
|
| 1082 |
+
"epoch": 126.37209302325581,
|
| 1083 |
+
"grad_norm": 0.10831434279680252,
|
| 1084 |
+
"learning_rate": 1.39e-09,
|
| 1085 |
+
"loss": 0.7397,
|
| 1086 |
+
"step": 1390
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"epoch": 127.27906976744185,
|
| 1090 |
+
"grad_norm": 0.10965836048126221,
|
| 1091 |
+
"learning_rate": 1.4e-09,
|
| 1092 |
+
"loss": 0.7304,
|
| 1093 |
+
"step": 1400
|
| 1094 |
+
},
|
| 1095 |
+
{
|
| 1096 |
+
"epoch": 127.27906976744185,
|
| 1097 |
+
"eval_loss": 1.0363410711288452,
|
| 1098 |
+
"eval_runtime": 3.4972,
|
| 1099 |
+
"eval_samples_per_second": 85.782,
|
| 1100 |
+
"eval_steps_per_second": 5.433,
|
| 1101 |
+
"step": 1400
|
| 1102 |
+
},
|
| 1103 |
+
{
|
| 1104 |
+
"epoch": 128.1860465116279,
|
| 1105 |
+
"grad_norm": 0.11228539049625397,
|
| 1106 |
+
"learning_rate": 1.4100000000000003e-09,
|
| 1107 |
+
"loss": 0.7395,
|
| 1108 |
+
"step": 1410
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 129.09302325581396,
|
| 1112 |
+
"grad_norm": 0.11310495436191559,
|
| 1113 |
+
"learning_rate": 1.4200000000000003e-09,
|
| 1114 |
+
"loss": 0.7389,
|
| 1115 |
+
"step": 1420
|
| 1116 |
+
},
|
| 1117 |
+
{
|
| 1118 |
+
"epoch": 130.0,
|
| 1119 |
+
"grad_norm": 0.08860716968774796,
|
| 1120 |
+
"learning_rate": 1.4300000000000002e-09,
|
| 1121 |
+
"loss": 0.7369,
|
| 1122 |
+
"step": 1430
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"epoch": 130.93023255813952,
|
| 1126 |
+
"grad_norm": 0.10922189801931381,
|
| 1127 |
+
"learning_rate": 1.4400000000000002e-09,
|
| 1128 |
+
"loss": 0.7562,
|
| 1129 |
+
"step": 1440
|
| 1130 |
+
},
|
| 1131 |
+
{
|
| 1132 |
+
"epoch": 131.8372093023256,
|
| 1133 |
+
"grad_norm": 0.11167009174823761,
|
| 1134 |
+
"learning_rate": 1.4500000000000002e-09,
|
| 1135 |
+
"loss": 0.7369,
|
| 1136 |
+
"step": 1450
|
| 1137 |
+
},
|
| 1138 |
+
{
|
| 1139 |
+
"epoch": 132.74418604651163,
|
| 1140 |
+
"grad_norm": 0.1166851818561554,
|
| 1141 |
+
"learning_rate": 1.4600000000000001e-09,
|
| 1142 |
+
"loss": 0.7347,
|
| 1143 |
+
"step": 1460
|
| 1144 |
+
},
|
| 1145 |
+
{
|
| 1146 |
+
"epoch": 133.65116279069767,
|
| 1147 |
+
"grad_norm": 0.11318089067935944,
|
| 1148 |
+
"learning_rate": 1.47e-09,
|
| 1149 |
+
"loss": 0.7338,
|
| 1150 |
+
"step": 1470
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"epoch": 134.5581395348837,
|
| 1154 |
+
"grad_norm": 0.11904707551002502,
|
| 1155 |
+
"learning_rate": 1.48e-09,
|
| 1156 |
+
"loss": 0.7341,
|
| 1157 |
+
"step": 1480
|
| 1158 |
+
},
|
| 1159 |
+
{
|
| 1160 |
+
"epoch": 135.46511627906978,
|
| 1161 |
+
"grad_norm": 0.11629388481378555,
|
| 1162 |
+
"learning_rate": 1.49e-09,
|
| 1163 |
+
"loss": 0.7504,
|
| 1164 |
+
"step": 1490
|
| 1165 |
+
},
|
| 1166 |
+
{
|
| 1167 |
+
"epoch": 136.37209302325581,
|
| 1168 |
+
"grad_norm": 0.12060245871543884,
|
| 1169 |
+
"learning_rate": 1.5e-09,
|
| 1170 |
+
"loss": 0.7234,
|
| 1171 |
+
"step": 1500
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 136.37209302325581,
|
| 1175 |
+
"eval_loss": 1.0363295078277588,
|
| 1176 |
+
"eval_runtime": 3.4888,
|
| 1177 |
+
"eval_samples_per_second": 85.989,
|
| 1178 |
+
"eval_steps_per_second": 5.446,
|
| 1179 |
+
"step": 1500
|
| 1180 |
+
}
|
| 1181 |
+
],
|
| 1182 |
+
"logging_steps": 10,
|
| 1183 |
+
"max_steps": 100000000,
|
| 1184 |
+
"num_input_tokens_seen": 0,
|
| 1185 |
+
"num_train_epochs": 10000000,
|
| 1186 |
+
"save_steps": 100,
|
| 1187 |
+
"stateful_callbacks": {
|
| 1188 |
+
"TrainerControl": {
|
| 1189 |
+
"args": {
|
| 1190 |
+
"should_epoch_stop": false,
|
| 1191 |
+
"should_evaluate": false,
|
| 1192 |
+
"should_log": false,
|
| 1193 |
+
"should_save": true,
|
| 1194 |
+
"should_training_stop": false
|
| 1195 |
+
},
|
| 1196 |
+
"attributes": {}
|
| 1197 |
+
}
|
| 1198 |
+
},
|
| 1199 |
+
"total_flos": 3.3019504646600786e+19,
|
| 1200 |
+
"train_batch_size": 8,
|
| 1201 |
+
"trial_name": null,
|
| 1202 |
+
"trial_params": null
|
| 1203 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48f8699711f9e3ca0e1fbf79e7da011ba8aaf36be3a9c643ba4df2a4b6a46c25
|
| 3 |
+
size 5752
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|