Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +66 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- category_mapping.json +34 -0
- checkpoint-1098/README.md +206 -0
- checkpoint-1098/adapter_config.json +46 -0
- checkpoint-1098/adapter_model.safetensors +3 -0
- checkpoint-1098/optimizer.pt +3 -0
- checkpoint-1098/rng_state.pth +3 -0
- checkpoint-1098/scheduler.pt +3 -0
- checkpoint-1098/trainer_state.json +827 -0
- checkpoint-1098/training_args.bin +3 -0
- checkpoint-1464/README.md +206 -0
- checkpoint-1464/adapter_config.json +46 -0
- checkpoint-1464/adapter_model.safetensors +3 -0
- checkpoint-1464/optimizer.pt +3 -0
- checkpoint-1464/rng_state.pth +3 -0
- checkpoint-1464/scheduler.pt +3 -0
- checkpoint-1464/trainer_state.json +1096 -0
- checkpoint-1464/training_args.bin +3 -0
- checkpoint-1830/README.md +206 -0
- checkpoint-1830/adapter_config.json +46 -0
- checkpoint-1830/adapter_model.safetensors +3 -0
- checkpoint-1830/optimizer.pt +3 -0
- checkpoint-1830/rng_state.pth +3 -0
- checkpoint-1830/scheduler.pt +3 -0
- checkpoint-1830/trainer_state.json +1365 -0
- checkpoint-1830/training_args.bin +3 -0
- checkpoint-366/README.md +206 -0
- checkpoint-366/adapter_config.json +46 -0
- checkpoint-366/adapter_model.safetensors +3 -0
- checkpoint-366/optimizer.pt +3 -0
- checkpoint-366/rng_state.pth +3 -0
- checkpoint-366/scheduler.pt +3 -0
- checkpoint-366/trainer_state.json +296 -0
- checkpoint-366/training_args.bin +3 -0
- checkpoint-732/README.md +206 -0
- checkpoint-732/adapter_config.json +46 -0
- checkpoint-732/adapter_model.safetensors +3 -0
- checkpoint-732/optimizer.pt +3 -0
- checkpoint-732/rng_state.pth +3 -0
- checkpoint-732/scheduler.pt +3 -0
- checkpoint-732/trainer_state.json +565 -0
- checkpoint-732/training_args.bin +3 -0
- label_mapping.json +34 -0
- special_tokens_map.json +55 -0
- tokenizer.json +3 -0
- tokenizer_config.json +2018 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# mmBERT-32K Intent Classifier (LoRA)
|
| 2 |
+
|
| 3 |
+
Multi-class intent/category classifier based on **mmBERT-32K-YaRN** for routing LLM requests to appropriate models.
|
| 4 |
+
|
| 5 |
+
## Model Description
|
| 6 |
+
|
| 7 |
+
This model classifies text into academic/topic categories from MMLU-Pro dataset for intelligent request routing in Mixture-of-Models (MoM) systems.
|
| 8 |
+
|
| 9 |
+
### Categories
|
| 10 |
+
Business, Law, Psychology, Biology, Chemistry, Computer Science, Economics, Engineering, Health, History, Math, Philosophy, Physics, and more.
|
| 11 |
+
|
| 12 |
+
### Base Model
|
| 13 |
+
- **Base**: [llm-semantic-router/mmbert-32k-yarn](https://huggingface.co/llm-semantic-router/mmbert-32k-yarn)
|
| 14 |
+
- **Architecture**: ModernBERT with YaRN RoPE scaling
|
| 15 |
+
- **Context Length**: 32,768 tokens
|
| 16 |
+
- **Languages**: 1800+ (via Glot500 vocabulary)
|
| 17 |
+
|
| 18 |
+
### Training Details
|
| 19 |
+
- **Method**: LoRA fine-tuning
|
| 20 |
+
- **LoRA Rank**: 8
|
| 21 |
+
- **LoRA Alpha**: 16
|
| 22 |
+
- **Epochs**: 5
|
| 23 |
+
- **Batch Size**: 8
|
| 24 |
+
- **Learning Rate**: 3e-5
|
| 25 |
+
- **Dataset**: TIGER-Lab/MMLU-Pro
|
| 26 |
+
|
| 27 |
+
### Performance
|
| 28 |
+
|
| 29 |
+
| Metric | Score |
|
| 30 |
+
|--------|-------|
|
| 31 |
+
| **Accuracy** | 76.83% |
|
| 32 |
+
| **F1 Score** | 76.99% |
|
| 33 |
+
|
| 34 |
+
## Usage
|
| 35 |
+
|
| 36 |
+
```python
|
| 37 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 38 |
+
from peft import PeftModel
|
| 39 |
+
import torch
|
| 40 |
+
|
| 41 |
+
# Load model
|
| 42 |
+
base_model = "llm-semantic-router/mmbert-32k-yarn"
|
| 43 |
+
adapter = "llm-semantic-router/mmbert32k-intent-classifier-lora"
|
| 44 |
+
|
| 45 |
+
tokenizer = AutoTokenizer.from_pretrained(adapter)
|
| 46 |
+
model = AutoModelForSequenceClassification.from_pretrained(base_model, num_labels=14)
|
| 47 |
+
model = PeftModel.from_pretrained(model, adapter)
|
| 48 |
+
|
| 49 |
+
# Inference
|
| 50 |
+
text = "What is the derivative of x^2?"
|
| 51 |
+
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=512)
|
| 52 |
+
with torch.no_grad():
|
| 53 |
+
outputs = model(**inputs)
|
| 54 |
+
prediction = torch.argmax(outputs.logits, dim=-1)
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## Intended Use
|
| 58 |
+
|
| 59 |
+
- Request routing in Mixture-of-Models systems
|
| 60 |
+
- Topic classification for LLM queries
|
| 61 |
+
- Academic domain classification
|
| 62 |
+
- Content categorization
|
| 63 |
+
|
| 64 |
+
## License
|
| 65 |
+
|
| 66 |
+
Apache 2.0
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "llm-semantic-router/mmbert-32k-yarn",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": [
|
| 25 |
+
"classifier",
|
| 26 |
+
"score"
|
| 27 |
+
],
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.18.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 8,
|
| 32 |
+
"rank_pattern": {},
|
| 33 |
+
"revision": null,
|
| 34 |
+
"target_modules": [
|
| 35 |
+
"mlp.Wi",
|
| 36 |
+
"attn.Wo",
|
| 37 |
+
"attn.Wqkv",
|
| 38 |
+
"mlp.Wo"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "SEQ_CLS",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6eb8ae19bccb619769280b4a86ff4b40c4eb462a0a80a1db45b12173aaeb5be
|
| 3 |
+
size 6823088
|
category_mapping.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"category_to_idx": {
|
| 3 |
+
"biology": 0,
|
| 4 |
+
"business": 1,
|
| 5 |
+
"chemistry": 2,
|
| 6 |
+
"computer science": 3,
|
| 7 |
+
"economics": 4,
|
| 8 |
+
"engineering": 5,
|
| 9 |
+
"health": 6,
|
| 10 |
+
"history": 7,
|
| 11 |
+
"law": 8,
|
| 12 |
+
"math": 9,
|
| 13 |
+
"other": 10,
|
| 14 |
+
"philosophy": 11,
|
| 15 |
+
"physics": 12,
|
| 16 |
+
"psychology": 13
|
| 17 |
+
},
|
| 18 |
+
"idx_to_category": {
|
| 19 |
+
"0": "biology",
|
| 20 |
+
"1": "business",
|
| 21 |
+
"2": "chemistry",
|
| 22 |
+
"3": "computer science",
|
| 23 |
+
"4": "economics",
|
| 24 |
+
"5": "engineering",
|
| 25 |
+
"6": "health",
|
| 26 |
+
"7": "history",
|
| 27 |
+
"8": "law",
|
| 28 |
+
"9": "math",
|
| 29 |
+
"10": "other",
|
| 30 |
+
"11": "philosophy",
|
| 31 |
+
"12": "physics",
|
| 32 |
+
"13": "psychology"
|
| 33 |
+
}
|
| 34 |
+
}
|
checkpoint-1098/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: llm-semantic-router/mmbert-32k-yarn
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:llm-semantic-router/mmbert-32k-yarn
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.18.1
|
checkpoint-1098/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "llm-semantic-router/mmbert-32k-yarn",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": [
|
| 25 |
+
"classifier",
|
| 26 |
+
"score"
|
| 27 |
+
],
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.18.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 8,
|
| 32 |
+
"rank_pattern": {},
|
| 33 |
+
"revision": null,
|
| 34 |
+
"target_modules": [
|
| 35 |
+
"mlp.Wi",
|
| 36 |
+
"attn.Wo",
|
| 37 |
+
"attn.Wqkv",
|
| 38 |
+
"mlp.Wo"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "SEQ_CLS",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
checkpoint-1098/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b78f7b3d6bdbdd75eb8f5f40f6735eb1c5d3ed87df450f56ff69ad8f5223df0b
|
| 3 |
+
size 6823088
|
checkpoint-1098/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f456389a87f15b78692580b86b26f201027c121e86594b15bf1154eb4a29e57
|
| 3 |
+
size 13755211
|
checkpoint-1098/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d9a08c008470d041b12298c1d7b680044fc182e89841a6feffc2953d21c92ee
|
| 3 |
+
size 14645
|
checkpoint-1098/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e01ef6d80aab21ad4ea2118532b1a23f0edba221efeb3bdefe1ae57656c74d0f
|
| 3 |
+
size 1465
|
checkpoint-1098/trainer_state.json
ADDED
|
@@ -0,0 +1,827 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 1098,
|
| 3 |
+
"best_metric": 0.7648080066431403,
|
| 4 |
+
"best_model_checkpoint": "lora_intent_classifier_mmbert-32k_r8/checkpoint-1098",
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1098,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.0273224043715847,
|
| 14 |
+
"grad_norm": 43.661415100097656,
|
| 15 |
+
"learning_rate": 2.454545454545455e-06,
|
| 16 |
+
"loss": 4.0334,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.0546448087431694,
|
| 21 |
+
"grad_norm": 37.4951171875,
|
| 22 |
+
"learning_rate": 5.181818181818182e-06,
|
| 23 |
+
"loss": 3.8288,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.08196721311475409,
|
| 28 |
+
"grad_norm": 20.37900733947754,
|
| 29 |
+
"learning_rate": 7.909090909090909e-06,
|
| 30 |
+
"loss": 3.6986,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.1092896174863388,
|
| 35 |
+
"grad_norm": 24.86526870727539,
|
| 36 |
+
"learning_rate": 1.0636363636363636e-05,
|
| 37 |
+
"loss": 3.4172,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.1366120218579235,
|
| 42 |
+
"grad_norm": 21.12486457824707,
|
| 43 |
+
"learning_rate": 1.3363636363636364e-05,
|
| 44 |
+
"loss": 3.3902,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.16393442622950818,
|
| 49 |
+
"grad_norm": 14.784985542297363,
|
| 50 |
+
"learning_rate": 1.6090909090909092e-05,
|
| 51 |
+
"loss": 2.9621,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.1912568306010929,
|
| 56 |
+
"grad_norm": 15.182305335998535,
|
| 57 |
+
"learning_rate": 1.881818181818182e-05,
|
| 58 |
+
"loss": 2.9566,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.2185792349726776,
|
| 63 |
+
"grad_norm": 13.884512901306152,
|
| 64 |
+
"learning_rate": 2.1545454545454544e-05,
|
| 65 |
+
"loss": 2.8581,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2459016393442623,
|
| 70 |
+
"grad_norm": 13.621200561523438,
|
| 71 |
+
"learning_rate": 2.4272727272727275e-05,
|
| 72 |
+
"loss": 2.676,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.273224043715847,
|
| 77 |
+
"grad_norm": 13.836731910705566,
|
| 78 |
+
"learning_rate": 2.7000000000000002e-05,
|
| 79 |
+
"loss": 2.6325,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3005464480874317,
|
| 84 |
+
"grad_norm": 14.511067390441895,
|
| 85 |
+
"learning_rate": 2.972727272727273e-05,
|
| 86 |
+
"loss": 2.5361,
|
| 87 |
+
"step": 110
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.32786885245901637,
|
| 91 |
+
"grad_norm": 12.94679069519043,
|
| 92 |
+
"learning_rate": 2.9997973347195592e-05,
|
| 93 |
+
"loss": 2.5242,
|
| 94 |
+
"step": 120
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.3551912568306011,
|
| 98 |
+
"grad_norm": 11.663535118103027,
|
| 99 |
+
"learning_rate": 2.999096833688549e-05,
|
| 100 |
+
"loss": 2.4672,
|
| 101 |
+
"step": 130
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.3825136612021858,
|
| 105 |
+
"grad_norm": 12.334612846374512,
|
| 106 |
+
"learning_rate": 2.9978962285005162e-05,
|
| 107 |
+
"loss": 2.3361,
|
| 108 |
+
"step": 140
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.4098360655737705,
|
| 112 |
+
"grad_norm": 10.295676231384277,
|
| 113 |
+
"learning_rate": 2.9961959196817175e-05,
|
| 114 |
+
"loss": 2.3276,
|
| 115 |
+
"step": 150
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.4371584699453552,
|
| 119 |
+
"grad_norm": 9.971988677978516,
|
| 120 |
+
"learning_rate": 2.9939964744613606e-05,
|
| 121 |
+
"loss": 2.3236,
|
| 122 |
+
"step": 160
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.4644808743169399,
|
| 126 |
+
"grad_norm": 13.546309471130371,
|
| 127 |
+
"learning_rate": 2.991298626582372e-05,
|
| 128 |
+
"loss": 2.2471,
|
| 129 |
+
"step": 170
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.4918032786885246,
|
| 133 |
+
"grad_norm": 15.009965896606445,
|
| 134 |
+
"learning_rate": 2.988103276056618e-05,
|
| 135 |
+
"loss": 2.1654,
|
| 136 |
+
"step": 180
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.5191256830601093,
|
| 140 |
+
"grad_norm": 12.90045166015625,
|
| 141 |
+
"learning_rate": 2.984411488864658e-05,
|
| 142 |
+
"loss": 2.1238,
|
| 143 |
+
"step": 190
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.546448087431694,
|
| 147 |
+
"grad_norm": 8.598944664001465,
|
| 148 |
+
"learning_rate": 2.980224496600129e-05,
|
| 149 |
+
"loss": 1.9748,
|
| 150 |
+
"step": 200
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.5737704918032787,
|
| 154 |
+
"grad_norm": 9.50810718536377,
|
| 155 |
+
"learning_rate": 2.975543696058881e-05,
|
| 156 |
+
"loss": 1.9237,
|
| 157 |
+
"step": 210
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6010928961748634,
|
| 161 |
+
"grad_norm": 11.621309280395508,
|
| 162 |
+
"learning_rate": 2.9703706487730033e-05,
|
| 163 |
+
"loss": 1.9223,
|
| 164 |
+
"step": 220
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.6284153005464481,
|
| 168 |
+
"grad_norm": 12.043228149414062,
|
| 169 |
+
"learning_rate": 2.964707080489887e-05,
|
| 170 |
+
"loss": 1.6967,
|
| 171 |
+
"step": 230
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.6557377049180327,
|
| 175 |
+
"grad_norm": 8.679780006408691,
|
| 176 |
+
"learning_rate": 2.958554880596515e-05,
|
| 177 |
+
"loss": 1.7717,
|
| 178 |
+
"step": 240
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.6830601092896175,
|
| 182 |
+
"grad_norm": 12.931756973266602,
|
| 183 |
+
"learning_rate": 2.9519161014891514e-05,
|
| 184 |
+
"loss": 1.6964,
|
| 185 |
+
"step": 250
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.7103825136612022,
|
| 189 |
+
"grad_norm": 11.386296272277832,
|
| 190 |
+
"learning_rate": 2.944792957888656e-05,
|
| 191 |
+
"loss": 1.5883,
|
| 192 |
+
"step": 260
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.7377049180327869,
|
| 196 |
+
"grad_norm": 9.392644882202148,
|
| 197 |
+
"learning_rate": 2.9371878261016468e-05,
|
| 198 |
+
"loss": 1.4422,
|
| 199 |
+
"step": 270
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.7650273224043715,
|
| 203 |
+
"grad_norm": 13.371213912963867,
|
| 204 |
+
"learning_rate": 2.9291032432277537e-05,
|
| 205 |
+
"loss": 1.4828,
|
| 206 |
+
"step": 280
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.7923497267759563,
|
| 210 |
+
"grad_norm": 9.957645416259766,
|
| 211 |
+
"learning_rate": 2.9205419063132315e-05,
|
| 212 |
+
"loss": 1.3551,
|
| 213 |
+
"step": 290
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.819672131147541,
|
| 217 |
+
"grad_norm": 15.953017234802246,
|
| 218 |
+
"learning_rate": 2.9115066714512192e-05,
|
| 219 |
+
"loss": 1.1904,
|
| 220 |
+
"step": 300
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.8469945355191257,
|
| 224 |
+
"grad_norm": 12.193412780761719,
|
| 225 |
+
"learning_rate": 2.902000552828935e-05,
|
| 226 |
+
"loss": 1.2798,
|
| 227 |
+
"step": 310
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.8743169398907104,
|
| 231 |
+
"grad_norm": 22.1932315826416,
|
| 232 |
+
"learning_rate": 2.892026721722132e-05,
|
| 233 |
+
"loss": 1.3221,
|
| 234 |
+
"step": 320
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.9016393442622951,
|
| 238 |
+
"grad_norm": 18.232664108276367,
|
| 239 |
+
"learning_rate": 2.881588505437149e-05,
|
| 240 |
+
"loss": 1.3464,
|
| 241 |
+
"step": 330
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.9289617486338798,
|
| 245 |
+
"grad_norm": 16.0748348236084,
|
| 246 |
+
"learning_rate": 2.8706893862009102e-05,
|
| 247 |
+
"loss": 1.2608,
|
| 248 |
+
"step": 340
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.9562841530054644,
|
| 252 |
+
"grad_norm": 19.062816619873047,
|
| 253 |
+
"learning_rate": 2.859332999999241e-05,
|
| 254 |
+
"loss": 1.1351,
|
| 255 |
+
"step": 350
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.9836065573770492,
|
| 259 |
+
"grad_norm": 13.451746940612793,
|
| 260 |
+
"learning_rate": 2.8475231353638888e-05,
|
| 261 |
+
"loss": 1.299,
|
| 262 |
+
"step": 360
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.0,
|
| 266 |
+
"eval_accuracy": 0.6343130553656869,
|
| 267 |
+
"eval_f1": 0.6348165517128922,
|
| 268 |
+
"eval_loss": 1.1399110555648804,
|
| 269 |
+
"eval_runtime": 4.7145,
|
| 270 |
+
"eval_samples_per_second": 310.319,
|
| 271 |
+
"eval_steps_per_second": 19.514,
|
| 272 |
+
"step": 366
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 1.010928961748634,
|
| 276 |
+
"grad_norm": 15.27212905883789,
|
| 277 |
+
"learning_rate": 2.8352637321086587e-05,
|
| 278 |
+
"loss": 0.8772,
|
| 279 |
+
"step": 370
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 1.0382513661202186,
|
| 283 |
+
"grad_norm": 14.341962814331055,
|
| 284 |
+
"learning_rate": 2.8225588800150717e-05,
|
| 285 |
+
"loss": 1.228,
|
| 286 |
+
"step": 380
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 1.0655737704918034,
|
| 290 |
+
"grad_norm": 16.302701950073242,
|
| 291 |
+
"learning_rate": 2.8094128174680033e-05,
|
| 292 |
+
"loss": 1.0407,
|
| 293 |
+
"step": 390
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 1.092896174863388,
|
| 297 |
+
"grad_norm": 19.2470645904541,
|
| 298 |
+
"learning_rate": 2.7958299300417413e-05,
|
| 299 |
+
"loss": 1.2054,
|
| 300 |
+
"step": 400
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.1202185792349726,
|
| 304 |
+
"grad_norm": 11.071598052978516,
|
| 305 |
+
"learning_rate": 2.781814749036942e-05,
|
| 306 |
+
"loss": 1.12,
|
| 307 |
+
"step": 410
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 1.1475409836065573,
|
| 311 |
+
"grad_norm": 14.336385726928711,
|
| 312 |
+
"learning_rate": 2.767371949968971e-05,
|
| 313 |
+
"loss": 0.9408,
|
| 314 |
+
"step": 420
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 1.174863387978142,
|
| 318 |
+
"grad_norm": 14.412948608398438,
|
| 319 |
+
"learning_rate": 2.7525063510081378e-05,
|
| 320 |
+
"loss": 0.8873,
|
| 321 |
+
"step": 430
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 1.2021857923497268,
|
| 325 |
+
"grad_norm": 7.640225410461426,
|
| 326 |
+
"learning_rate": 2.7372229113723316e-05,
|
| 327 |
+
"loss": 0.9188,
|
| 328 |
+
"step": 440
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"epoch": 1.2295081967213115,
|
| 332 |
+
"grad_norm": 12.760605812072754,
|
| 333 |
+
"learning_rate": 2.7215267296726124e-05,
|
| 334 |
+
"loss": 1.0622,
|
| 335 |
+
"step": 450
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"epoch": 1.2568306010928962,
|
| 339 |
+
"grad_norm": 16.584192276000977,
|
| 340 |
+
"learning_rate": 2.7054230422122936e-05,
|
| 341 |
+
"loss": 1.0441,
|
| 342 |
+
"step": 460
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"epoch": 1.2841530054644807,
|
| 346 |
+
"grad_norm": 13.030243873596191,
|
| 347 |
+
"learning_rate": 2.6889172212400925e-05,
|
| 348 |
+
"loss": 0.6724,
|
| 349 |
+
"step": 470
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"epoch": 1.3114754098360657,
|
| 353 |
+
"grad_norm": 14.200984954833984,
|
| 354 |
+
"learning_rate": 2.6720147731579297e-05,
|
| 355 |
+
"loss": 1.0364,
|
| 356 |
+
"step": 480
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 1.3387978142076502,
|
| 360 |
+
"grad_norm": 9.490402221679688,
|
| 361 |
+
"learning_rate": 2.6547213366839715e-05,
|
| 362 |
+
"loss": 0.8933,
|
| 363 |
+
"step": 490
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 1.366120218579235,
|
| 367 |
+
"grad_norm": 13.559136390686035,
|
| 368 |
+
"learning_rate": 2.637042680971534e-05,
|
| 369 |
+
"loss": 0.874,
|
| 370 |
+
"step": 500
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.3934426229508197,
|
| 374 |
+
"grad_norm": 9.073728561401367,
|
| 375 |
+
"learning_rate": 2.6189847036844737e-05,
|
| 376 |
+
"loss": 1.0375,
|
| 377 |
+
"step": 510
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"epoch": 1.4207650273224044,
|
| 381 |
+
"grad_norm": 14.217357635498047,
|
| 382 |
+
"learning_rate": 2.6005534290297032e-05,
|
| 383 |
+
"loss": 0.7856,
|
| 384 |
+
"step": 520
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"epoch": 1.4480874316939891,
|
| 388 |
+
"grad_norm": 13.805753707885742,
|
| 389 |
+
"learning_rate": 2.5817550057474958e-05,
|
| 390 |
+
"loss": 0.9337,
|
| 391 |
+
"step": 530
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"epoch": 1.4754098360655736,
|
| 395 |
+
"grad_norm": 11.231172561645508,
|
| 396 |
+
"learning_rate": 2.562595705060241e-05,
|
| 397 |
+
"loss": 0.7167,
|
| 398 |
+
"step": 540
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 1.5027322404371586,
|
| 402 |
+
"grad_norm": 17.595722198486328,
|
| 403 |
+
"learning_rate": 2.5430819185803452e-05,
|
| 404 |
+
"loss": 0.9102,
|
| 405 |
+
"step": 550
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"epoch": 1.530054644808743,
|
| 409 |
+
"grad_norm": 9.007168769836426,
|
| 410 |
+
"learning_rate": 2.523220156177963e-05,
|
| 411 |
+
"loss": 0.8971,
|
| 412 |
+
"step": 560
|
| 413 |
+
},
|
| 414 |
+
{
|
| 415 |
+
"epoch": 1.5573770491803278,
|
| 416 |
+
"grad_norm": 19.105390548706055,
|
| 417 |
+
"learning_rate": 2.5030170438092854e-05,
|
| 418 |
+
"loss": 0.7724,
|
| 419 |
+
"step": 570
|
| 420 |
+
},
|
| 421 |
+
{
|
| 422 |
+
"epoch": 1.5846994535519126,
|
| 423 |
+
"grad_norm": 20.397462844848633,
|
| 424 |
+
"learning_rate": 2.48247932130609e-05,
|
| 425 |
+
"loss": 0.9044,
|
| 426 |
+
"step": 580
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"epoch": 1.6120218579234973,
|
| 430 |
+
"grad_norm": 16.47760581970215,
|
| 431 |
+
"learning_rate": 2.461613840127315e-05,
|
| 432 |
+
"loss": 0.905,
|
| 433 |
+
"step": 590
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 1.639344262295082,
|
| 437 |
+
"grad_norm": 17.686187744140625,
|
| 438 |
+
"learning_rate": 2.4404275610733853e-05,
|
| 439 |
+
"loss": 0.8214,
|
| 440 |
+
"step": 600
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"epoch": 1.6666666666666665,
|
| 444 |
+
"grad_norm": 16.285888671875,
|
| 445 |
+
"learning_rate": 2.4189275519640622e-05,
|
| 446 |
+
"loss": 0.7419,
|
| 447 |
+
"step": 610
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"epoch": 1.6939890710382515,
|
| 451 |
+
"grad_norm": 9.757600784301758,
|
| 452 |
+
"learning_rate": 2.397120985280597e-05,
|
| 453 |
+
"loss": 0.7259,
|
| 454 |
+
"step": 620
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"epoch": 1.721311475409836,
|
| 458 |
+
"grad_norm": 8.898860931396484,
|
| 459 |
+
"learning_rate": 2.3750151357729604e-05,
|
| 460 |
+
"loss": 0.8569,
|
| 461 |
+
"step": 630
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"epoch": 1.748633879781421,
|
| 465 |
+
"grad_norm": 19.698688507080078,
|
| 466 |
+
"learning_rate": 2.3526173780329636e-05,
|
| 467 |
+
"loss": 1.0927,
|
| 468 |
+
"step": 640
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"epoch": 1.7759562841530054,
|
| 472 |
+
"grad_norm": 23.36447525024414,
|
| 473 |
+
"learning_rate": 2.329935184034066e-05,
|
| 474 |
+
"loss": 0.6988,
|
| 475 |
+
"step": 650
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 1.8032786885245902,
|
| 479 |
+
"grad_norm": 16.561899185180664,
|
| 480 |
+
"learning_rate": 2.3069761206386968e-05,
|
| 481 |
+
"loss": 0.7696,
|
| 482 |
+
"step": 660
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"epoch": 1.830601092896175,
|
| 486 |
+
"grad_norm": 18.133567810058594,
|
| 487 |
+
"learning_rate": 2.2837478470739234e-05,
|
| 488 |
+
"loss": 0.877,
|
| 489 |
+
"step": 670
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"epoch": 1.8579234972677594,
|
| 493 |
+
"grad_norm": 13.005228996276855,
|
| 494 |
+
"learning_rate": 2.2602581123763054e-05,
|
| 495 |
+
"loss": 0.658,
|
| 496 |
+
"step": 680
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 1.8852459016393444,
|
| 500 |
+
"grad_norm": 11.603018760681152,
|
| 501 |
+
"learning_rate": 2.2365147528067874e-05,
|
| 502 |
+
"loss": 0.9204,
|
| 503 |
+
"step": 690
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"epoch": 1.9125683060109289,
|
| 507 |
+
"grad_norm": 7.9754319190979,
|
| 508 |
+
"learning_rate": 2.2125256892364934e-05,
|
| 509 |
+
"loss": 0.6936,
|
| 510 |
+
"step": 700
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 1.9398907103825138,
|
| 514 |
+
"grad_norm": 13.788674354553223,
|
| 515 |
+
"learning_rate": 2.188298924504296e-05,
|
| 516 |
+
"loss": 0.7217,
|
| 517 |
+
"step": 710
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 1.9672131147540983,
|
| 521 |
+
"grad_norm": 19.109081268310547,
|
| 522 |
+
"learning_rate": 2.1638425407470398e-05,
|
| 523 |
+
"loss": 0.8034,
|
| 524 |
+
"step": 720
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 1.994535519125683,
|
| 528 |
+
"grad_norm": 12.080116271972656,
|
| 529 |
+
"learning_rate": 2.139164696703313e-05,
|
| 530 |
+
"loss": 0.786,
|
| 531 |
+
"step": 730
|
| 532 |
+
},
|
| 533 |
+
{
|
| 534 |
+
"epoch": 2.0,
|
| 535 |
+
"eval_accuracy": 0.735475051264525,
|
| 536 |
+
"eval_f1": 0.737288346724191,
|
| 537 |
+
"eval_loss": 0.7614660263061523,
|
| 538 |
+
"eval_runtime": 3.3477,
|
| 539 |
+
"eval_samples_per_second": 437.012,
|
| 540 |
+
"eval_steps_per_second": 27.481,
|
| 541 |
+
"step": 732
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 2.021857923497268,
|
| 545 |
+
"grad_norm": 11.714097023010254,
|
| 546 |
+
"learning_rate": 2.1142736249916592e-05,
|
| 547 |
+
"loss": 0.6599,
|
| 548 |
+
"step": 740
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 2.0491803278688523,
|
| 552 |
+
"grad_norm": 9.785654067993164,
|
| 553 |
+
"learning_rate": 2.0891776293641484e-05,
|
| 554 |
+
"loss": 0.7445,
|
| 555 |
+
"step": 750
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 2.0765027322404372,
|
| 559 |
+
"grad_norm": 14.79162883758545,
|
| 560 |
+
"learning_rate": 2.0638850819362142e-05,
|
| 561 |
+
"loss": 0.8216,
|
| 562 |
+
"step": 760
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 2.1038251366120218,
|
| 566 |
+
"grad_norm": 13.838127136230469,
|
| 567 |
+
"learning_rate": 2.0384044203936857e-05,
|
| 568 |
+
"loss": 0.6064,
|
| 569 |
+
"step": 770
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 2.1311475409836067,
|
| 573 |
+
"grad_norm": 12.895397186279297,
|
| 574 |
+
"learning_rate": 2.012744145177946e-05,
|
| 575 |
+
"loss": 0.5361,
|
| 576 |
+
"step": 780
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"epoch": 2.158469945355191,
|
| 580 |
+
"grad_norm": 17.18644142150879,
|
| 581 |
+
"learning_rate": 1.9869128166501516e-05,
|
| 582 |
+
"loss": 0.697,
|
| 583 |
+
"step": 790
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"epoch": 2.185792349726776,
|
| 587 |
+
"grad_norm": 18.993026733398438,
|
| 588 |
+
"learning_rate": 1.9609190522354666e-05,
|
| 589 |
+
"loss": 0.6356,
|
| 590 |
+
"step": 800
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 2.2131147540983607,
|
| 594 |
+
"grad_norm": 20.658855438232422,
|
| 595 |
+
"learning_rate": 1.9347715235482585e-05,
|
| 596 |
+
"loss": 0.6762,
|
| 597 |
+
"step": 810
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 2.240437158469945,
|
| 601 |
+
"grad_norm": 18.07002067565918,
|
| 602 |
+
"learning_rate": 1.9084789534992143e-05,
|
| 603 |
+
"loss": 0.5932,
|
| 604 |
+
"step": 820
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 2.26775956284153,
|
| 608 |
+
"grad_norm": 10.831477165222168,
|
| 609 |
+
"learning_rate": 1.8820501133853472e-05,
|
| 610 |
+
"loss": 0.6853,
|
| 611 |
+
"step": 830
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 2.2950819672131146,
|
| 615 |
+
"grad_norm": 13.586620330810547,
|
| 616 |
+
"learning_rate": 1.8554938199638613e-05,
|
| 617 |
+
"loss": 0.6649,
|
| 618 |
+
"step": 840
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"epoch": 2.3224043715846996,
|
| 622 |
+
"grad_norm": 8.403483390808105,
|
| 623 |
+
"learning_rate": 1.8288189325108462e-05,
|
| 624 |
+
"loss": 0.8898,
|
| 625 |
+
"step": 850
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 2.349726775956284,
|
| 629 |
+
"grad_norm": 14.610397338867188,
|
| 630 |
+
"learning_rate": 1.8020343498657917e-05,
|
| 631 |
+
"loss": 0.6853,
|
| 632 |
+
"step": 860
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"epoch": 2.3770491803278686,
|
| 636 |
+
"grad_norm": 17.091442108154297,
|
| 637 |
+
"learning_rate": 1.7751490074629034e-05,
|
| 638 |
+
"loss": 0.482,
|
| 639 |
+
"step": 870
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"epoch": 2.4043715846994536,
|
| 643 |
+
"grad_norm": 19.71129608154297,
|
| 644 |
+
"learning_rate": 1.7481718743502084e-05,
|
| 645 |
+
"loss": 0.7179,
|
| 646 |
+
"step": 880
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"epoch": 2.431693989071038,
|
| 650 |
+
"grad_norm": 19.681272506713867,
|
| 651 |
+
"learning_rate": 1.7211119501974487e-05,
|
| 652 |
+
"loss": 0.6611,
|
| 653 |
+
"step": 890
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"epoch": 2.459016393442623,
|
| 657 |
+
"grad_norm": 14.768360137939453,
|
| 658 |
+
"learning_rate": 1.693978262293758e-05,
|
| 659 |
+
"loss": 0.6776,
|
| 660 |
+
"step": 900
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 2.4863387978142075,
|
| 664 |
+
"grad_norm": 10.980010986328125,
|
| 665 |
+
"learning_rate": 1.6667798625361265e-05,
|
| 666 |
+
"loss": 0.5664,
|
| 667 |
+
"step": 910
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 2.5136612021857925,
|
| 671 |
+
"grad_norm": 18.203256607055664,
|
| 672 |
+
"learning_rate": 1.6395258244096532e-05,
|
| 673 |
+
"loss": 0.6044,
|
| 674 |
+
"step": 920
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"epoch": 2.540983606557377,
|
| 678 |
+
"grad_norm": 19.784507751464844,
|
| 679 |
+
"learning_rate": 1.6122252399606e-05,
|
| 680 |
+
"loss": 0.6868,
|
| 681 |
+
"step": 930
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 2.5683060109289615,
|
| 685 |
+
"grad_norm": 13.81864070892334,
|
| 686 |
+
"learning_rate": 1.584887216763251e-05,
|
| 687 |
+
"loss": 0.7107,
|
| 688 |
+
"step": 940
|
| 689 |
+
},
|
| 690 |
+
{
|
| 691 |
+
"epoch": 2.5956284153005464,
|
| 692 |
+
"grad_norm": 13.999222755432129,
|
| 693 |
+
"learning_rate": 1.5575208748815934e-05,
|
| 694 |
+
"loss": 0.628,
|
| 695 |
+
"step": 950
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"epoch": 2.6229508196721314,
|
| 699 |
+
"grad_norm": 14.687641143798828,
|
| 700 |
+
"learning_rate": 1.5301353438268298e-05,
|
| 701 |
+
"loss": 0.6494,
|
| 702 |
+
"step": 960
|
| 703 |
+
},
|
| 704 |
+
{
|
| 705 |
+
"epoch": 2.650273224043716,
|
| 706 |
+
"grad_norm": 15.607926368713379,
|
| 707 |
+
"learning_rate": 1.5027397595117417e-05,
|
| 708 |
+
"loss": 0.7266,
|
| 709 |
+
"step": 970
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"epoch": 2.6775956284153004,
|
| 713 |
+
"grad_norm": 11.575119972229004,
|
| 714 |
+
"learning_rate": 1.4753432612029134e-05,
|
| 715 |
+
"loss": 0.7242,
|
| 716 |
+
"step": 980
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"epoch": 2.7049180327868854,
|
| 720 |
+
"grad_norm": 15.441755294799805,
|
| 721 |
+
"learning_rate": 1.4479549884718434e-05,
|
| 722 |
+
"loss": 0.6714,
|
| 723 |
+
"step": 990
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"epoch": 2.73224043715847,
|
| 727 |
+
"grad_norm": 28.31683349609375,
|
| 728 |
+
"learning_rate": 1.4205840781459443e-05,
|
| 729 |
+
"loss": 0.7413,
|
| 730 |
+
"step": 1000
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 2.7595628415300544,
|
| 734 |
+
"grad_norm": 17.351163864135742,
|
| 735 |
+
"learning_rate": 1.3932396612604688e-05,
|
| 736 |
+
"loss": 0.7011,
|
| 737 |
+
"step": 1010
|
| 738 |
+
},
|
| 739 |
+
{
|
| 740 |
+
"epoch": 2.7868852459016393,
|
| 741 |
+
"grad_norm": 12.234743118286133,
|
| 742 |
+
"learning_rate": 1.3659308600123619e-05,
|
| 743 |
+
"loss": 0.5344,
|
| 744 |
+
"step": 1020
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"epoch": 2.8142076502732243,
|
| 748 |
+
"grad_norm": 11.195818901062012,
|
| 749 |
+
"learning_rate": 1.3386667847170615e-05,
|
| 750 |
+
"loss": 0.4516,
|
| 751 |
+
"step": 1030
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"epoch": 2.841530054644809,
|
| 755 |
+
"grad_norm": 15.766973495483398,
|
| 756 |
+
"learning_rate": 1.3114565307692664e-05,
|
| 757 |
+
"loss": 0.8362,
|
| 758 |
+
"step": 1040
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"epoch": 2.8688524590163933,
|
| 762 |
+
"grad_norm": 15.880483627319336,
|
| 763 |
+
"learning_rate": 1.2843091756086758e-05,
|
| 764 |
+
"loss": 0.5643,
|
| 765 |
+
"step": 1050
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"epoch": 2.8961748633879782,
|
| 769 |
+
"grad_norm": 14.66220760345459,
|
| 770 |
+
"learning_rate": 1.2572337756917266e-05,
|
| 771 |
+
"loss": 0.7147,
|
| 772 |
+
"step": 1060
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"epoch": 2.9234972677595628,
|
| 776 |
+
"grad_norm": 15.787104606628418,
|
| 777 |
+
"learning_rate": 1.2302393634703241e-05,
|
| 778 |
+
"loss": 0.6991,
|
| 779 |
+
"step": 1070
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"epoch": 2.9508196721311473,
|
| 783 |
+
"grad_norm": 14.712467193603516,
|
| 784 |
+
"learning_rate": 1.2033349443785834e-05,
|
| 785 |
+
"loss": 0.6871,
|
| 786 |
+
"step": 1080
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"epoch": 2.978142076502732,
|
| 790 |
+
"grad_norm": 14.292945861816406,
|
| 791 |
+
"learning_rate": 1.1765294938285847e-05,
|
| 792 |
+
"loss": 0.6269,
|
| 793 |
+
"step": 1090
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 3.0,
|
| 797 |
+
"eval_accuracy": 0.7641831852358169,
|
| 798 |
+
"eval_f1": 0.7648080066431403,
|
| 799 |
+
"eval_loss": 0.6964150071144104,
|
| 800 |
+
"eval_runtime": 3.406,
|
| 801 |
+
"eval_samples_per_second": 429.533,
|
| 802 |
+
"eval_steps_per_second": 27.011,
|
| 803 |
+
"step": 1098
|
| 804 |
+
}
|
| 805 |
+
],
|
| 806 |
+
"logging_steps": 10,
|
| 807 |
+
"max_steps": 1830,
|
| 808 |
+
"num_input_tokens_seen": 0,
|
| 809 |
+
"num_train_epochs": 5,
|
| 810 |
+
"save_steps": 500,
|
| 811 |
+
"stateful_callbacks": {
|
| 812 |
+
"TrainerControl": {
|
| 813 |
+
"args": {
|
| 814 |
+
"should_epoch_stop": false,
|
| 815 |
+
"should_evaluate": false,
|
| 816 |
+
"should_log": false,
|
| 817 |
+
"should_save": true,
|
| 818 |
+
"should_training_stop": false
|
| 819 |
+
},
|
| 820 |
+
"attributes": {}
|
| 821 |
+
}
|
| 822 |
+
},
|
| 823 |
+
"total_flos": 6074546622971904.0,
|
| 824 |
+
"train_batch_size": 16,
|
| 825 |
+
"trial_name": null,
|
| 826 |
+
"trial_params": null
|
| 827 |
+
}
|
checkpoint-1098/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de007bea22dcb88578703fe7cbafb05e81ad70f6e86a48f9973a14db3a420500
|
| 3 |
+
size 5841
|
checkpoint-1464/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: llm-semantic-router/mmbert-32k-yarn
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:llm-semantic-router/mmbert-32k-yarn
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.18.1
|
checkpoint-1464/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "llm-semantic-router/mmbert-32k-yarn",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": [
|
| 25 |
+
"classifier",
|
| 26 |
+
"score"
|
| 27 |
+
],
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.18.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 8,
|
| 32 |
+
"rank_pattern": {},
|
| 33 |
+
"revision": null,
|
| 34 |
+
"target_modules": [
|
| 35 |
+
"mlp.Wi",
|
| 36 |
+
"attn.Wo",
|
| 37 |
+
"attn.Wqkv",
|
| 38 |
+
"mlp.Wo"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "SEQ_CLS",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
checkpoint-1464/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6eb8ae19bccb619769280b4a86ff4b40c4eb462a0a80a1db45b12173aaeb5be
|
| 3 |
+
size 6823088
|
checkpoint-1464/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1941c4e926d98f126f8bb8ac14bbbc32dca8c41daf653fa7b75dad6d8c797d93
|
| 3 |
+
size 13755211
|
checkpoint-1464/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a34b3067525d4b12ef00a30793a1e935bfa5639b8a6798d2ee67973c536fac34
|
| 3 |
+
size 14645
|
checkpoint-1464/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eef8133f630ffc3cd5eae9d23a4d15de24066ca6a76d9b7f945b4c7b128ffb20
|
| 3 |
+
size 1465
|
checkpoint-1464/trainer_state.json
ADDED
|
@@ -0,0 +1,1096 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 1464,
|
| 3 |
+
"best_metric": 0.7724177824450331,
|
| 4 |
+
"best_model_checkpoint": "lora_intent_classifier_mmbert-32k_r8/checkpoint-1464",
|
| 5 |
+
"epoch": 4.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1464,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.0273224043715847,
|
| 14 |
+
"grad_norm": 43.661415100097656,
|
| 15 |
+
"learning_rate": 2.454545454545455e-06,
|
| 16 |
+
"loss": 4.0334,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.0546448087431694,
|
| 21 |
+
"grad_norm": 37.4951171875,
|
| 22 |
+
"learning_rate": 5.181818181818182e-06,
|
| 23 |
+
"loss": 3.8288,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.08196721311475409,
|
| 28 |
+
"grad_norm": 20.37900733947754,
|
| 29 |
+
"learning_rate": 7.909090909090909e-06,
|
| 30 |
+
"loss": 3.6986,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.1092896174863388,
|
| 35 |
+
"grad_norm": 24.86526870727539,
|
| 36 |
+
"learning_rate": 1.0636363636363636e-05,
|
| 37 |
+
"loss": 3.4172,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.1366120218579235,
|
| 42 |
+
"grad_norm": 21.12486457824707,
|
| 43 |
+
"learning_rate": 1.3363636363636364e-05,
|
| 44 |
+
"loss": 3.3902,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.16393442622950818,
|
| 49 |
+
"grad_norm": 14.784985542297363,
|
| 50 |
+
"learning_rate": 1.6090909090909092e-05,
|
| 51 |
+
"loss": 2.9621,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.1912568306010929,
|
| 56 |
+
"grad_norm": 15.182305335998535,
|
| 57 |
+
"learning_rate": 1.881818181818182e-05,
|
| 58 |
+
"loss": 2.9566,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.2185792349726776,
|
| 63 |
+
"grad_norm": 13.884512901306152,
|
| 64 |
+
"learning_rate": 2.1545454545454544e-05,
|
| 65 |
+
"loss": 2.8581,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2459016393442623,
|
| 70 |
+
"grad_norm": 13.621200561523438,
|
| 71 |
+
"learning_rate": 2.4272727272727275e-05,
|
| 72 |
+
"loss": 2.676,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.273224043715847,
|
| 77 |
+
"grad_norm": 13.836731910705566,
|
| 78 |
+
"learning_rate": 2.7000000000000002e-05,
|
| 79 |
+
"loss": 2.6325,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3005464480874317,
|
| 84 |
+
"grad_norm": 14.511067390441895,
|
| 85 |
+
"learning_rate": 2.972727272727273e-05,
|
| 86 |
+
"loss": 2.5361,
|
| 87 |
+
"step": 110
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.32786885245901637,
|
| 91 |
+
"grad_norm": 12.94679069519043,
|
| 92 |
+
"learning_rate": 2.9997973347195592e-05,
|
| 93 |
+
"loss": 2.5242,
|
| 94 |
+
"step": 120
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.3551912568306011,
|
| 98 |
+
"grad_norm": 11.663535118103027,
|
| 99 |
+
"learning_rate": 2.999096833688549e-05,
|
| 100 |
+
"loss": 2.4672,
|
| 101 |
+
"step": 130
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.3825136612021858,
|
| 105 |
+
"grad_norm": 12.334612846374512,
|
| 106 |
+
"learning_rate": 2.9978962285005162e-05,
|
| 107 |
+
"loss": 2.3361,
|
| 108 |
+
"step": 140
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.4098360655737705,
|
| 112 |
+
"grad_norm": 10.295676231384277,
|
| 113 |
+
"learning_rate": 2.9961959196817175e-05,
|
| 114 |
+
"loss": 2.3276,
|
| 115 |
+
"step": 150
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.4371584699453552,
|
| 119 |
+
"grad_norm": 9.971988677978516,
|
| 120 |
+
"learning_rate": 2.9939964744613606e-05,
|
| 121 |
+
"loss": 2.3236,
|
| 122 |
+
"step": 160
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.4644808743169399,
|
| 126 |
+
"grad_norm": 13.546309471130371,
|
| 127 |
+
"learning_rate": 2.991298626582372e-05,
|
| 128 |
+
"loss": 2.2471,
|
| 129 |
+
"step": 170
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.4918032786885246,
|
| 133 |
+
"grad_norm": 15.009965896606445,
|
| 134 |
+
"learning_rate": 2.988103276056618e-05,
|
| 135 |
+
"loss": 2.1654,
|
| 136 |
+
"step": 180
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.5191256830601093,
|
| 140 |
+
"grad_norm": 12.90045166015625,
|
| 141 |
+
"learning_rate": 2.984411488864658e-05,
|
| 142 |
+
"loss": 2.1238,
|
| 143 |
+
"step": 190
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.546448087431694,
|
| 147 |
+
"grad_norm": 8.598944664001465,
|
| 148 |
+
"learning_rate": 2.980224496600129e-05,
|
| 149 |
+
"loss": 1.9748,
|
| 150 |
+
"step": 200
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.5737704918032787,
|
| 154 |
+
"grad_norm": 9.50810718536377,
|
| 155 |
+
"learning_rate": 2.975543696058881e-05,
|
| 156 |
+
"loss": 1.9237,
|
| 157 |
+
"step": 210
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6010928961748634,
|
| 161 |
+
"grad_norm": 11.621309280395508,
|
| 162 |
+
"learning_rate": 2.9703706487730033e-05,
|
| 163 |
+
"loss": 1.9223,
|
| 164 |
+
"step": 220
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.6284153005464481,
|
| 168 |
+
"grad_norm": 12.043228149414062,
|
| 169 |
+
"learning_rate": 2.964707080489887e-05,
|
| 170 |
+
"loss": 1.6967,
|
| 171 |
+
"step": 230
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.6557377049180327,
|
| 175 |
+
"grad_norm": 8.679780006408691,
|
| 176 |
+
"learning_rate": 2.958554880596515e-05,
|
| 177 |
+
"loss": 1.7717,
|
| 178 |
+
"step": 240
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.6830601092896175,
|
| 182 |
+
"grad_norm": 12.931756973266602,
|
| 183 |
+
"learning_rate": 2.9519161014891514e-05,
|
| 184 |
+
"loss": 1.6964,
|
| 185 |
+
"step": 250
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.7103825136612022,
|
| 189 |
+
"grad_norm": 11.386296272277832,
|
| 190 |
+
"learning_rate": 2.944792957888656e-05,
|
| 191 |
+
"loss": 1.5883,
|
| 192 |
+
"step": 260
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.7377049180327869,
|
| 196 |
+
"grad_norm": 9.392644882202148,
|
| 197 |
+
"learning_rate": 2.9371878261016468e-05,
|
| 198 |
+
"loss": 1.4422,
|
| 199 |
+
"step": 270
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.7650273224043715,
|
| 203 |
+
"grad_norm": 13.371213912963867,
|
| 204 |
+
"learning_rate": 2.9291032432277537e-05,
|
| 205 |
+
"loss": 1.4828,
|
| 206 |
+
"step": 280
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.7923497267759563,
|
| 210 |
+
"grad_norm": 9.957645416259766,
|
| 211 |
+
"learning_rate": 2.9205419063132315e-05,
|
| 212 |
+
"loss": 1.3551,
|
| 213 |
+
"step": 290
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.819672131147541,
|
| 217 |
+
"grad_norm": 15.953017234802246,
|
| 218 |
+
"learning_rate": 2.9115066714512192e-05,
|
| 219 |
+
"loss": 1.1904,
|
| 220 |
+
"step": 300
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.8469945355191257,
|
| 224 |
+
"grad_norm": 12.193412780761719,
|
| 225 |
+
"learning_rate": 2.902000552828935e-05,
|
| 226 |
+
"loss": 1.2798,
|
| 227 |
+
"step": 310
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.8743169398907104,
|
| 231 |
+
"grad_norm": 22.1932315826416,
|
| 232 |
+
"learning_rate": 2.892026721722132e-05,
|
| 233 |
+
"loss": 1.3221,
|
| 234 |
+
"step": 320
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.9016393442622951,
|
| 238 |
+
"grad_norm": 18.232664108276367,
|
| 239 |
+
"learning_rate": 2.881588505437149e-05,
|
| 240 |
+
"loss": 1.3464,
|
| 241 |
+
"step": 330
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.9289617486338798,
|
| 245 |
+
"grad_norm": 16.0748348236084,
|
| 246 |
+
"learning_rate": 2.8706893862009102e-05,
|
| 247 |
+
"loss": 1.2608,
|
| 248 |
+
"step": 340
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.9562841530054644,
|
| 252 |
+
"grad_norm": 19.062816619873047,
|
| 253 |
+
"learning_rate": 2.859332999999241e-05,
|
| 254 |
+
"loss": 1.1351,
|
| 255 |
+
"step": 350
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.9836065573770492,
|
| 259 |
+
"grad_norm": 13.451746940612793,
|
| 260 |
+
"learning_rate": 2.8475231353638888e-05,
|
| 261 |
+
"loss": 1.299,
|
| 262 |
+
"step": 360
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.0,
|
| 266 |
+
"eval_accuracy": 0.6343130553656869,
|
| 267 |
+
"eval_f1": 0.6348165517128922,
|
| 268 |
+
"eval_loss": 1.1399110555648804,
|
| 269 |
+
"eval_runtime": 4.7145,
|
| 270 |
+
"eval_samples_per_second": 310.319,
|
| 271 |
+
"eval_steps_per_second": 19.514,
|
| 272 |
+
"step": 366
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 1.010928961748634,
|
| 276 |
+
"grad_norm": 15.27212905883789,
|
| 277 |
+
"learning_rate": 2.8352637321086587e-05,
|
| 278 |
+
"loss": 0.8772,
|
| 279 |
+
"step": 370
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 1.0382513661202186,
|
| 283 |
+
"grad_norm": 14.341962814331055,
|
| 284 |
+
"learning_rate": 2.8225588800150717e-05,
|
| 285 |
+
"loss": 1.228,
|
| 286 |
+
"step": 380
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 1.0655737704918034,
|
| 290 |
+
"grad_norm": 16.302701950073242,
|
| 291 |
+
"learning_rate": 2.8094128174680033e-05,
|
| 292 |
+
"loss": 1.0407,
|
| 293 |
+
"step": 390
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 1.092896174863388,
|
| 297 |
+
"grad_norm": 19.2470645904541,
|
| 298 |
+
"learning_rate": 2.7958299300417413e-05,
|
| 299 |
+
"loss": 1.2054,
|
| 300 |
+
"step": 400
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.1202185792349726,
|
| 304 |
+
"grad_norm": 11.071598052978516,
|
| 305 |
+
"learning_rate": 2.781814749036942e-05,
|
| 306 |
+
"loss": 1.12,
|
| 307 |
+
"step": 410
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 1.1475409836065573,
|
| 311 |
+
"grad_norm": 14.336385726928711,
|
| 312 |
+
"learning_rate": 2.767371949968971e-05,
|
| 313 |
+
"loss": 0.9408,
|
| 314 |
+
"step": 420
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 1.174863387978142,
|
| 318 |
+
"grad_norm": 14.412948608398438,
|
| 319 |
+
"learning_rate": 2.7525063510081378e-05,
|
| 320 |
+
"loss": 0.8873,
|
| 321 |
+
"step": 430
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 1.2021857923497268,
|
| 325 |
+
"grad_norm": 7.640225410461426,
|
| 326 |
+
"learning_rate": 2.7372229113723316e-05,
|
| 327 |
+
"loss": 0.9188,
|
| 328 |
+
"step": 440
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"epoch": 1.2295081967213115,
|
| 332 |
+
"grad_norm": 12.760605812072754,
|
| 333 |
+
"learning_rate": 2.7215267296726124e-05,
|
| 334 |
+
"loss": 1.0622,
|
| 335 |
+
"step": 450
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"epoch": 1.2568306010928962,
|
| 339 |
+
"grad_norm": 16.584192276000977,
|
| 340 |
+
"learning_rate": 2.7054230422122936e-05,
|
| 341 |
+
"loss": 1.0441,
|
| 342 |
+
"step": 460
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"epoch": 1.2841530054644807,
|
| 346 |
+
"grad_norm": 13.030243873596191,
|
| 347 |
+
"learning_rate": 2.6889172212400925e-05,
|
| 348 |
+
"loss": 0.6724,
|
| 349 |
+
"step": 470
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"epoch": 1.3114754098360657,
|
| 353 |
+
"grad_norm": 14.200984954833984,
|
| 354 |
+
"learning_rate": 2.6720147731579297e-05,
|
| 355 |
+
"loss": 1.0364,
|
| 356 |
+
"step": 480
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 1.3387978142076502,
|
| 360 |
+
"grad_norm": 9.490402221679688,
|
| 361 |
+
"learning_rate": 2.6547213366839715e-05,
|
| 362 |
+
"loss": 0.8933,
|
| 363 |
+
"step": 490
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 1.366120218579235,
|
| 367 |
+
"grad_norm": 13.559136390686035,
|
| 368 |
+
"learning_rate": 2.637042680971534e-05,
|
| 369 |
+
"loss": 0.874,
|
| 370 |
+
"step": 500
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.3934426229508197,
|
| 374 |
+
"grad_norm": 9.073728561401367,
|
| 375 |
+
"learning_rate": 2.6189847036844737e-05,
|
| 376 |
+
"loss": 1.0375,
|
| 377 |
+
"step": 510
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"epoch": 1.4207650273224044,
|
| 381 |
+
"grad_norm": 14.217357635498047,
|
| 382 |
+
"learning_rate": 2.6005534290297032e-05,
|
| 383 |
+
"loss": 0.7856,
|
| 384 |
+
"step": 520
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"epoch": 1.4480874316939891,
|
| 388 |
+
"grad_norm": 13.805753707885742,
|
| 389 |
+
"learning_rate": 2.5817550057474958e-05,
|
| 390 |
+
"loss": 0.9337,
|
| 391 |
+
"step": 530
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"epoch": 1.4754098360655736,
|
| 395 |
+
"grad_norm": 11.231172561645508,
|
| 396 |
+
"learning_rate": 2.562595705060241e-05,
|
| 397 |
+
"loss": 0.7167,
|
| 398 |
+
"step": 540
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 1.5027322404371586,
|
| 402 |
+
"grad_norm": 17.595722198486328,
|
| 403 |
+
"learning_rate": 2.5430819185803452e-05,
|
| 404 |
+
"loss": 0.9102,
|
| 405 |
+
"step": 550
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"epoch": 1.530054644808743,
|
| 409 |
+
"grad_norm": 9.007168769836426,
|
| 410 |
+
"learning_rate": 2.523220156177963e-05,
|
| 411 |
+
"loss": 0.8971,
|
| 412 |
+
"step": 560
|
| 413 |
+
},
|
| 414 |
+
{
|
| 415 |
+
"epoch": 1.5573770491803278,
|
| 416 |
+
"grad_norm": 19.105390548706055,
|
| 417 |
+
"learning_rate": 2.5030170438092854e-05,
|
| 418 |
+
"loss": 0.7724,
|
| 419 |
+
"step": 570
|
| 420 |
+
},
|
| 421 |
+
{
|
| 422 |
+
"epoch": 1.5846994535519126,
|
| 423 |
+
"grad_norm": 20.397462844848633,
|
| 424 |
+
"learning_rate": 2.48247932130609e-05,
|
| 425 |
+
"loss": 0.9044,
|
| 426 |
+
"step": 580
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"epoch": 1.6120218579234973,
|
| 430 |
+
"grad_norm": 16.47760581970215,
|
| 431 |
+
"learning_rate": 2.461613840127315e-05,
|
| 432 |
+
"loss": 0.905,
|
| 433 |
+
"step": 590
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 1.639344262295082,
|
| 437 |
+
"grad_norm": 17.686187744140625,
|
| 438 |
+
"learning_rate": 2.4404275610733853e-05,
|
| 439 |
+
"loss": 0.8214,
|
| 440 |
+
"step": 600
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"epoch": 1.6666666666666665,
|
| 444 |
+
"grad_norm": 16.285888671875,
|
| 445 |
+
"learning_rate": 2.4189275519640622e-05,
|
| 446 |
+
"loss": 0.7419,
|
| 447 |
+
"step": 610
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"epoch": 1.6939890710382515,
|
| 451 |
+
"grad_norm": 9.757600784301758,
|
| 452 |
+
"learning_rate": 2.397120985280597e-05,
|
| 453 |
+
"loss": 0.7259,
|
| 454 |
+
"step": 620
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"epoch": 1.721311475409836,
|
| 458 |
+
"grad_norm": 8.898860931396484,
|
| 459 |
+
"learning_rate": 2.3750151357729604e-05,
|
| 460 |
+
"loss": 0.8569,
|
| 461 |
+
"step": 630
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"epoch": 1.748633879781421,
|
| 465 |
+
"grad_norm": 19.698688507080078,
|
| 466 |
+
"learning_rate": 2.3526173780329636e-05,
|
| 467 |
+
"loss": 1.0927,
|
| 468 |
+
"step": 640
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"epoch": 1.7759562841530054,
|
| 472 |
+
"grad_norm": 23.36447525024414,
|
| 473 |
+
"learning_rate": 2.329935184034066e-05,
|
| 474 |
+
"loss": 0.6988,
|
| 475 |
+
"step": 650
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 1.8032786885245902,
|
| 479 |
+
"grad_norm": 16.561899185180664,
|
| 480 |
+
"learning_rate": 2.3069761206386968e-05,
|
| 481 |
+
"loss": 0.7696,
|
| 482 |
+
"step": 660
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"epoch": 1.830601092896175,
|
| 486 |
+
"grad_norm": 18.133567810058594,
|
| 487 |
+
"learning_rate": 2.2837478470739234e-05,
|
| 488 |
+
"loss": 0.877,
|
| 489 |
+
"step": 670
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"epoch": 1.8579234972677594,
|
| 493 |
+
"grad_norm": 13.005228996276855,
|
| 494 |
+
"learning_rate": 2.2602581123763054e-05,
|
| 495 |
+
"loss": 0.658,
|
| 496 |
+
"step": 680
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 1.8852459016393444,
|
| 500 |
+
"grad_norm": 11.603018760681152,
|
| 501 |
+
"learning_rate": 2.2365147528067874e-05,
|
| 502 |
+
"loss": 0.9204,
|
| 503 |
+
"step": 690
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"epoch": 1.9125683060109289,
|
| 507 |
+
"grad_norm": 7.9754319190979,
|
| 508 |
+
"learning_rate": 2.2125256892364934e-05,
|
| 509 |
+
"loss": 0.6936,
|
| 510 |
+
"step": 700
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 1.9398907103825138,
|
| 514 |
+
"grad_norm": 13.788674354553223,
|
| 515 |
+
"learning_rate": 2.188298924504296e-05,
|
| 516 |
+
"loss": 0.7217,
|
| 517 |
+
"step": 710
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 1.9672131147540983,
|
| 521 |
+
"grad_norm": 19.109081268310547,
|
| 522 |
+
"learning_rate": 2.1638425407470398e-05,
|
| 523 |
+
"loss": 0.8034,
|
| 524 |
+
"step": 720
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 1.994535519125683,
|
| 528 |
+
"grad_norm": 12.080116271972656,
|
| 529 |
+
"learning_rate": 2.139164696703313e-05,
|
| 530 |
+
"loss": 0.786,
|
| 531 |
+
"step": 730
|
| 532 |
+
},
|
| 533 |
+
{
|
| 534 |
+
"epoch": 2.0,
|
| 535 |
+
"eval_accuracy": 0.735475051264525,
|
| 536 |
+
"eval_f1": 0.737288346724191,
|
| 537 |
+
"eval_loss": 0.7614660263061523,
|
| 538 |
+
"eval_runtime": 3.3477,
|
| 539 |
+
"eval_samples_per_second": 437.012,
|
| 540 |
+
"eval_steps_per_second": 27.481,
|
| 541 |
+
"step": 732
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 2.021857923497268,
|
| 545 |
+
"grad_norm": 11.714097023010254,
|
| 546 |
+
"learning_rate": 2.1142736249916592e-05,
|
| 547 |
+
"loss": 0.6599,
|
| 548 |
+
"step": 740
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 2.0491803278688523,
|
| 552 |
+
"grad_norm": 9.785654067993164,
|
| 553 |
+
"learning_rate": 2.0891776293641484e-05,
|
| 554 |
+
"loss": 0.7445,
|
| 555 |
+
"step": 750
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 2.0765027322404372,
|
| 559 |
+
"grad_norm": 14.79162883758545,
|
| 560 |
+
"learning_rate": 2.0638850819362142e-05,
|
| 561 |
+
"loss": 0.8216,
|
| 562 |
+
"step": 760
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 2.1038251366120218,
|
| 566 |
+
"grad_norm": 13.838127136230469,
|
| 567 |
+
"learning_rate": 2.0384044203936857e-05,
|
| 568 |
+
"loss": 0.6064,
|
| 569 |
+
"step": 770
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 2.1311475409836067,
|
| 573 |
+
"grad_norm": 12.895397186279297,
|
| 574 |
+
"learning_rate": 2.012744145177946e-05,
|
| 575 |
+
"loss": 0.5361,
|
| 576 |
+
"step": 780
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"epoch": 2.158469945355191,
|
| 580 |
+
"grad_norm": 17.18644142150879,
|
| 581 |
+
"learning_rate": 1.9869128166501516e-05,
|
| 582 |
+
"loss": 0.697,
|
| 583 |
+
"step": 790
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"epoch": 2.185792349726776,
|
| 587 |
+
"grad_norm": 18.993026733398438,
|
| 588 |
+
"learning_rate": 1.9609190522354666e-05,
|
| 589 |
+
"loss": 0.6356,
|
| 590 |
+
"step": 800
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 2.2131147540983607,
|
| 594 |
+
"grad_norm": 20.658855438232422,
|
| 595 |
+
"learning_rate": 1.9347715235482585e-05,
|
| 596 |
+
"loss": 0.6762,
|
| 597 |
+
"step": 810
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 2.240437158469945,
|
| 601 |
+
"grad_norm": 18.07002067565918,
|
| 602 |
+
"learning_rate": 1.9084789534992143e-05,
|
| 603 |
+
"loss": 0.5932,
|
| 604 |
+
"step": 820
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 2.26775956284153,
|
| 608 |
+
"grad_norm": 10.831477165222168,
|
| 609 |
+
"learning_rate": 1.8820501133853472e-05,
|
| 610 |
+
"loss": 0.6853,
|
| 611 |
+
"step": 830
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 2.2950819672131146,
|
| 615 |
+
"grad_norm": 13.586620330810547,
|
| 616 |
+
"learning_rate": 1.8554938199638613e-05,
|
| 617 |
+
"loss": 0.6649,
|
| 618 |
+
"step": 840
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"epoch": 2.3224043715846996,
|
| 622 |
+
"grad_norm": 8.403483390808105,
|
| 623 |
+
"learning_rate": 1.8288189325108462e-05,
|
| 624 |
+
"loss": 0.8898,
|
| 625 |
+
"step": 850
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 2.349726775956284,
|
| 629 |
+
"grad_norm": 14.610397338867188,
|
| 630 |
+
"learning_rate": 1.8020343498657917e-05,
|
| 631 |
+
"loss": 0.6853,
|
| 632 |
+
"step": 860
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"epoch": 2.3770491803278686,
|
| 636 |
+
"grad_norm": 17.091442108154297,
|
| 637 |
+
"learning_rate": 1.7751490074629034e-05,
|
| 638 |
+
"loss": 0.482,
|
| 639 |
+
"step": 870
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"epoch": 2.4043715846994536,
|
| 643 |
+
"grad_norm": 19.71129608154297,
|
| 644 |
+
"learning_rate": 1.7481718743502084e-05,
|
| 645 |
+
"loss": 0.7179,
|
| 646 |
+
"step": 880
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"epoch": 2.431693989071038,
|
| 650 |
+
"grad_norm": 19.681272506713867,
|
| 651 |
+
"learning_rate": 1.7211119501974487e-05,
|
| 652 |
+
"loss": 0.6611,
|
| 653 |
+
"step": 890
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"epoch": 2.459016393442623,
|
| 657 |
+
"grad_norm": 14.768360137939453,
|
| 658 |
+
"learning_rate": 1.693978262293758e-05,
|
| 659 |
+
"loss": 0.6776,
|
| 660 |
+
"step": 900
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 2.4863387978142075,
|
| 664 |
+
"grad_norm": 10.980010986328125,
|
| 665 |
+
"learning_rate": 1.6667798625361265e-05,
|
| 666 |
+
"loss": 0.5664,
|
| 667 |
+
"step": 910
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 2.5136612021857925,
|
| 671 |
+
"grad_norm": 18.203256607055664,
|
| 672 |
+
"learning_rate": 1.6395258244096532e-05,
|
| 673 |
+
"loss": 0.6044,
|
| 674 |
+
"step": 920
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"epoch": 2.540983606557377,
|
| 678 |
+
"grad_norm": 19.784507751464844,
|
| 679 |
+
"learning_rate": 1.6122252399606e-05,
|
| 680 |
+
"loss": 0.6868,
|
| 681 |
+
"step": 930
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 2.5683060109289615,
|
| 685 |
+
"grad_norm": 13.81864070892334,
|
| 686 |
+
"learning_rate": 1.584887216763251e-05,
|
| 687 |
+
"loss": 0.7107,
|
| 688 |
+
"step": 940
|
| 689 |
+
},
|
| 690 |
+
{
|
| 691 |
+
"epoch": 2.5956284153005464,
|
| 692 |
+
"grad_norm": 13.999222755432129,
|
| 693 |
+
"learning_rate": 1.5575208748815934e-05,
|
| 694 |
+
"loss": 0.628,
|
| 695 |
+
"step": 950
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"epoch": 2.6229508196721314,
|
| 699 |
+
"grad_norm": 14.687641143798828,
|
| 700 |
+
"learning_rate": 1.5301353438268298e-05,
|
| 701 |
+
"loss": 0.6494,
|
| 702 |
+
"step": 960
|
| 703 |
+
},
|
| 704 |
+
{
|
| 705 |
+
"epoch": 2.650273224043716,
|
| 706 |
+
"grad_norm": 15.607926368713379,
|
| 707 |
+
"learning_rate": 1.5027397595117417e-05,
|
| 708 |
+
"loss": 0.7266,
|
| 709 |
+
"step": 970
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"epoch": 2.6775956284153004,
|
| 713 |
+
"grad_norm": 11.575119972229004,
|
| 714 |
+
"learning_rate": 1.4753432612029134e-05,
|
| 715 |
+
"loss": 0.7242,
|
| 716 |
+
"step": 980
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"epoch": 2.7049180327868854,
|
| 720 |
+
"grad_norm": 15.441755294799805,
|
| 721 |
+
"learning_rate": 1.4479549884718434e-05,
|
| 722 |
+
"loss": 0.6714,
|
| 723 |
+
"step": 990
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"epoch": 2.73224043715847,
|
| 727 |
+
"grad_norm": 28.31683349609375,
|
| 728 |
+
"learning_rate": 1.4205840781459443e-05,
|
| 729 |
+
"loss": 0.7413,
|
| 730 |
+
"step": 1000
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 2.7595628415300544,
|
| 734 |
+
"grad_norm": 17.351163864135742,
|
| 735 |
+
"learning_rate": 1.3932396612604688e-05,
|
| 736 |
+
"loss": 0.7011,
|
| 737 |
+
"step": 1010
|
| 738 |
+
},
|
| 739 |
+
{
|
| 740 |
+
"epoch": 2.7868852459016393,
|
| 741 |
+
"grad_norm": 12.234743118286133,
|
| 742 |
+
"learning_rate": 1.3659308600123619e-05,
|
| 743 |
+
"loss": 0.5344,
|
| 744 |
+
"step": 1020
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"epoch": 2.8142076502732243,
|
| 748 |
+
"grad_norm": 11.195818901062012,
|
| 749 |
+
"learning_rate": 1.3386667847170615e-05,
|
| 750 |
+
"loss": 0.4516,
|
| 751 |
+
"step": 1030
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"epoch": 2.841530054644809,
|
| 755 |
+
"grad_norm": 15.766973495483398,
|
| 756 |
+
"learning_rate": 1.3114565307692664e-05,
|
| 757 |
+
"loss": 0.8362,
|
| 758 |
+
"step": 1040
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"epoch": 2.8688524590163933,
|
| 762 |
+
"grad_norm": 15.880483627319336,
|
| 763 |
+
"learning_rate": 1.2843091756086758e-05,
|
| 764 |
+
"loss": 0.5643,
|
| 765 |
+
"step": 1050
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"epoch": 2.8961748633879782,
|
| 769 |
+
"grad_norm": 14.66220760345459,
|
| 770 |
+
"learning_rate": 1.2572337756917266e-05,
|
| 771 |
+
"loss": 0.7147,
|
| 772 |
+
"step": 1060
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"epoch": 2.9234972677595628,
|
| 776 |
+
"grad_norm": 15.787104606628418,
|
| 777 |
+
"learning_rate": 1.2302393634703241e-05,
|
| 778 |
+
"loss": 0.6991,
|
| 779 |
+
"step": 1070
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"epoch": 2.9508196721311473,
|
| 783 |
+
"grad_norm": 14.712467193603516,
|
| 784 |
+
"learning_rate": 1.2033349443785834e-05,
|
| 785 |
+
"loss": 0.6871,
|
| 786 |
+
"step": 1080
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"epoch": 2.978142076502732,
|
| 790 |
+
"grad_norm": 14.292945861816406,
|
| 791 |
+
"learning_rate": 1.1765294938285847e-05,
|
| 792 |
+
"loss": 0.6269,
|
| 793 |
+
"step": 1090
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 3.0,
|
| 797 |
+
"eval_accuracy": 0.7641831852358169,
|
| 798 |
+
"eval_f1": 0.7648080066431403,
|
| 799 |
+
"eval_loss": 0.6964150071144104,
|
| 800 |
+
"eval_runtime": 3.406,
|
| 801 |
+
"eval_samples_per_second": 429.533,
|
| 802 |
+
"eval_steps_per_second": 27.011,
|
| 803 |
+
"step": 1098
|
| 804 |
+
},
|
| 805 |
+
{
|
| 806 |
+
"epoch": 3.0054644808743167,
|
| 807 |
+
"grad_norm": 17.285518646240234,
|
| 808 |
+
"learning_rate": 1.1498319542161424e-05,
|
| 809 |
+
"loss": 0.5571,
|
| 810 |
+
"step": 1100
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"epoch": 3.0327868852459017,
|
| 814 |
+
"grad_norm": 17.627635955810547,
|
| 815 |
+
"learning_rate": 1.1232512319375888e-05,
|
| 816 |
+
"loss": 0.6456,
|
| 817 |
+
"step": 1110
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"epoch": 3.060109289617486,
|
| 821 |
+
"grad_norm": 17.636045455932617,
|
| 822 |
+
"learning_rate": 1.09679619441857e-05,
|
| 823 |
+
"loss": 0.5691,
|
| 824 |
+
"step": 1120
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"epoch": 3.087431693989071,
|
| 828 |
+
"grad_norm": 14.666460037231445,
|
| 829 |
+
"learning_rate": 1.0704756671558387e-05,
|
| 830 |
+
"loss": 0.5591,
|
| 831 |
+
"step": 1130
|
| 832 |
+
},
|
| 833 |
+
{
|
| 834 |
+
"epoch": 3.1147540983606556,
|
| 835 |
+
"grad_norm": 15.583251953125,
|
| 836 |
+
"learning_rate": 1.0442984307730369e-05,
|
| 837 |
+
"loss": 0.5124,
|
| 838 |
+
"step": 1140
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 3.1420765027322406,
|
| 842 |
+
"grad_norm": 14.595309257507324,
|
| 843 |
+
"learning_rate": 1.0182732180914468e-05,
|
| 844 |
+
"loss": 0.5669,
|
| 845 |
+
"step": 1150
|
| 846 |
+
},
|
| 847 |
+
{
|
| 848 |
+
"epoch": 3.169398907103825,
|
| 849 |
+
"grad_norm": 11.129724502563477,
|
| 850 |
+
"learning_rate": 9.92408711216692e-06,
|
| 851 |
+
"loss": 0.44,
|
| 852 |
+
"step": 1160
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"epoch": 3.19672131147541,
|
| 856 |
+
"grad_norm": 16.795949935913086,
|
| 857 |
+
"learning_rate": 9.667135386423537e-06,
|
| 858 |
+
"loss": 0.6301,
|
| 859 |
+
"step": 1170
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"epoch": 3.2240437158469946,
|
| 863 |
+
"grad_norm": 8.846739768981934,
|
| 864 |
+
"learning_rate": 9.411962723714754e-06,
|
| 865 |
+
"loss": 0.488,
|
| 866 |
+
"step": 1180
|
| 867 |
+
},
|
| 868 |
+
{
|
| 869 |
+
"epoch": 3.251366120218579,
|
| 870 |
+
"grad_norm": 12.987939834594727,
|
| 871 |
+
"learning_rate": 9.15865425056909e-06,
|
| 872 |
+
"loss": 0.6578,
|
| 873 |
+
"step": 1190
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"epoch": 3.278688524590164,
|
| 877 |
+
"grad_norm": 21.930444717407227,
|
| 878 |
+
"learning_rate": 8.907294471614664e-06,
|
| 879 |
+
"loss": 0.5771,
|
| 880 |
+
"step": 1200
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"epoch": 3.3060109289617485,
|
| 884 |
+
"grad_norm": 17.547632217407227,
|
| 885 |
+
"learning_rate": 8.657967241388102e-06,
|
| 886 |
+
"loss": 0.5306,
|
| 887 |
+
"step": 1210
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 3.3333333333333335,
|
| 891 |
+
"grad_norm": 12.96604061126709,
|
| 892 |
+
"learning_rate": 8.4107557363604e-06,
|
| 893 |
+
"loss": 0.5945,
|
| 894 |
+
"step": 1220
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"epoch": 3.360655737704918,
|
| 898 |
+
"grad_norm": 14.509190559387207,
|
| 899 |
+
"learning_rate": 8.165742427188914e-06,
|
| 900 |
+
"loss": 0.4458,
|
| 901 |
+
"step": 1230
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 3.387978142076503,
|
| 905 |
+
"grad_norm": 16.828969955444336,
|
| 906 |
+
"learning_rate": 7.92300905120489e-06,
|
| 907 |
+
"loss": 0.6484,
|
| 908 |
+
"step": 1240
|
| 909 |
+
},
|
| 910 |
+
{
|
| 911 |
+
"epoch": 3.4153005464480874,
|
| 912 |
+
"grad_norm": 25.763072967529297,
|
| 913 |
+
"learning_rate": 7.682636585145537e-06,
|
| 914 |
+
"loss": 0.5723,
|
| 915 |
+
"step": 1250
|
| 916 |
+
},
|
| 917 |
+
{
|
| 918 |
+
"epoch": 3.442622950819672,
|
| 919 |
+
"grad_norm": 15.343353271484375,
|
| 920 |
+
"learning_rate": 7.444705218139958e-06,
|
| 921 |
+
"loss": 0.5327,
|
| 922 |
+
"step": 1260
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"epoch": 3.469945355191257,
|
| 926 |
+
"grad_norm": 20.751506805419922,
|
| 927 |
+
"learning_rate": 7.209294324957706e-06,
|
| 928 |
+
"loss": 0.5658,
|
| 929 |
+
"step": 1270
|
| 930 |
+
},
|
| 931 |
+
{
|
| 932 |
+
"epoch": 3.4972677595628414,
|
| 933 |
+
"grad_norm": 13.689117431640625,
|
| 934 |
+
"learning_rate": 6.9764824395291054e-06,
|
| 935 |
+
"loss": 0.4626,
|
| 936 |
+
"step": 1280
|
| 937 |
+
},
|
| 938 |
+
{
|
| 939 |
+
"epoch": 3.5245901639344264,
|
| 940 |
+
"grad_norm": 17.023637771606445,
|
| 941 |
+
"learning_rate": 6.746347228746051e-06,
|
| 942 |
+
"loss": 0.5745,
|
| 943 |
+
"step": 1290
|
| 944 |
+
},
|
| 945 |
+
{
|
| 946 |
+
"epoch": 3.551912568306011,
|
| 947 |
+
"grad_norm": 17.415525436401367,
|
| 948 |
+
"learning_rate": 6.518965466552022e-06,
|
| 949 |
+
"loss": 0.4396,
|
| 950 |
+
"step": 1300
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"epoch": 3.579234972677596,
|
| 954 |
+
"grad_norm": 18.61026382446289,
|
| 955 |
+
"learning_rate": 6.294413008330042e-06,
|
| 956 |
+
"loss": 0.407,
|
| 957 |
+
"step": 1310
|
| 958 |
+
},
|
| 959 |
+
{
|
| 960 |
+
"epoch": 3.6065573770491803,
|
| 961 |
+
"grad_norm": 16.19002342224121,
|
| 962 |
+
"learning_rate": 6.072764765597031e-06,
|
| 963 |
+
"loss": 0.5887,
|
| 964 |
+
"step": 1320
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 3.633879781420765,
|
| 968 |
+
"grad_norm": 10.970612525939941,
|
| 969 |
+
"learning_rate": 5.854094681013058e-06,
|
| 970 |
+
"loss": 0.4665,
|
| 971 |
+
"step": 1330
|
| 972 |
+
},
|
| 973 |
+
{
|
| 974 |
+
"epoch": 3.66120218579235,
|
| 975 |
+
"grad_norm": 11.12162971496582,
|
| 976 |
+
"learning_rate": 5.638475703713811e-06,
|
| 977 |
+
"loss": 0.5143,
|
| 978 |
+
"step": 1340
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"epoch": 3.6885245901639343,
|
| 982 |
+
"grad_norm": 15.478825569152832,
|
| 983 |
+
"learning_rate": 5.425979764974475e-06,
|
| 984 |
+
"loss": 0.7372,
|
| 985 |
+
"step": 1350
|
| 986 |
+
},
|
| 987 |
+
{
|
| 988 |
+
"epoch": 3.7158469945355193,
|
| 989 |
+
"grad_norm": 19.27631378173828,
|
| 990 |
+
"learning_rate": 5.216677754213213e-06,
|
| 991 |
+
"loss": 0.6368,
|
| 992 |
+
"step": 1360
|
| 993 |
+
},
|
| 994 |
+
{
|
| 995 |
+
"epoch": 3.7431693989071038,
|
| 996 |
+
"grad_norm": 13.134615898132324,
|
| 997 |
+
"learning_rate": 5.010639495342205e-06,
|
| 998 |
+
"loss": 0.4509,
|
| 999 |
+
"step": 1370
|
| 1000 |
+
},
|
| 1001 |
+
{
|
| 1002 |
+
"epoch": 3.7704918032786887,
|
| 1003 |
+
"grad_norm": 22.705202102661133,
|
| 1004 |
+
"learning_rate": 4.807933723474116e-06,
|
| 1005 |
+
"loss": 0.587,
|
| 1006 |
+
"step": 1380
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"epoch": 3.797814207650273,
|
| 1010 |
+
"grad_norm": 18.598493576049805,
|
| 1011 |
+
"learning_rate": 4.608628061991834e-06,
|
| 1012 |
+
"loss": 0.5485,
|
| 1013 |
+
"step": 1390
|
| 1014 |
+
},
|
| 1015 |
+
{
|
| 1016 |
+
"epoch": 3.8251366120218577,
|
| 1017 |
+
"grad_norm": 14.910867691040039,
|
| 1018 |
+
"learning_rate": 4.412788999989047e-06,
|
| 1019 |
+
"loss": 0.6812,
|
| 1020 |
+
"step": 1400
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"epoch": 3.8524590163934427,
|
| 1024 |
+
"grad_norm": 18.004486083984375,
|
| 1025 |
+
"learning_rate": 4.2204818700892436e-06,
|
| 1026 |
+
"loss": 0.7287,
|
| 1027 |
+
"step": 1410
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 3.879781420765027,
|
| 1031 |
+
"grad_norm": 14.421548843383789,
|
| 1032 |
+
"learning_rate": 4.031770826650533e-06,
|
| 1033 |
+
"loss": 0.5072,
|
| 1034 |
+
"step": 1420
|
| 1035 |
+
},
|
| 1036 |
+
{
|
| 1037 |
+
"epoch": 3.907103825136612,
|
| 1038 |
+
"grad_norm": 14.291264533996582,
|
| 1039 |
+
"learning_rate": 3.846718824363467e-06,
|
| 1040 |
+
"loss": 0.6538,
|
| 1041 |
+
"step": 1430
|
| 1042 |
+
},
|
| 1043 |
+
{
|
| 1044 |
+
"epoch": 3.9344262295081966,
|
| 1045 |
+
"grad_norm": 21.369617462158203,
|
| 1046 |
+
"learning_rate": 3.6653875972491906e-06,
|
| 1047 |
+
"loss": 0.7196,
|
| 1048 |
+
"step": 1440
|
| 1049 |
+
},
|
| 1050 |
+
{
|
| 1051 |
+
"epoch": 3.9617486338797816,
|
| 1052 |
+
"grad_norm": 13.688413619995117,
|
| 1053 |
+
"learning_rate": 3.487837638064699e-06,
|
| 1054 |
+
"loss": 0.632,
|
| 1055 |
+
"step": 1450
|
| 1056 |
+
},
|
| 1057 |
+
{
|
| 1058 |
+
"epoch": 3.989071038251366,
|
| 1059 |
+
"grad_norm": 18.494495391845703,
|
| 1060 |
+
"learning_rate": 3.3141281781222494e-06,
|
| 1061 |
+
"loss": 0.6043,
|
| 1062 |
+
"step": 1460
|
| 1063 |
+
},
|
| 1064 |
+
{
|
| 1065 |
+
"epoch": 4.0,
|
| 1066 |
+
"eval_accuracy": 0.7710184552289815,
|
| 1067 |
+
"eval_f1": 0.7724177824450331,
|
| 1068 |
+
"eval_loss": 0.6853169798851013,
|
| 1069 |
+
"eval_runtime": 3.4328,
|
| 1070 |
+
"eval_samples_per_second": 426.186,
|
| 1071 |
+
"eval_steps_per_second": 26.8,
|
| 1072 |
+
"step": 1464
|
| 1073 |
+
}
|
| 1074 |
+
],
|
| 1075 |
+
"logging_steps": 10,
|
| 1076 |
+
"max_steps": 1830,
|
| 1077 |
+
"num_input_tokens_seen": 0,
|
| 1078 |
+
"num_train_epochs": 5,
|
| 1079 |
+
"save_steps": 500,
|
| 1080 |
+
"stateful_callbacks": {
|
| 1081 |
+
"TrainerControl": {
|
| 1082 |
+
"args": {
|
| 1083 |
+
"should_epoch_stop": false,
|
| 1084 |
+
"should_evaluate": false,
|
| 1085 |
+
"should_log": false,
|
| 1086 |
+
"should_save": true,
|
| 1087 |
+
"should_training_stop": false
|
| 1088 |
+
},
|
| 1089 |
+
"attributes": {}
|
| 1090 |
+
}
|
| 1091 |
+
},
|
| 1092 |
+
"total_flos": 8099395497295872.0,
|
| 1093 |
+
"train_batch_size": 16,
|
| 1094 |
+
"trial_name": null,
|
| 1095 |
+
"trial_params": null
|
| 1096 |
+
}
|
checkpoint-1464/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de007bea22dcb88578703fe7cbafb05e81ad70f6e86a48f9973a14db3a420500
|
| 3 |
+
size 5841
|
checkpoint-1830/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: llm-semantic-router/mmbert-32k-yarn
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:llm-semantic-router/mmbert-32k-yarn
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.18.1
|
checkpoint-1830/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "llm-semantic-router/mmbert-32k-yarn",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": [
|
| 25 |
+
"classifier",
|
| 26 |
+
"score"
|
| 27 |
+
],
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.18.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 8,
|
| 32 |
+
"rank_pattern": {},
|
| 33 |
+
"revision": null,
|
| 34 |
+
"target_modules": [
|
| 35 |
+
"mlp.Wi",
|
| 36 |
+
"attn.Wo",
|
| 37 |
+
"attn.Wqkv",
|
| 38 |
+
"mlp.Wo"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "SEQ_CLS",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
checkpoint-1830/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29beaec5695b0761c92028e99cfd8b0c2461427916bc27ab817bf275ff17b6e7
|
| 3 |
+
size 6823088
|
checkpoint-1830/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11fbb3e80255bf290a9f488cd20b89d58e0fdb9943a3b0157c18336373d92b78
|
| 3 |
+
size 13755211
|
checkpoint-1830/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:413aff5a292a9d019684571c5c09291a7e15e3a037cef8b67c1713683bd44c2e
|
| 3 |
+
size 14645
|
checkpoint-1830/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ae56661a73f24ada0d42933346e98f0ba09e1a82bf6c8506f5c679dd4ff4df7
|
| 3 |
+
size 1465
|
checkpoint-1830/trainer_state.json
ADDED
|
@@ -0,0 +1,1365 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 1464,
|
| 3 |
+
"best_metric": 0.7724177824450331,
|
| 4 |
+
"best_model_checkpoint": "lora_intent_classifier_mmbert-32k_r8/checkpoint-1464",
|
| 5 |
+
"epoch": 5.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1830,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.0273224043715847,
|
| 14 |
+
"grad_norm": 43.661415100097656,
|
| 15 |
+
"learning_rate": 2.454545454545455e-06,
|
| 16 |
+
"loss": 4.0334,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.0546448087431694,
|
| 21 |
+
"grad_norm": 37.4951171875,
|
| 22 |
+
"learning_rate": 5.181818181818182e-06,
|
| 23 |
+
"loss": 3.8288,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.08196721311475409,
|
| 28 |
+
"grad_norm": 20.37900733947754,
|
| 29 |
+
"learning_rate": 7.909090909090909e-06,
|
| 30 |
+
"loss": 3.6986,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.1092896174863388,
|
| 35 |
+
"grad_norm": 24.86526870727539,
|
| 36 |
+
"learning_rate": 1.0636363636363636e-05,
|
| 37 |
+
"loss": 3.4172,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.1366120218579235,
|
| 42 |
+
"grad_norm": 21.12486457824707,
|
| 43 |
+
"learning_rate": 1.3363636363636364e-05,
|
| 44 |
+
"loss": 3.3902,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.16393442622950818,
|
| 49 |
+
"grad_norm": 14.784985542297363,
|
| 50 |
+
"learning_rate": 1.6090909090909092e-05,
|
| 51 |
+
"loss": 2.9621,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.1912568306010929,
|
| 56 |
+
"grad_norm": 15.182305335998535,
|
| 57 |
+
"learning_rate": 1.881818181818182e-05,
|
| 58 |
+
"loss": 2.9566,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.2185792349726776,
|
| 63 |
+
"grad_norm": 13.884512901306152,
|
| 64 |
+
"learning_rate": 2.1545454545454544e-05,
|
| 65 |
+
"loss": 2.8581,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2459016393442623,
|
| 70 |
+
"grad_norm": 13.621200561523438,
|
| 71 |
+
"learning_rate": 2.4272727272727275e-05,
|
| 72 |
+
"loss": 2.676,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.273224043715847,
|
| 77 |
+
"grad_norm": 13.836731910705566,
|
| 78 |
+
"learning_rate": 2.7000000000000002e-05,
|
| 79 |
+
"loss": 2.6325,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3005464480874317,
|
| 84 |
+
"grad_norm": 14.511067390441895,
|
| 85 |
+
"learning_rate": 2.972727272727273e-05,
|
| 86 |
+
"loss": 2.5361,
|
| 87 |
+
"step": 110
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.32786885245901637,
|
| 91 |
+
"grad_norm": 12.94679069519043,
|
| 92 |
+
"learning_rate": 2.9997973347195592e-05,
|
| 93 |
+
"loss": 2.5242,
|
| 94 |
+
"step": 120
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.3551912568306011,
|
| 98 |
+
"grad_norm": 11.663535118103027,
|
| 99 |
+
"learning_rate": 2.999096833688549e-05,
|
| 100 |
+
"loss": 2.4672,
|
| 101 |
+
"step": 130
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.3825136612021858,
|
| 105 |
+
"grad_norm": 12.334612846374512,
|
| 106 |
+
"learning_rate": 2.9978962285005162e-05,
|
| 107 |
+
"loss": 2.3361,
|
| 108 |
+
"step": 140
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.4098360655737705,
|
| 112 |
+
"grad_norm": 10.295676231384277,
|
| 113 |
+
"learning_rate": 2.9961959196817175e-05,
|
| 114 |
+
"loss": 2.3276,
|
| 115 |
+
"step": 150
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.4371584699453552,
|
| 119 |
+
"grad_norm": 9.971988677978516,
|
| 120 |
+
"learning_rate": 2.9939964744613606e-05,
|
| 121 |
+
"loss": 2.3236,
|
| 122 |
+
"step": 160
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.4644808743169399,
|
| 126 |
+
"grad_norm": 13.546309471130371,
|
| 127 |
+
"learning_rate": 2.991298626582372e-05,
|
| 128 |
+
"loss": 2.2471,
|
| 129 |
+
"step": 170
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.4918032786885246,
|
| 133 |
+
"grad_norm": 15.009965896606445,
|
| 134 |
+
"learning_rate": 2.988103276056618e-05,
|
| 135 |
+
"loss": 2.1654,
|
| 136 |
+
"step": 180
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.5191256830601093,
|
| 140 |
+
"grad_norm": 12.90045166015625,
|
| 141 |
+
"learning_rate": 2.984411488864658e-05,
|
| 142 |
+
"loss": 2.1238,
|
| 143 |
+
"step": 190
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.546448087431694,
|
| 147 |
+
"grad_norm": 8.598944664001465,
|
| 148 |
+
"learning_rate": 2.980224496600129e-05,
|
| 149 |
+
"loss": 1.9748,
|
| 150 |
+
"step": 200
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.5737704918032787,
|
| 154 |
+
"grad_norm": 9.50810718536377,
|
| 155 |
+
"learning_rate": 2.975543696058881e-05,
|
| 156 |
+
"loss": 1.9237,
|
| 157 |
+
"step": 210
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6010928961748634,
|
| 161 |
+
"grad_norm": 11.621309280395508,
|
| 162 |
+
"learning_rate": 2.9703706487730033e-05,
|
| 163 |
+
"loss": 1.9223,
|
| 164 |
+
"step": 220
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.6284153005464481,
|
| 168 |
+
"grad_norm": 12.043228149414062,
|
| 169 |
+
"learning_rate": 2.964707080489887e-05,
|
| 170 |
+
"loss": 1.6967,
|
| 171 |
+
"step": 230
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.6557377049180327,
|
| 175 |
+
"grad_norm": 8.679780006408691,
|
| 176 |
+
"learning_rate": 2.958554880596515e-05,
|
| 177 |
+
"loss": 1.7717,
|
| 178 |
+
"step": 240
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.6830601092896175,
|
| 182 |
+
"grad_norm": 12.931756973266602,
|
| 183 |
+
"learning_rate": 2.9519161014891514e-05,
|
| 184 |
+
"loss": 1.6964,
|
| 185 |
+
"step": 250
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.7103825136612022,
|
| 189 |
+
"grad_norm": 11.386296272277832,
|
| 190 |
+
"learning_rate": 2.944792957888656e-05,
|
| 191 |
+
"loss": 1.5883,
|
| 192 |
+
"step": 260
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.7377049180327869,
|
| 196 |
+
"grad_norm": 9.392644882202148,
|
| 197 |
+
"learning_rate": 2.9371878261016468e-05,
|
| 198 |
+
"loss": 1.4422,
|
| 199 |
+
"step": 270
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.7650273224043715,
|
| 203 |
+
"grad_norm": 13.371213912963867,
|
| 204 |
+
"learning_rate": 2.9291032432277537e-05,
|
| 205 |
+
"loss": 1.4828,
|
| 206 |
+
"step": 280
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.7923497267759563,
|
| 210 |
+
"grad_norm": 9.957645416259766,
|
| 211 |
+
"learning_rate": 2.9205419063132315e-05,
|
| 212 |
+
"loss": 1.3551,
|
| 213 |
+
"step": 290
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.819672131147541,
|
| 217 |
+
"grad_norm": 15.953017234802246,
|
| 218 |
+
"learning_rate": 2.9115066714512192e-05,
|
| 219 |
+
"loss": 1.1904,
|
| 220 |
+
"step": 300
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.8469945355191257,
|
| 224 |
+
"grad_norm": 12.193412780761719,
|
| 225 |
+
"learning_rate": 2.902000552828935e-05,
|
| 226 |
+
"loss": 1.2798,
|
| 227 |
+
"step": 310
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.8743169398907104,
|
| 231 |
+
"grad_norm": 22.1932315826416,
|
| 232 |
+
"learning_rate": 2.892026721722132e-05,
|
| 233 |
+
"loss": 1.3221,
|
| 234 |
+
"step": 320
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.9016393442622951,
|
| 238 |
+
"grad_norm": 18.232664108276367,
|
| 239 |
+
"learning_rate": 2.881588505437149e-05,
|
| 240 |
+
"loss": 1.3464,
|
| 241 |
+
"step": 330
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.9289617486338798,
|
| 245 |
+
"grad_norm": 16.0748348236084,
|
| 246 |
+
"learning_rate": 2.8706893862009102e-05,
|
| 247 |
+
"loss": 1.2608,
|
| 248 |
+
"step": 340
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.9562841530054644,
|
| 252 |
+
"grad_norm": 19.062816619873047,
|
| 253 |
+
"learning_rate": 2.859332999999241e-05,
|
| 254 |
+
"loss": 1.1351,
|
| 255 |
+
"step": 350
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.9836065573770492,
|
| 259 |
+
"grad_norm": 13.451746940612793,
|
| 260 |
+
"learning_rate": 2.8475231353638888e-05,
|
| 261 |
+
"loss": 1.299,
|
| 262 |
+
"step": 360
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.0,
|
| 266 |
+
"eval_accuracy": 0.6343130553656869,
|
| 267 |
+
"eval_f1": 0.6348165517128922,
|
| 268 |
+
"eval_loss": 1.1399110555648804,
|
| 269 |
+
"eval_runtime": 4.7145,
|
| 270 |
+
"eval_samples_per_second": 310.319,
|
| 271 |
+
"eval_steps_per_second": 19.514,
|
| 272 |
+
"step": 366
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 1.010928961748634,
|
| 276 |
+
"grad_norm": 15.27212905883789,
|
| 277 |
+
"learning_rate": 2.8352637321086587e-05,
|
| 278 |
+
"loss": 0.8772,
|
| 279 |
+
"step": 370
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 1.0382513661202186,
|
| 283 |
+
"grad_norm": 14.341962814331055,
|
| 284 |
+
"learning_rate": 2.8225588800150717e-05,
|
| 285 |
+
"loss": 1.228,
|
| 286 |
+
"step": 380
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 1.0655737704918034,
|
| 290 |
+
"grad_norm": 16.302701950073242,
|
| 291 |
+
"learning_rate": 2.8094128174680033e-05,
|
| 292 |
+
"loss": 1.0407,
|
| 293 |
+
"step": 390
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 1.092896174863388,
|
| 297 |
+
"grad_norm": 19.2470645904541,
|
| 298 |
+
"learning_rate": 2.7958299300417413e-05,
|
| 299 |
+
"loss": 1.2054,
|
| 300 |
+
"step": 400
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.1202185792349726,
|
| 304 |
+
"grad_norm": 11.071598052978516,
|
| 305 |
+
"learning_rate": 2.781814749036942e-05,
|
| 306 |
+
"loss": 1.12,
|
| 307 |
+
"step": 410
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 1.1475409836065573,
|
| 311 |
+
"grad_norm": 14.336385726928711,
|
| 312 |
+
"learning_rate": 2.767371949968971e-05,
|
| 313 |
+
"loss": 0.9408,
|
| 314 |
+
"step": 420
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 1.174863387978142,
|
| 318 |
+
"grad_norm": 14.412948608398438,
|
| 319 |
+
"learning_rate": 2.7525063510081378e-05,
|
| 320 |
+
"loss": 0.8873,
|
| 321 |
+
"step": 430
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 1.2021857923497268,
|
| 325 |
+
"grad_norm": 7.640225410461426,
|
| 326 |
+
"learning_rate": 2.7372229113723316e-05,
|
| 327 |
+
"loss": 0.9188,
|
| 328 |
+
"step": 440
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"epoch": 1.2295081967213115,
|
| 332 |
+
"grad_norm": 12.760605812072754,
|
| 333 |
+
"learning_rate": 2.7215267296726124e-05,
|
| 334 |
+
"loss": 1.0622,
|
| 335 |
+
"step": 450
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"epoch": 1.2568306010928962,
|
| 339 |
+
"grad_norm": 16.584192276000977,
|
| 340 |
+
"learning_rate": 2.7054230422122936e-05,
|
| 341 |
+
"loss": 1.0441,
|
| 342 |
+
"step": 460
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"epoch": 1.2841530054644807,
|
| 346 |
+
"grad_norm": 13.030243873596191,
|
| 347 |
+
"learning_rate": 2.6889172212400925e-05,
|
| 348 |
+
"loss": 0.6724,
|
| 349 |
+
"step": 470
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"epoch": 1.3114754098360657,
|
| 353 |
+
"grad_norm": 14.200984954833984,
|
| 354 |
+
"learning_rate": 2.6720147731579297e-05,
|
| 355 |
+
"loss": 1.0364,
|
| 356 |
+
"step": 480
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 1.3387978142076502,
|
| 360 |
+
"grad_norm": 9.490402221679688,
|
| 361 |
+
"learning_rate": 2.6547213366839715e-05,
|
| 362 |
+
"loss": 0.8933,
|
| 363 |
+
"step": 490
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 1.366120218579235,
|
| 367 |
+
"grad_norm": 13.559136390686035,
|
| 368 |
+
"learning_rate": 2.637042680971534e-05,
|
| 369 |
+
"loss": 0.874,
|
| 370 |
+
"step": 500
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.3934426229508197,
|
| 374 |
+
"grad_norm": 9.073728561401367,
|
| 375 |
+
"learning_rate": 2.6189847036844737e-05,
|
| 376 |
+
"loss": 1.0375,
|
| 377 |
+
"step": 510
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"epoch": 1.4207650273224044,
|
| 381 |
+
"grad_norm": 14.217357635498047,
|
| 382 |
+
"learning_rate": 2.6005534290297032e-05,
|
| 383 |
+
"loss": 0.7856,
|
| 384 |
+
"step": 520
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"epoch": 1.4480874316939891,
|
| 388 |
+
"grad_norm": 13.805753707885742,
|
| 389 |
+
"learning_rate": 2.5817550057474958e-05,
|
| 390 |
+
"loss": 0.9337,
|
| 391 |
+
"step": 530
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"epoch": 1.4754098360655736,
|
| 395 |
+
"grad_norm": 11.231172561645508,
|
| 396 |
+
"learning_rate": 2.562595705060241e-05,
|
| 397 |
+
"loss": 0.7167,
|
| 398 |
+
"step": 540
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 1.5027322404371586,
|
| 402 |
+
"grad_norm": 17.595722198486328,
|
| 403 |
+
"learning_rate": 2.5430819185803452e-05,
|
| 404 |
+
"loss": 0.9102,
|
| 405 |
+
"step": 550
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"epoch": 1.530054644808743,
|
| 409 |
+
"grad_norm": 9.007168769836426,
|
| 410 |
+
"learning_rate": 2.523220156177963e-05,
|
| 411 |
+
"loss": 0.8971,
|
| 412 |
+
"step": 560
|
| 413 |
+
},
|
| 414 |
+
{
|
| 415 |
+
"epoch": 1.5573770491803278,
|
| 416 |
+
"grad_norm": 19.105390548706055,
|
| 417 |
+
"learning_rate": 2.5030170438092854e-05,
|
| 418 |
+
"loss": 0.7724,
|
| 419 |
+
"step": 570
|
| 420 |
+
},
|
| 421 |
+
{
|
| 422 |
+
"epoch": 1.5846994535519126,
|
| 423 |
+
"grad_norm": 20.397462844848633,
|
| 424 |
+
"learning_rate": 2.48247932130609e-05,
|
| 425 |
+
"loss": 0.9044,
|
| 426 |
+
"step": 580
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"epoch": 1.6120218579234973,
|
| 430 |
+
"grad_norm": 16.47760581970215,
|
| 431 |
+
"learning_rate": 2.461613840127315e-05,
|
| 432 |
+
"loss": 0.905,
|
| 433 |
+
"step": 590
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 1.639344262295082,
|
| 437 |
+
"grad_norm": 17.686187744140625,
|
| 438 |
+
"learning_rate": 2.4404275610733853e-05,
|
| 439 |
+
"loss": 0.8214,
|
| 440 |
+
"step": 600
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"epoch": 1.6666666666666665,
|
| 444 |
+
"grad_norm": 16.285888671875,
|
| 445 |
+
"learning_rate": 2.4189275519640622e-05,
|
| 446 |
+
"loss": 0.7419,
|
| 447 |
+
"step": 610
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"epoch": 1.6939890710382515,
|
| 451 |
+
"grad_norm": 9.757600784301758,
|
| 452 |
+
"learning_rate": 2.397120985280597e-05,
|
| 453 |
+
"loss": 0.7259,
|
| 454 |
+
"step": 620
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"epoch": 1.721311475409836,
|
| 458 |
+
"grad_norm": 8.898860931396484,
|
| 459 |
+
"learning_rate": 2.3750151357729604e-05,
|
| 460 |
+
"loss": 0.8569,
|
| 461 |
+
"step": 630
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"epoch": 1.748633879781421,
|
| 465 |
+
"grad_norm": 19.698688507080078,
|
| 466 |
+
"learning_rate": 2.3526173780329636e-05,
|
| 467 |
+
"loss": 1.0927,
|
| 468 |
+
"step": 640
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"epoch": 1.7759562841530054,
|
| 472 |
+
"grad_norm": 23.36447525024414,
|
| 473 |
+
"learning_rate": 2.329935184034066e-05,
|
| 474 |
+
"loss": 0.6988,
|
| 475 |
+
"step": 650
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 1.8032786885245902,
|
| 479 |
+
"grad_norm": 16.561899185180664,
|
| 480 |
+
"learning_rate": 2.3069761206386968e-05,
|
| 481 |
+
"loss": 0.7696,
|
| 482 |
+
"step": 660
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"epoch": 1.830601092896175,
|
| 486 |
+
"grad_norm": 18.133567810058594,
|
| 487 |
+
"learning_rate": 2.2837478470739234e-05,
|
| 488 |
+
"loss": 0.877,
|
| 489 |
+
"step": 670
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"epoch": 1.8579234972677594,
|
| 493 |
+
"grad_norm": 13.005228996276855,
|
| 494 |
+
"learning_rate": 2.2602581123763054e-05,
|
| 495 |
+
"loss": 0.658,
|
| 496 |
+
"step": 680
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 1.8852459016393444,
|
| 500 |
+
"grad_norm": 11.603018760681152,
|
| 501 |
+
"learning_rate": 2.2365147528067874e-05,
|
| 502 |
+
"loss": 0.9204,
|
| 503 |
+
"step": 690
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"epoch": 1.9125683060109289,
|
| 507 |
+
"grad_norm": 7.9754319190979,
|
| 508 |
+
"learning_rate": 2.2125256892364934e-05,
|
| 509 |
+
"loss": 0.6936,
|
| 510 |
+
"step": 700
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 1.9398907103825138,
|
| 514 |
+
"grad_norm": 13.788674354553223,
|
| 515 |
+
"learning_rate": 2.188298924504296e-05,
|
| 516 |
+
"loss": 0.7217,
|
| 517 |
+
"step": 710
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 1.9672131147540983,
|
| 521 |
+
"grad_norm": 19.109081268310547,
|
| 522 |
+
"learning_rate": 2.1638425407470398e-05,
|
| 523 |
+
"loss": 0.8034,
|
| 524 |
+
"step": 720
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 1.994535519125683,
|
| 528 |
+
"grad_norm": 12.080116271972656,
|
| 529 |
+
"learning_rate": 2.139164696703313e-05,
|
| 530 |
+
"loss": 0.786,
|
| 531 |
+
"step": 730
|
| 532 |
+
},
|
| 533 |
+
{
|
| 534 |
+
"epoch": 2.0,
|
| 535 |
+
"eval_accuracy": 0.735475051264525,
|
| 536 |
+
"eval_f1": 0.737288346724191,
|
| 537 |
+
"eval_loss": 0.7614660263061523,
|
| 538 |
+
"eval_runtime": 3.3477,
|
| 539 |
+
"eval_samples_per_second": 437.012,
|
| 540 |
+
"eval_steps_per_second": 27.481,
|
| 541 |
+
"step": 732
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 2.021857923497268,
|
| 545 |
+
"grad_norm": 11.714097023010254,
|
| 546 |
+
"learning_rate": 2.1142736249916592e-05,
|
| 547 |
+
"loss": 0.6599,
|
| 548 |
+
"step": 740
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 2.0491803278688523,
|
| 552 |
+
"grad_norm": 9.785654067993164,
|
| 553 |
+
"learning_rate": 2.0891776293641484e-05,
|
| 554 |
+
"loss": 0.7445,
|
| 555 |
+
"step": 750
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 2.0765027322404372,
|
| 559 |
+
"grad_norm": 14.79162883758545,
|
| 560 |
+
"learning_rate": 2.0638850819362142e-05,
|
| 561 |
+
"loss": 0.8216,
|
| 562 |
+
"step": 760
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 2.1038251366120218,
|
| 566 |
+
"grad_norm": 13.838127136230469,
|
| 567 |
+
"learning_rate": 2.0384044203936857e-05,
|
| 568 |
+
"loss": 0.6064,
|
| 569 |
+
"step": 770
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 2.1311475409836067,
|
| 573 |
+
"grad_norm": 12.895397186279297,
|
| 574 |
+
"learning_rate": 2.012744145177946e-05,
|
| 575 |
+
"loss": 0.5361,
|
| 576 |
+
"step": 780
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"epoch": 2.158469945355191,
|
| 580 |
+
"grad_norm": 17.18644142150879,
|
| 581 |
+
"learning_rate": 1.9869128166501516e-05,
|
| 582 |
+
"loss": 0.697,
|
| 583 |
+
"step": 790
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"epoch": 2.185792349726776,
|
| 587 |
+
"grad_norm": 18.993026733398438,
|
| 588 |
+
"learning_rate": 1.9609190522354666e-05,
|
| 589 |
+
"loss": 0.6356,
|
| 590 |
+
"step": 800
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 2.2131147540983607,
|
| 594 |
+
"grad_norm": 20.658855438232422,
|
| 595 |
+
"learning_rate": 1.9347715235482585e-05,
|
| 596 |
+
"loss": 0.6762,
|
| 597 |
+
"step": 810
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 2.240437158469945,
|
| 601 |
+
"grad_norm": 18.07002067565918,
|
| 602 |
+
"learning_rate": 1.9084789534992143e-05,
|
| 603 |
+
"loss": 0.5932,
|
| 604 |
+
"step": 820
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 2.26775956284153,
|
| 608 |
+
"grad_norm": 10.831477165222168,
|
| 609 |
+
"learning_rate": 1.8820501133853472e-05,
|
| 610 |
+
"loss": 0.6853,
|
| 611 |
+
"step": 830
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 2.2950819672131146,
|
| 615 |
+
"grad_norm": 13.586620330810547,
|
| 616 |
+
"learning_rate": 1.8554938199638613e-05,
|
| 617 |
+
"loss": 0.6649,
|
| 618 |
+
"step": 840
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"epoch": 2.3224043715846996,
|
| 622 |
+
"grad_norm": 8.403483390808105,
|
| 623 |
+
"learning_rate": 1.8288189325108462e-05,
|
| 624 |
+
"loss": 0.8898,
|
| 625 |
+
"step": 850
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 2.349726775956284,
|
| 629 |
+
"grad_norm": 14.610397338867188,
|
| 630 |
+
"learning_rate": 1.8020343498657917e-05,
|
| 631 |
+
"loss": 0.6853,
|
| 632 |
+
"step": 860
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"epoch": 2.3770491803278686,
|
| 636 |
+
"grad_norm": 17.091442108154297,
|
| 637 |
+
"learning_rate": 1.7751490074629034e-05,
|
| 638 |
+
"loss": 0.482,
|
| 639 |
+
"step": 870
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"epoch": 2.4043715846994536,
|
| 643 |
+
"grad_norm": 19.71129608154297,
|
| 644 |
+
"learning_rate": 1.7481718743502084e-05,
|
| 645 |
+
"loss": 0.7179,
|
| 646 |
+
"step": 880
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"epoch": 2.431693989071038,
|
| 650 |
+
"grad_norm": 19.681272506713867,
|
| 651 |
+
"learning_rate": 1.7211119501974487e-05,
|
| 652 |
+
"loss": 0.6611,
|
| 653 |
+
"step": 890
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"epoch": 2.459016393442623,
|
| 657 |
+
"grad_norm": 14.768360137939453,
|
| 658 |
+
"learning_rate": 1.693978262293758e-05,
|
| 659 |
+
"loss": 0.6776,
|
| 660 |
+
"step": 900
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 2.4863387978142075,
|
| 664 |
+
"grad_norm": 10.980010986328125,
|
| 665 |
+
"learning_rate": 1.6667798625361265e-05,
|
| 666 |
+
"loss": 0.5664,
|
| 667 |
+
"step": 910
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 2.5136612021857925,
|
| 671 |
+
"grad_norm": 18.203256607055664,
|
| 672 |
+
"learning_rate": 1.6395258244096532e-05,
|
| 673 |
+
"loss": 0.6044,
|
| 674 |
+
"step": 920
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"epoch": 2.540983606557377,
|
| 678 |
+
"grad_norm": 19.784507751464844,
|
| 679 |
+
"learning_rate": 1.6122252399606e-05,
|
| 680 |
+
"loss": 0.6868,
|
| 681 |
+
"step": 930
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 2.5683060109289615,
|
| 685 |
+
"grad_norm": 13.81864070892334,
|
| 686 |
+
"learning_rate": 1.584887216763251e-05,
|
| 687 |
+
"loss": 0.7107,
|
| 688 |
+
"step": 940
|
| 689 |
+
},
|
| 690 |
+
{
|
| 691 |
+
"epoch": 2.5956284153005464,
|
| 692 |
+
"grad_norm": 13.999222755432129,
|
| 693 |
+
"learning_rate": 1.5575208748815934e-05,
|
| 694 |
+
"loss": 0.628,
|
| 695 |
+
"step": 950
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"epoch": 2.6229508196721314,
|
| 699 |
+
"grad_norm": 14.687641143798828,
|
| 700 |
+
"learning_rate": 1.5301353438268298e-05,
|
| 701 |
+
"loss": 0.6494,
|
| 702 |
+
"step": 960
|
| 703 |
+
},
|
| 704 |
+
{
|
| 705 |
+
"epoch": 2.650273224043716,
|
| 706 |
+
"grad_norm": 15.607926368713379,
|
| 707 |
+
"learning_rate": 1.5027397595117417e-05,
|
| 708 |
+
"loss": 0.7266,
|
| 709 |
+
"step": 970
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"epoch": 2.6775956284153004,
|
| 713 |
+
"grad_norm": 11.575119972229004,
|
| 714 |
+
"learning_rate": 1.4753432612029134e-05,
|
| 715 |
+
"loss": 0.7242,
|
| 716 |
+
"step": 980
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"epoch": 2.7049180327868854,
|
| 720 |
+
"grad_norm": 15.441755294799805,
|
| 721 |
+
"learning_rate": 1.4479549884718434e-05,
|
| 722 |
+
"loss": 0.6714,
|
| 723 |
+
"step": 990
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"epoch": 2.73224043715847,
|
| 727 |
+
"grad_norm": 28.31683349609375,
|
| 728 |
+
"learning_rate": 1.4205840781459443e-05,
|
| 729 |
+
"loss": 0.7413,
|
| 730 |
+
"step": 1000
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 2.7595628415300544,
|
| 734 |
+
"grad_norm": 17.351163864135742,
|
| 735 |
+
"learning_rate": 1.3932396612604688e-05,
|
| 736 |
+
"loss": 0.7011,
|
| 737 |
+
"step": 1010
|
| 738 |
+
},
|
| 739 |
+
{
|
| 740 |
+
"epoch": 2.7868852459016393,
|
| 741 |
+
"grad_norm": 12.234743118286133,
|
| 742 |
+
"learning_rate": 1.3659308600123619e-05,
|
| 743 |
+
"loss": 0.5344,
|
| 744 |
+
"step": 1020
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"epoch": 2.8142076502732243,
|
| 748 |
+
"grad_norm": 11.195818901062012,
|
| 749 |
+
"learning_rate": 1.3386667847170615e-05,
|
| 750 |
+
"loss": 0.4516,
|
| 751 |
+
"step": 1030
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"epoch": 2.841530054644809,
|
| 755 |
+
"grad_norm": 15.766973495483398,
|
| 756 |
+
"learning_rate": 1.3114565307692664e-05,
|
| 757 |
+
"loss": 0.8362,
|
| 758 |
+
"step": 1040
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"epoch": 2.8688524590163933,
|
| 762 |
+
"grad_norm": 15.880483627319336,
|
| 763 |
+
"learning_rate": 1.2843091756086758e-05,
|
| 764 |
+
"loss": 0.5643,
|
| 765 |
+
"step": 1050
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"epoch": 2.8961748633879782,
|
| 769 |
+
"grad_norm": 14.66220760345459,
|
| 770 |
+
"learning_rate": 1.2572337756917266e-05,
|
| 771 |
+
"loss": 0.7147,
|
| 772 |
+
"step": 1060
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"epoch": 2.9234972677595628,
|
| 776 |
+
"grad_norm": 15.787104606628418,
|
| 777 |
+
"learning_rate": 1.2302393634703241e-05,
|
| 778 |
+
"loss": 0.6991,
|
| 779 |
+
"step": 1070
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"epoch": 2.9508196721311473,
|
| 783 |
+
"grad_norm": 14.712467193603516,
|
| 784 |
+
"learning_rate": 1.2033349443785834e-05,
|
| 785 |
+
"loss": 0.6871,
|
| 786 |
+
"step": 1080
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"epoch": 2.978142076502732,
|
| 790 |
+
"grad_norm": 14.292945861816406,
|
| 791 |
+
"learning_rate": 1.1765294938285847e-05,
|
| 792 |
+
"loss": 0.6269,
|
| 793 |
+
"step": 1090
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 3.0,
|
| 797 |
+
"eval_accuracy": 0.7641831852358169,
|
| 798 |
+
"eval_f1": 0.7648080066431403,
|
| 799 |
+
"eval_loss": 0.6964150071144104,
|
| 800 |
+
"eval_runtime": 3.406,
|
| 801 |
+
"eval_samples_per_second": 429.533,
|
| 802 |
+
"eval_steps_per_second": 27.011,
|
| 803 |
+
"step": 1098
|
| 804 |
+
},
|
| 805 |
+
{
|
| 806 |
+
"epoch": 3.0054644808743167,
|
| 807 |
+
"grad_norm": 17.285518646240234,
|
| 808 |
+
"learning_rate": 1.1498319542161424e-05,
|
| 809 |
+
"loss": 0.5571,
|
| 810 |
+
"step": 1100
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"epoch": 3.0327868852459017,
|
| 814 |
+
"grad_norm": 17.627635955810547,
|
| 815 |
+
"learning_rate": 1.1232512319375888e-05,
|
| 816 |
+
"loss": 0.6456,
|
| 817 |
+
"step": 1110
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"epoch": 3.060109289617486,
|
| 821 |
+
"grad_norm": 17.636045455932617,
|
| 822 |
+
"learning_rate": 1.09679619441857e-05,
|
| 823 |
+
"loss": 0.5691,
|
| 824 |
+
"step": 1120
|
| 825 |
+
},
|
| 826 |
+
{
|
| 827 |
+
"epoch": 3.087431693989071,
|
| 828 |
+
"grad_norm": 14.666460037231445,
|
| 829 |
+
"learning_rate": 1.0704756671558387e-05,
|
| 830 |
+
"loss": 0.5591,
|
| 831 |
+
"step": 1130
|
| 832 |
+
},
|
| 833 |
+
{
|
| 834 |
+
"epoch": 3.1147540983606556,
|
| 835 |
+
"grad_norm": 15.583251953125,
|
| 836 |
+
"learning_rate": 1.0442984307730369e-05,
|
| 837 |
+
"loss": 0.5124,
|
| 838 |
+
"step": 1140
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 3.1420765027322406,
|
| 842 |
+
"grad_norm": 14.595309257507324,
|
| 843 |
+
"learning_rate": 1.0182732180914468e-05,
|
| 844 |
+
"loss": 0.5669,
|
| 845 |
+
"step": 1150
|
| 846 |
+
},
|
| 847 |
+
{
|
| 848 |
+
"epoch": 3.169398907103825,
|
| 849 |
+
"grad_norm": 11.129724502563477,
|
| 850 |
+
"learning_rate": 9.92408711216692e-06,
|
| 851 |
+
"loss": 0.44,
|
| 852 |
+
"step": 1160
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"epoch": 3.19672131147541,
|
| 856 |
+
"grad_norm": 16.795949935913086,
|
| 857 |
+
"learning_rate": 9.667135386423537e-06,
|
| 858 |
+
"loss": 0.6301,
|
| 859 |
+
"step": 1170
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"epoch": 3.2240437158469946,
|
| 863 |
+
"grad_norm": 8.846739768981934,
|
| 864 |
+
"learning_rate": 9.411962723714754e-06,
|
| 865 |
+
"loss": 0.488,
|
| 866 |
+
"step": 1180
|
| 867 |
+
},
|
| 868 |
+
{
|
| 869 |
+
"epoch": 3.251366120218579,
|
| 870 |
+
"grad_norm": 12.987939834594727,
|
| 871 |
+
"learning_rate": 9.15865425056909e-06,
|
| 872 |
+
"loss": 0.6578,
|
| 873 |
+
"step": 1190
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"epoch": 3.278688524590164,
|
| 877 |
+
"grad_norm": 21.930444717407227,
|
| 878 |
+
"learning_rate": 8.907294471614664e-06,
|
| 879 |
+
"loss": 0.5771,
|
| 880 |
+
"step": 1200
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"epoch": 3.3060109289617485,
|
| 884 |
+
"grad_norm": 17.547632217407227,
|
| 885 |
+
"learning_rate": 8.657967241388102e-06,
|
| 886 |
+
"loss": 0.5306,
|
| 887 |
+
"step": 1210
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 3.3333333333333335,
|
| 891 |
+
"grad_norm": 12.96604061126709,
|
| 892 |
+
"learning_rate": 8.4107557363604e-06,
|
| 893 |
+
"loss": 0.5945,
|
| 894 |
+
"step": 1220
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"epoch": 3.360655737704918,
|
| 898 |
+
"grad_norm": 14.509190559387207,
|
| 899 |
+
"learning_rate": 8.165742427188914e-06,
|
| 900 |
+
"loss": 0.4458,
|
| 901 |
+
"step": 1230
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 3.387978142076503,
|
| 905 |
+
"grad_norm": 16.828969955444336,
|
| 906 |
+
"learning_rate": 7.92300905120489e-06,
|
| 907 |
+
"loss": 0.6484,
|
| 908 |
+
"step": 1240
|
| 909 |
+
},
|
| 910 |
+
{
|
| 911 |
+
"epoch": 3.4153005464480874,
|
| 912 |
+
"grad_norm": 25.763072967529297,
|
| 913 |
+
"learning_rate": 7.682636585145537e-06,
|
| 914 |
+
"loss": 0.5723,
|
| 915 |
+
"step": 1250
|
| 916 |
+
},
|
| 917 |
+
{
|
| 918 |
+
"epoch": 3.442622950819672,
|
| 919 |
+
"grad_norm": 15.343353271484375,
|
| 920 |
+
"learning_rate": 7.444705218139958e-06,
|
| 921 |
+
"loss": 0.5327,
|
| 922 |
+
"step": 1260
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"epoch": 3.469945355191257,
|
| 926 |
+
"grad_norm": 20.751506805419922,
|
| 927 |
+
"learning_rate": 7.209294324957706e-06,
|
| 928 |
+
"loss": 0.5658,
|
| 929 |
+
"step": 1270
|
| 930 |
+
},
|
| 931 |
+
{
|
| 932 |
+
"epoch": 3.4972677595628414,
|
| 933 |
+
"grad_norm": 13.689117431640625,
|
| 934 |
+
"learning_rate": 6.9764824395291054e-06,
|
| 935 |
+
"loss": 0.4626,
|
| 936 |
+
"step": 1280
|
| 937 |
+
},
|
| 938 |
+
{
|
| 939 |
+
"epoch": 3.5245901639344264,
|
| 940 |
+
"grad_norm": 17.023637771606445,
|
| 941 |
+
"learning_rate": 6.746347228746051e-06,
|
| 942 |
+
"loss": 0.5745,
|
| 943 |
+
"step": 1290
|
| 944 |
+
},
|
| 945 |
+
{
|
| 946 |
+
"epoch": 3.551912568306011,
|
| 947 |
+
"grad_norm": 17.415525436401367,
|
| 948 |
+
"learning_rate": 6.518965466552022e-06,
|
| 949 |
+
"loss": 0.4396,
|
| 950 |
+
"step": 1300
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"epoch": 3.579234972677596,
|
| 954 |
+
"grad_norm": 18.61026382446289,
|
| 955 |
+
"learning_rate": 6.294413008330042e-06,
|
| 956 |
+
"loss": 0.407,
|
| 957 |
+
"step": 1310
|
| 958 |
+
},
|
| 959 |
+
{
|
| 960 |
+
"epoch": 3.6065573770491803,
|
| 961 |
+
"grad_norm": 16.19002342224121,
|
| 962 |
+
"learning_rate": 6.072764765597031e-06,
|
| 963 |
+
"loss": 0.5887,
|
| 964 |
+
"step": 1320
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 3.633879781420765,
|
| 968 |
+
"grad_norm": 10.970612525939941,
|
| 969 |
+
"learning_rate": 5.854094681013058e-06,
|
| 970 |
+
"loss": 0.4665,
|
| 971 |
+
"step": 1330
|
| 972 |
+
},
|
| 973 |
+
{
|
| 974 |
+
"epoch": 3.66120218579235,
|
| 975 |
+
"grad_norm": 11.12162971496582,
|
| 976 |
+
"learning_rate": 5.638475703713811e-06,
|
| 977 |
+
"loss": 0.5143,
|
| 978 |
+
"step": 1340
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"epoch": 3.6885245901639343,
|
| 982 |
+
"grad_norm": 15.478825569152832,
|
| 983 |
+
"learning_rate": 5.425979764974475e-06,
|
| 984 |
+
"loss": 0.7372,
|
| 985 |
+
"step": 1350
|
| 986 |
+
},
|
| 987 |
+
{
|
| 988 |
+
"epoch": 3.7158469945355193,
|
| 989 |
+
"grad_norm": 19.27631378173828,
|
| 990 |
+
"learning_rate": 5.216677754213213e-06,
|
| 991 |
+
"loss": 0.6368,
|
| 992 |
+
"step": 1360
|
| 993 |
+
},
|
| 994 |
+
{
|
| 995 |
+
"epoch": 3.7431693989071038,
|
| 996 |
+
"grad_norm": 13.134615898132324,
|
| 997 |
+
"learning_rate": 5.010639495342205e-06,
|
| 998 |
+
"loss": 0.4509,
|
| 999 |
+
"step": 1370
|
| 1000 |
+
},
|
| 1001 |
+
{
|
| 1002 |
+
"epoch": 3.7704918032786887,
|
| 1003 |
+
"grad_norm": 22.705202102661133,
|
| 1004 |
+
"learning_rate": 4.807933723474116e-06,
|
| 1005 |
+
"loss": 0.587,
|
| 1006 |
+
"step": 1380
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"epoch": 3.797814207650273,
|
| 1010 |
+
"grad_norm": 18.598493576049805,
|
| 1011 |
+
"learning_rate": 4.608628061991834e-06,
|
| 1012 |
+
"loss": 0.5485,
|
| 1013 |
+
"step": 1390
|
| 1014 |
+
},
|
| 1015 |
+
{
|
| 1016 |
+
"epoch": 3.8251366120218577,
|
| 1017 |
+
"grad_norm": 14.910867691040039,
|
| 1018 |
+
"learning_rate": 4.412788999989047e-06,
|
| 1019 |
+
"loss": 0.6812,
|
| 1020 |
+
"step": 1400
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"epoch": 3.8524590163934427,
|
| 1024 |
+
"grad_norm": 18.004486083984375,
|
| 1025 |
+
"learning_rate": 4.2204818700892436e-06,
|
| 1026 |
+
"loss": 0.7287,
|
| 1027 |
+
"step": 1410
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 3.879781420765027,
|
| 1031 |
+
"grad_norm": 14.421548843383789,
|
| 1032 |
+
"learning_rate": 4.031770826650533e-06,
|
| 1033 |
+
"loss": 0.5072,
|
| 1034 |
+
"step": 1420
|
| 1035 |
+
},
|
| 1036 |
+
{
|
| 1037 |
+
"epoch": 3.907103825136612,
|
| 1038 |
+
"grad_norm": 14.291264533996582,
|
| 1039 |
+
"learning_rate": 3.846718824363467e-06,
|
| 1040 |
+
"loss": 0.6538,
|
| 1041 |
+
"step": 1430
|
| 1042 |
+
},
|
| 1043 |
+
{
|
| 1044 |
+
"epoch": 3.9344262295081966,
|
| 1045 |
+
"grad_norm": 21.369617462158203,
|
| 1046 |
+
"learning_rate": 3.6653875972491906e-06,
|
| 1047 |
+
"loss": 0.7196,
|
| 1048 |
+
"step": 1440
|
| 1049 |
+
},
|
| 1050 |
+
{
|
| 1051 |
+
"epoch": 3.9617486338797816,
|
| 1052 |
+
"grad_norm": 13.688413619995117,
|
| 1053 |
+
"learning_rate": 3.487837638064699e-06,
|
| 1054 |
+
"loss": 0.632,
|
| 1055 |
+
"step": 1450
|
| 1056 |
+
},
|
| 1057 |
+
{
|
| 1058 |
+
"epoch": 3.989071038251366,
|
| 1059 |
+
"grad_norm": 18.494495391845703,
|
| 1060 |
+
"learning_rate": 3.3141281781222494e-06,
|
| 1061 |
+
"loss": 0.6043,
|
| 1062 |
+
"step": 1460
|
| 1063 |
+
},
|
| 1064 |
+
{
|
| 1065 |
+
"epoch": 4.0,
|
| 1066 |
+
"eval_accuracy": 0.7710184552289815,
|
| 1067 |
+
"eval_f1": 0.7724177824450331,
|
| 1068 |
+
"eval_loss": 0.6853169798851013,
|
| 1069 |
+
"eval_runtime": 3.4328,
|
| 1070 |
+
"eval_samples_per_second": 426.186,
|
| 1071 |
+
"eval_steps_per_second": 26.8,
|
| 1072 |
+
"step": 1464
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 4.016393442622951,
|
| 1076 |
+
"grad_norm": 17.140661239624023,
|
| 1077 |
+
"learning_rate": 3.144317167529595e-06,
|
| 1078 |
+
"loss": 0.4828,
|
| 1079 |
+
"step": 1470
|
| 1080 |
+
},
|
| 1081 |
+
{
|
| 1082 |
+
"epoch": 4.043715846994536,
|
| 1083 |
+
"grad_norm": 25.1412410736084,
|
| 1084 |
+
"learning_rate": 2.9784612558575875e-06,
|
| 1085 |
+
"loss": 0.6096,
|
| 1086 |
+
"step": 1480
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"epoch": 4.0710382513661205,
|
| 1090 |
+
"grad_norm": 12.405579566955566,
|
| 1091 |
+
"learning_rate": 2.8166157732417066e-06,
|
| 1092 |
+
"loss": 0.5281,
|
| 1093 |
+
"step": 1490
|
| 1094 |
+
},
|
| 1095 |
+
{
|
| 1096 |
+
"epoch": 4.098360655737705,
|
| 1097 |
+
"grad_norm": 6.738020420074463,
|
| 1098 |
+
"learning_rate": 2.6588347119236993e-06,
|
| 1099 |
+
"loss": 0.4918,
|
| 1100 |
+
"step": 1500
|
| 1101 |
+
},
|
| 1102 |
+
{
|
| 1103 |
+
"epoch": 4.1256830601092895,
|
| 1104 |
+
"grad_norm": 15.600460052490234,
|
| 1105 |
+
"learning_rate": 2.5051707082395814e-06,
|
| 1106 |
+
"loss": 0.5587,
|
| 1107 |
+
"step": 1510
|
| 1108 |
+
},
|
| 1109 |
+
{
|
| 1110 |
+
"epoch": 4.1530054644808745,
|
| 1111 |
+
"grad_norm": 24.08083152770996,
|
| 1112 |
+
"learning_rate": 2.3556750250599806e-06,
|
| 1113 |
+
"loss": 0.6833,
|
| 1114 |
+
"step": 1520
|
| 1115 |
+
},
|
| 1116 |
+
{
|
| 1117 |
+
"epoch": 4.180327868852459,
|
| 1118 |
+
"grad_norm": 15.80999755859375,
|
| 1119 |
+
"learning_rate": 2.2103975346886172e-06,
|
| 1120 |
+
"loss": 0.4722,
|
| 1121 |
+
"step": 1530
|
| 1122 |
+
},
|
| 1123 |
+
{
|
| 1124 |
+
"epoch": 4.2076502732240435,
|
| 1125 |
+
"grad_norm": 16.90401840209961,
|
| 1126 |
+
"learning_rate": 2.0693867022247685e-06,
|
| 1127 |
+
"loss": 0.6316,
|
| 1128 |
+
"step": 1540
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"epoch": 4.2349726775956285,
|
| 1132 |
+
"grad_norm": 11.128812789916992,
|
| 1133 |
+
"learning_rate": 1.9326895693951e-06,
|
| 1134 |
+
"loss": 0.4299,
|
| 1135 |
+
"step": 1550
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 4.262295081967213,
|
| 1139 |
+
"grad_norm": 13.00735855102539,
|
| 1140 |
+
"learning_rate": 1.8003517388603862e-06,
|
| 1141 |
+
"loss": 0.5335,
|
| 1142 |
+
"step": 1560
|
| 1143 |
+
},
|
| 1144 |
+
{
|
| 1145 |
+
"epoch": 4.2896174863387975,
|
| 1146 |
+
"grad_norm": 13.754223823547363,
|
| 1147 |
+
"learning_rate": 1.6724173590023105e-06,
|
| 1148 |
+
"loss": 0.535,
|
| 1149 |
+
"step": 1570
|
| 1150 |
+
},
|
| 1151 |
+
{
|
| 1152 |
+
"epoch": 4.316939890710382,
|
| 1153 |
+
"grad_norm": 11.241413116455078,
|
| 1154 |
+
"learning_rate": 1.5489291091953761e-06,
|
| 1155 |
+
"loss": 0.4914,
|
| 1156 |
+
"step": 1580
|
| 1157 |
+
},
|
| 1158 |
+
{
|
| 1159 |
+
"epoch": 4.344262295081967,
|
| 1160 |
+
"grad_norm": 17.830909729003906,
|
| 1161 |
+
"learning_rate": 1.429928185568944e-06,
|
| 1162 |
+
"loss": 0.611,
|
| 1163 |
+
"step": 1590
|
| 1164 |
+
},
|
| 1165 |
+
{
|
| 1166 |
+
"epoch": 4.371584699453552,
|
| 1167 |
+
"grad_norm": 13.354630470275879,
|
| 1168 |
+
"learning_rate": 1.3154542872640219e-06,
|
| 1169 |
+
"loss": 0.4563,
|
| 1170 |
+
"step": 1600
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"epoch": 4.398907103825136,
|
| 1174 |
+
"grad_norm": 8.51322078704834,
|
| 1175 |
+
"learning_rate": 1.2055456031895102e-06,
|
| 1176 |
+
"loss": 0.4771,
|
| 1177 |
+
"step": 1610
|
| 1178 |
+
},
|
| 1179 |
+
{
|
| 1180 |
+
"epoch": 4.426229508196721,
|
| 1181 |
+
"grad_norm": 16.959758758544922,
|
| 1182 |
+
"learning_rate": 1.1002387992822372e-06,
|
| 1183 |
+
"loss": 0.495,
|
| 1184 |
+
"step": 1620
|
| 1185 |
+
},
|
| 1186 |
+
{
|
| 1187 |
+
"epoch": 4.453551912568306,
|
| 1188 |
+
"grad_norm": 12.961380004882812,
|
| 1189 |
+
"learning_rate": 9.995690062750605e-07,
|
| 1190 |
+
"loss": 0.4429,
|
| 1191 |
+
"step": 1630
|
| 1192 |
+
},
|
| 1193 |
+
{
|
| 1194 |
+
"epoch": 4.48087431693989,
|
| 1195 |
+
"grad_norm": 13.121606826782227,
|
| 1196 |
+
"learning_rate": 9.035698079771376e-07,
|
| 1197 |
+
"loss": 0.642,
|
| 1198 |
+
"step": 1640
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 4.508196721311475,
|
| 1202 |
+
"grad_norm": 15.911199569702148,
|
| 1203 |
+
"learning_rate": 8.122732300702396e-07,
|
| 1204 |
+
"loss": 0.4253,
|
| 1205 |
+
"step": 1650
|
| 1206 |
+
},
|
| 1207 |
+
{
|
| 1208 |
+
"epoch": 4.53551912568306,
|
| 1209 |
+
"grad_norm": 9.911076545715332,
|
| 1210 |
+
"learning_rate": 7.257097294248671e-07,
|
| 1211 |
+
"loss": 0.4987,
|
| 1212 |
+
"step": 1660
|
| 1213 |
+
},
|
| 1214 |
+
{
|
| 1215 |
+
"epoch": 4.562841530054644,
|
| 1216 |
+
"grad_norm": 11.100393295288086,
|
| 1217 |
+
"learning_rate": 6.43908183939731e-07,
|
| 1218 |
+
"loss": 0.5253,
|
| 1219 |
+
"step": 1670
|
| 1220 |
+
},
|
| 1221 |
+
{
|
| 1222 |
+
"epoch": 4.590163934426229,
|
| 1223 |
+
"grad_norm": 19.7589111328125,
|
| 1224 |
+
"learning_rate": 5.668958829079762e-07,
|
| 1225 |
+
"loss": 0.5306,
|
| 1226 |
+
"step": 1680
|
| 1227 |
+
},
|
| 1228 |
+
{
|
| 1229 |
+
"epoch": 4.617486338797814,
|
| 1230 |
+
"grad_norm": 16.263792037963867,
|
| 1231 |
+
"learning_rate": 4.9469851791338e-07,
|
| 1232 |
+
"loss": 0.5244,
|
| 1233 |
+
"step": 1690
|
| 1234 |
+
},
|
| 1235 |
+
{
|
| 1236 |
+
"epoch": 4.644808743169399,
|
| 1237 |
+
"grad_norm": 24.535568237304688,
|
| 1238 |
+
"learning_rate": 4.27340174259534e-07,
|
| 1239 |
+
"loss": 0.5423,
|
| 1240 |
+
"step": 1700
|
| 1241 |
+
},
|
| 1242 |
+
{
|
| 1243 |
+
"epoch": 4.672131147540983,
|
| 1244 |
+
"grad_norm": 18.46912956237793,
|
| 1245 |
+
"learning_rate": 3.6484332293491294e-07,
|
| 1246 |
+
"loss": 0.4921,
|
| 1247 |
+
"step": 1710
|
| 1248 |
+
},
|
| 1249 |
+
{
|
| 1250 |
+
"epoch": 4.699453551912568,
|
| 1251 |
+
"grad_norm": 12.831903457641602,
|
| 1252 |
+
"learning_rate": 3.072288131164702e-07,
|
| 1253 |
+
"loss": 0.4469,
|
| 1254 |
+
"step": 1720
|
| 1255 |
+
},
|
| 1256 |
+
{
|
| 1257 |
+
"epoch": 4.726775956284153,
|
| 1258 |
+
"grad_norm": 17.97196388244629,
|
| 1259 |
+
"learning_rate": 2.545158652142626e-07,
|
| 1260 |
+
"loss": 0.5297,
|
| 1261 |
+
"step": 1730
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 4.754098360655737,
|
| 1265 |
+
"grad_norm": 15.087021827697754,
|
| 1266 |
+
"learning_rate": 2.0672206445946472e-07,
|
| 1267 |
+
"loss": 0.4762,
|
| 1268 |
+
"step": 1740
|
| 1269 |
+
},
|
| 1270 |
+
{
|
| 1271 |
+
"epoch": 4.781420765027322,
|
| 1272 |
+
"grad_norm": 14.959249496459961,
|
| 1273 |
+
"learning_rate": 1.638633550378732e-07,
|
| 1274 |
+
"loss": 0.5667,
|
| 1275 |
+
"step": 1750
|
| 1276 |
+
},
|
| 1277 |
+
{
|
| 1278 |
+
"epoch": 4.808743169398907,
|
| 1279 |
+
"grad_norm": 16.870542526245117,
|
| 1280 |
+
"learning_rate": 1.259540347708549e-07,
|
| 1281 |
+
"loss": 0.5,
|
| 1282 |
+
"step": 1760
|
| 1283 |
+
},
|
| 1284 |
+
{
|
| 1285 |
+
"epoch": 4.836065573770492,
|
| 1286 |
+
"grad_norm": 13.900223731994629,
|
| 1287 |
+
"learning_rate": 9.300675034555895e-08,
|
| 1288 |
+
"loss": 0.4998,
|
| 1289 |
+
"step": 1770
|
| 1290 |
+
},
|
| 1291 |
+
{
|
| 1292 |
+
"epoch": 4.863387978142076,
|
| 1293 |
+
"grad_norm": 12.61363410949707,
|
| 1294 |
+
"learning_rate": 6.503249309592007e-08,
|
| 1295 |
+
"loss": 0.6926,
|
| 1296 |
+
"step": 1780
|
| 1297 |
+
},
|
| 1298 |
+
{
|
| 1299 |
+
"epoch": 4.890710382513661,
|
| 1300 |
+
"grad_norm": 14.163106918334961,
|
| 1301 |
+
"learning_rate": 4.2040595335921527e-08,
|
| 1302 |
+
"loss": 0.4771,
|
| 1303 |
+
"step": 1790
|
| 1304 |
+
},
|
| 1305 |
+
{
|
| 1306 |
+
"epoch": 4.918032786885246,
|
| 1307 |
+
"grad_norm": 15.685210227966309,
|
| 1308 |
+
"learning_rate": 2.4038727246290526e-08,
|
| 1309 |
+
"loss": 0.5999,
|
| 1310 |
+
"step": 1800
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"epoch": 4.945355191256831,
|
| 1314 |
+
"grad_norm": 27.26356315612793,
|
| 1315 |
+
"learning_rate": 1.103289431571175e-08,
|
| 1316 |
+
"loss": 0.5854,
|
| 1317 |
+
"step": 1810
|
| 1318 |
+
},
|
| 1319 |
+
{
|
| 1320 |
+
"epoch": 4.972677595628415,
|
| 1321 |
+
"grad_norm": 16.573143005371094,
|
| 1322 |
+
"learning_rate": 3.027435337361606e-09,
|
| 1323 |
+
"loss": 0.4712,
|
| 1324 |
+
"step": 1820
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 5.0,
|
| 1328 |
+
"grad_norm": 20.06909942626953,
|
| 1329 |
+
"learning_rate": 2.5020961476052152e-11,
|
| 1330 |
+
"loss": 0.554,
|
| 1331 |
+
"step": 1830
|
| 1332 |
+
},
|
| 1333 |
+
{
|
| 1334 |
+
"epoch": 5.0,
|
| 1335 |
+
"eval_accuracy": 0.7682843472317157,
|
| 1336 |
+
"eval_f1": 0.7698743817487581,
|
| 1337 |
+
"eval_loss": 0.6751871109008789,
|
| 1338 |
+
"eval_runtime": 3.4218,
|
| 1339 |
+
"eval_samples_per_second": 427.551,
|
| 1340 |
+
"eval_steps_per_second": 26.886,
|
| 1341 |
+
"step": 1830
|
| 1342 |
+
}
|
| 1343 |
+
],
|
| 1344 |
+
"logging_steps": 10,
|
| 1345 |
+
"max_steps": 1830,
|
| 1346 |
+
"num_input_tokens_seen": 0,
|
| 1347 |
+
"num_train_epochs": 5,
|
| 1348 |
+
"save_steps": 500,
|
| 1349 |
+
"stateful_callbacks": {
|
| 1350 |
+
"TrainerControl": {
|
| 1351 |
+
"args": {
|
| 1352 |
+
"should_epoch_stop": false,
|
| 1353 |
+
"should_evaluate": false,
|
| 1354 |
+
"should_log": false,
|
| 1355 |
+
"should_save": true,
|
| 1356 |
+
"should_training_stop": true
|
| 1357 |
+
},
|
| 1358 |
+
"attributes": {}
|
| 1359 |
+
}
|
| 1360 |
+
},
|
| 1361 |
+
"total_flos": 1.012424437161984e+16,
|
| 1362 |
+
"train_batch_size": 16,
|
| 1363 |
+
"trial_name": null,
|
| 1364 |
+
"trial_params": null
|
| 1365 |
+
}
|
checkpoint-1830/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de007bea22dcb88578703fe7cbafb05e81ad70f6e86a48f9973a14db3a420500
|
| 3 |
+
size 5841
|
checkpoint-366/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: llm-semantic-router/mmbert-32k-yarn
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:llm-semantic-router/mmbert-32k-yarn
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.18.1
|
checkpoint-366/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "llm-semantic-router/mmbert-32k-yarn",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": [
|
| 25 |
+
"classifier",
|
| 26 |
+
"score"
|
| 27 |
+
],
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.18.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 8,
|
| 32 |
+
"rank_pattern": {},
|
| 33 |
+
"revision": null,
|
| 34 |
+
"target_modules": [
|
| 35 |
+
"mlp.Wi",
|
| 36 |
+
"attn.Wo",
|
| 37 |
+
"attn.Wqkv",
|
| 38 |
+
"mlp.Wo"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "SEQ_CLS",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
checkpoint-366/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b18cfe43552ed562f2403e712050a7574f5cadcaff685d7efa09ad1c750e88f3
|
| 3 |
+
size 6823088
|
checkpoint-366/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:783b160533f4e829f1a2b97364613061a60e5e14e9e94d96a3a6df50c30d8802
|
| 3 |
+
size 13755211
|
checkpoint-366/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8218faaf058edabade4d59208fb1b49026af6be32b2596f234f1ab47e1ab1709
|
| 3 |
+
size 14645
|
checkpoint-366/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e6aa82aa614d142e343e70922cf81abb849cd44ddfd9eaaa9d264c687db28d6
|
| 3 |
+
size 1465
|
checkpoint-366/trainer_state.json
ADDED
|
@@ -0,0 +1,296 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 366,
|
| 3 |
+
"best_metric": 0.6348165517128922,
|
| 4 |
+
"best_model_checkpoint": "lora_intent_classifier_mmbert-32k_r8/checkpoint-366",
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 366,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.0273224043715847,
|
| 14 |
+
"grad_norm": 43.661415100097656,
|
| 15 |
+
"learning_rate": 2.454545454545455e-06,
|
| 16 |
+
"loss": 4.0334,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.0546448087431694,
|
| 21 |
+
"grad_norm": 37.4951171875,
|
| 22 |
+
"learning_rate": 5.181818181818182e-06,
|
| 23 |
+
"loss": 3.8288,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.08196721311475409,
|
| 28 |
+
"grad_norm": 20.37900733947754,
|
| 29 |
+
"learning_rate": 7.909090909090909e-06,
|
| 30 |
+
"loss": 3.6986,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.1092896174863388,
|
| 35 |
+
"grad_norm": 24.86526870727539,
|
| 36 |
+
"learning_rate": 1.0636363636363636e-05,
|
| 37 |
+
"loss": 3.4172,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.1366120218579235,
|
| 42 |
+
"grad_norm": 21.12486457824707,
|
| 43 |
+
"learning_rate": 1.3363636363636364e-05,
|
| 44 |
+
"loss": 3.3902,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.16393442622950818,
|
| 49 |
+
"grad_norm": 14.784985542297363,
|
| 50 |
+
"learning_rate": 1.6090909090909092e-05,
|
| 51 |
+
"loss": 2.9621,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.1912568306010929,
|
| 56 |
+
"grad_norm": 15.182305335998535,
|
| 57 |
+
"learning_rate": 1.881818181818182e-05,
|
| 58 |
+
"loss": 2.9566,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.2185792349726776,
|
| 63 |
+
"grad_norm": 13.884512901306152,
|
| 64 |
+
"learning_rate": 2.1545454545454544e-05,
|
| 65 |
+
"loss": 2.8581,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2459016393442623,
|
| 70 |
+
"grad_norm": 13.621200561523438,
|
| 71 |
+
"learning_rate": 2.4272727272727275e-05,
|
| 72 |
+
"loss": 2.676,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.273224043715847,
|
| 77 |
+
"grad_norm": 13.836731910705566,
|
| 78 |
+
"learning_rate": 2.7000000000000002e-05,
|
| 79 |
+
"loss": 2.6325,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3005464480874317,
|
| 84 |
+
"grad_norm": 14.511067390441895,
|
| 85 |
+
"learning_rate": 2.972727272727273e-05,
|
| 86 |
+
"loss": 2.5361,
|
| 87 |
+
"step": 110
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.32786885245901637,
|
| 91 |
+
"grad_norm": 12.94679069519043,
|
| 92 |
+
"learning_rate": 2.9997973347195592e-05,
|
| 93 |
+
"loss": 2.5242,
|
| 94 |
+
"step": 120
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.3551912568306011,
|
| 98 |
+
"grad_norm": 11.663535118103027,
|
| 99 |
+
"learning_rate": 2.999096833688549e-05,
|
| 100 |
+
"loss": 2.4672,
|
| 101 |
+
"step": 130
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.3825136612021858,
|
| 105 |
+
"grad_norm": 12.334612846374512,
|
| 106 |
+
"learning_rate": 2.9978962285005162e-05,
|
| 107 |
+
"loss": 2.3361,
|
| 108 |
+
"step": 140
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.4098360655737705,
|
| 112 |
+
"grad_norm": 10.295676231384277,
|
| 113 |
+
"learning_rate": 2.9961959196817175e-05,
|
| 114 |
+
"loss": 2.3276,
|
| 115 |
+
"step": 150
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.4371584699453552,
|
| 119 |
+
"grad_norm": 9.971988677978516,
|
| 120 |
+
"learning_rate": 2.9939964744613606e-05,
|
| 121 |
+
"loss": 2.3236,
|
| 122 |
+
"step": 160
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.4644808743169399,
|
| 126 |
+
"grad_norm": 13.546309471130371,
|
| 127 |
+
"learning_rate": 2.991298626582372e-05,
|
| 128 |
+
"loss": 2.2471,
|
| 129 |
+
"step": 170
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.4918032786885246,
|
| 133 |
+
"grad_norm": 15.009965896606445,
|
| 134 |
+
"learning_rate": 2.988103276056618e-05,
|
| 135 |
+
"loss": 2.1654,
|
| 136 |
+
"step": 180
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.5191256830601093,
|
| 140 |
+
"grad_norm": 12.90045166015625,
|
| 141 |
+
"learning_rate": 2.984411488864658e-05,
|
| 142 |
+
"loss": 2.1238,
|
| 143 |
+
"step": 190
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.546448087431694,
|
| 147 |
+
"grad_norm": 8.598944664001465,
|
| 148 |
+
"learning_rate": 2.980224496600129e-05,
|
| 149 |
+
"loss": 1.9748,
|
| 150 |
+
"step": 200
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.5737704918032787,
|
| 154 |
+
"grad_norm": 9.50810718536377,
|
| 155 |
+
"learning_rate": 2.975543696058881e-05,
|
| 156 |
+
"loss": 1.9237,
|
| 157 |
+
"step": 210
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6010928961748634,
|
| 161 |
+
"grad_norm": 11.621309280395508,
|
| 162 |
+
"learning_rate": 2.9703706487730033e-05,
|
| 163 |
+
"loss": 1.9223,
|
| 164 |
+
"step": 220
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.6284153005464481,
|
| 168 |
+
"grad_norm": 12.043228149414062,
|
| 169 |
+
"learning_rate": 2.964707080489887e-05,
|
| 170 |
+
"loss": 1.6967,
|
| 171 |
+
"step": 230
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.6557377049180327,
|
| 175 |
+
"grad_norm": 8.679780006408691,
|
| 176 |
+
"learning_rate": 2.958554880596515e-05,
|
| 177 |
+
"loss": 1.7717,
|
| 178 |
+
"step": 240
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.6830601092896175,
|
| 182 |
+
"grad_norm": 12.931756973266602,
|
| 183 |
+
"learning_rate": 2.9519161014891514e-05,
|
| 184 |
+
"loss": 1.6964,
|
| 185 |
+
"step": 250
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.7103825136612022,
|
| 189 |
+
"grad_norm": 11.386296272277832,
|
| 190 |
+
"learning_rate": 2.944792957888656e-05,
|
| 191 |
+
"loss": 1.5883,
|
| 192 |
+
"step": 260
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.7377049180327869,
|
| 196 |
+
"grad_norm": 9.392644882202148,
|
| 197 |
+
"learning_rate": 2.9371878261016468e-05,
|
| 198 |
+
"loss": 1.4422,
|
| 199 |
+
"step": 270
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.7650273224043715,
|
| 203 |
+
"grad_norm": 13.371213912963867,
|
| 204 |
+
"learning_rate": 2.9291032432277537e-05,
|
| 205 |
+
"loss": 1.4828,
|
| 206 |
+
"step": 280
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.7923497267759563,
|
| 210 |
+
"grad_norm": 9.957645416259766,
|
| 211 |
+
"learning_rate": 2.9205419063132315e-05,
|
| 212 |
+
"loss": 1.3551,
|
| 213 |
+
"step": 290
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.819672131147541,
|
| 217 |
+
"grad_norm": 15.953017234802246,
|
| 218 |
+
"learning_rate": 2.9115066714512192e-05,
|
| 219 |
+
"loss": 1.1904,
|
| 220 |
+
"step": 300
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.8469945355191257,
|
| 224 |
+
"grad_norm": 12.193412780761719,
|
| 225 |
+
"learning_rate": 2.902000552828935e-05,
|
| 226 |
+
"loss": 1.2798,
|
| 227 |
+
"step": 310
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.8743169398907104,
|
| 231 |
+
"grad_norm": 22.1932315826416,
|
| 232 |
+
"learning_rate": 2.892026721722132e-05,
|
| 233 |
+
"loss": 1.3221,
|
| 234 |
+
"step": 320
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.9016393442622951,
|
| 238 |
+
"grad_norm": 18.232664108276367,
|
| 239 |
+
"learning_rate": 2.881588505437149e-05,
|
| 240 |
+
"loss": 1.3464,
|
| 241 |
+
"step": 330
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.9289617486338798,
|
| 245 |
+
"grad_norm": 16.0748348236084,
|
| 246 |
+
"learning_rate": 2.8706893862009102e-05,
|
| 247 |
+
"loss": 1.2608,
|
| 248 |
+
"step": 340
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.9562841530054644,
|
| 252 |
+
"grad_norm": 19.062816619873047,
|
| 253 |
+
"learning_rate": 2.859332999999241e-05,
|
| 254 |
+
"loss": 1.1351,
|
| 255 |
+
"step": 350
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.9836065573770492,
|
| 259 |
+
"grad_norm": 13.451746940612793,
|
| 260 |
+
"learning_rate": 2.8475231353638888e-05,
|
| 261 |
+
"loss": 1.299,
|
| 262 |
+
"step": 360
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.0,
|
| 266 |
+
"eval_accuracy": 0.6343130553656869,
|
| 267 |
+
"eval_f1": 0.6348165517128922,
|
| 268 |
+
"eval_loss": 1.1399110555648804,
|
| 269 |
+
"eval_runtime": 4.7145,
|
| 270 |
+
"eval_samples_per_second": 310.319,
|
| 271 |
+
"eval_steps_per_second": 19.514,
|
| 272 |
+
"step": 366
|
| 273 |
+
}
|
| 274 |
+
],
|
| 275 |
+
"logging_steps": 10,
|
| 276 |
+
"max_steps": 1830,
|
| 277 |
+
"num_input_tokens_seen": 0,
|
| 278 |
+
"num_train_epochs": 5,
|
| 279 |
+
"save_steps": 500,
|
| 280 |
+
"stateful_callbacks": {
|
| 281 |
+
"TrainerControl": {
|
| 282 |
+
"args": {
|
| 283 |
+
"should_epoch_stop": false,
|
| 284 |
+
"should_evaluate": false,
|
| 285 |
+
"should_log": false,
|
| 286 |
+
"should_save": true,
|
| 287 |
+
"should_training_stop": false
|
| 288 |
+
},
|
| 289 |
+
"attributes": {}
|
| 290 |
+
}
|
| 291 |
+
},
|
| 292 |
+
"total_flos": 2024848874323968.0,
|
| 293 |
+
"train_batch_size": 16,
|
| 294 |
+
"trial_name": null,
|
| 295 |
+
"trial_params": null
|
| 296 |
+
}
|
checkpoint-366/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de007bea22dcb88578703fe7cbafb05e81ad70f6e86a48f9973a14db3a420500
|
| 3 |
+
size 5841
|
checkpoint-732/README.md
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: llm-semantic-router/mmbert-32k-yarn
|
| 3 |
+
library_name: peft
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:llm-semantic-router/mmbert-32k-yarn
|
| 6 |
+
- lora
|
| 7 |
+
- transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Model Card for Model ID
|
| 11 |
+
|
| 12 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
### Model Description
|
| 19 |
+
|
| 20 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
- **Developed by:** [More Information Needed]
|
| 25 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 26 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 27 |
+
- **Model type:** [More Information Needed]
|
| 28 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 29 |
+
- **License:** [More Information Needed]
|
| 30 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 31 |
+
|
| 32 |
+
### Model Sources [optional]
|
| 33 |
+
|
| 34 |
+
<!-- Provide the basic links for the model. -->
|
| 35 |
+
|
| 36 |
+
- **Repository:** [More Information Needed]
|
| 37 |
+
- **Paper [optional]:** [More Information Needed]
|
| 38 |
+
- **Demo [optional]:** [More Information Needed]
|
| 39 |
+
|
| 40 |
+
## Uses
|
| 41 |
+
|
| 42 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 43 |
+
|
| 44 |
+
### Direct Use
|
| 45 |
+
|
| 46 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
### Downstream Use [optional]
|
| 51 |
+
|
| 52 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 53 |
+
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 59 |
+
|
| 60 |
+
[More Information Needed]
|
| 61 |
+
|
| 62 |
+
## Bias, Risks, and Limitations
|
| 63 |
+
|
| 64 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 65 |
+
|
| 66 |
+
[More Information Needed]
|
| 67 |
+
|
| 68 |
+
### Recommendations
|
| 69 |
+
|
| 70 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 71 |
+
|
| 72 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 73 |
+
|
| 74 |
+
## How to Get Started with the Model
|
| 75 |
+
|
| 76 |
+
Use the code below to get started with the model.
|
| 77 |
+
|
| 78 |
+
[More Information Needed]
|
| 79 |
+
|
| 80 |
+
## Training Details
|
| 81 |
+
|
| 82 |
+
### Training Data
|
| 83 |
+
|
| 84 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 85 |
+
|
| 86 |
+
[More Information Needed]
|
| 87 |
+
|
| 88 |
+
### Training Procedure
|
| 89 |
+
|
| 90 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 91 |
+
|
| 92 |
+
#### Preprocessing [optional]
|
| 93 |
+
|
| 94 |
+
[More Information Needed]
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
#### Training Hyperparameters
|
| 98 |
+
|
| 99 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 100 |
+
|
| 101 |
+
#### Speeds, Sizes, Times [optional]
|
| 102 |
+
|
| 103 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 104 |
+
|
| 105 |
+
[More Information Needed]
|
| 106 |
+
|
| 107 |
+
## Evaluation
|
| 108 |
+
|
| 109 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 110 |
+
|
| 111 |
+
### Testing Data, Factors & Metrics
|
| 112 |
+
|
| 113 |
+
#### Testing Data
|
| 114 |
+
|
| 115 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 116 |
+
|
| 117 |
+
[More Information Needed]
|
| 118 |
+
|
| 119 |
+
#### Factors
|
| 120 |
+
|
| 121 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 122 |
+
|
| 123 |
+
[More Information Needed]
|
| 124 |
+
|
| 125 |
+
#### Metrics
|
| 126 |
+
|
| 127 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
### Results
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
#### Summary
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
## Model Examination [optional]
|
| 140 |
+
|
| 141 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 142 |
+
|
| 143 |
+
[More Information Needed]
|
| 144 |
+
|
| 145 |
+
## Environmental Impact
|
| 146 |
+
|
| 147 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 148 |
+
|
| 149 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 150 |
+
|
| 151 |
+
- **Hardware Type:** [More Information Needed]
|
| 152 |
+
- **Hours used:** [More Information Needed]
|
| 153 |
+
- **Cloud Provider:** [More Information Needed]
|
| 154 |
+
- **Compute Region:** [More Information Needed]
|
| 155 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 156 |
+
|
| 157 |
+
## Technical Specifications [optional]
|
| 158 |
+
|
| 159 |
+
### Model Architecture and Objective
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
### Compute Infrastructure
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Hardware
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Software
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
## Citation [optional]
|
| 176 |
+
|
| 177 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 178 |
+
|
| 179 |
+
**BibTeX:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
**APA:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
## Glossary [optional]
|
| 188 |
+
|
| 189 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## More Information [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Authors [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Contact
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
### Framework versions
|
| 205 |
+
|
| 206 |
+
- PEFT 0.18.1
|
checkpoint-732/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "llm-semantic-router/mmbert-32k-yarn",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 16,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": [
|
| 25 |
+
"classifier",
|
| 26 |
+
"score"
|
| 27 |
+
],
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.18.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 8,
|
| 32 |
+
"rank_pattern": {},
|
| 33 |
+
"revision": null,
|
| 34 |
+
"target_modules": [
|
| 35 |
+
"mlp.Wi",
|
| 36 |
+
"attn.Wo",
|
| 37 |
+
"attn.Wqkv",
|
| 38 |
+
"mlp.Wo"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "SEQ_CLS",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
checkpoint-732/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:565d7083c4035b7ff99c893cdb5006296d8c7cd70a524d1aa985e8faf35616e1
|
| 3 |
+
size 6823088
|
checkpoint-732/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43a8ebee1ca43fa083bd6bc5acf8a861a1febdbc7799d055dac9c629d815d8a0
|
| 3 |
+
size 13755211
|
checkpoint-732/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56cf0d07906dbd89d0ba1d0550a4c3f08cec415713da1b65d044e164c4e6824f
|
| 3 |
+
size 14645
|
checkpoint-732/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e22274e1b89eeb2ba89668afc509d8363ab7c371c7b28ef1c377571f4ebcf0cd
|
| 3 |
+
size 1465
|
checkpoint-732/trainer_state.json
ADDED
|
@@ -0,0 +1,565 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 732,
|
| 3 |
+
"best_metric": 0.737288346724191,
|
| 4 |
+
"best_model_checkpoint": "lora_intent_classifier_mmbert-32k_r8/checkpoint-732",
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 732,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.0273224043715847,
|
| 14 |
+
"grad_norm": 43.661415100097656,
|
| 15 |
+
"learning_rate": 2.454545454545455e-06,
|
| 16 |
+
"loss": 4.0334,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.0546448087431694,
|
| 21 |
+
"grad_norm": 37.4951171875,
|
| 22 |
+
"learning_rate": 5.181818181818182e-06,
|
| 23 |
+
"loss": 3.8288,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.08196721311475409,
|
| 28 |
+
"grad_norm": 20.37900733947754,
|
| 29 |
+
"learning_rate": 7.909090909090909e-06,
|
| 30 |
+
"loss": 3.6986,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.1092896174863388,
|
| 35 |
+
"grad_norm": 24.86526870727539,
|
| 36 |
+
"learning_rate": 1.0636363636363636e-05,
|
| 37 |
+
"loss": 3.4172,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.1366120218579235,
|
| 42 |
+
"grad_norm": 21.12486457824707,
|
| 43 |
+
"learning_rate": 1.3363636363636364e-05,
|
| 44 |
+
"loss": 3.3902,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.16393442622950818,
|
| 49 |
+
"grad_norm": 14.784985542297363,
|
| 50 |
+
"learning_rate": 1.6090909090909092e-05,
|
| 51 |
+
"loss": 2.9621,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.1912568306010929,
|
| 56 |
+
"grad_norm": 15.182305335998535,
|
| 57 |
+
"learning_rate": 1.881818181818182e-05,
|
| 58 |
+
"loss": 2.9566,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.2185792349726776,
|
| 63 |
+
"grad_norm": 13.884512901306152,
|
| 64 |
+
"learning_rate": 2.1545454545454544e-05,
|
| 65 |
+
"loss": 2.8581,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2459016393442623,
|
| 70 |
+
"grad_norm": 13.621200561523438,
|
| 71 |
+
"learning_rate": 2.4272727272727275e-05,
|
| 72 |
+
"loss": 2.676,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.273224043715847,
|
| 77 |
+
"grad_norm": 13.836731910705566,
|
| 78 |
+
"learning_rate": 2.7000000000000002e-05,
|
| 79 |
+
"loss": 2.6325,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3005464480874317,
|
| 84 |
+
"grad_norm": 14.511067390441895,
|
| 85 |
+
"learning_rate": 2.972727272727273e-05,
|
| 86 |
+
"loss": 2.5361,
|
| 87 |
+
"step": 110
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.32786885245901637,
|
| 91 |
+
"grad_norm": 12.94679069519043,
|
| 92 |
+
"learning_rate": 2.9997973347195592e-05,
|
| 93 |
+
"loss": 2.5242,
|
| 94 |
+
"step": 120
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.3551912568306011,
|
| 98 |
+
"grad_norm": 11.663535118103027,
|
| 99 |
+
"learning_rate": 2.999096833688549e-05,
|
| 100 |
+
"loss": 2.4672,
|
| 101 |
+
"step": 130
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.3825136612021858,
|
| 105 |
+
"grad_norm": 12.334612846374512,
|
| 106 |
+
"learning_rate": 2.9978962285005162e-05,
|
| 107 |
+
"loss": 2.3361,
|
| 108 |
+
"step": 140
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.4098360655737705,
|
| 112 |
+
"grad_norm": 10.295676231384277,
|
| 113 |
+
"learning_rate": 2.9961959196817175e-05,
|
| 114 |
+
"loss": 2.3276,
|
| 115 |
+
"step": 150
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.4371584699453552,
|
| 119 |
+
"grad_norm": 9.971988677978516,
|
| 120 |
+
"learning_rate": 2.9939964744613606e-05,
|
| 121 |
+
"loss": 2.3236,
|
| 122 |
+
"step": 160
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.4644808743169399,
|
| 126 |
+
"grad_norm": 13.546309471130371,
|
| 127 |
+
"learning_rate": 2.991298626582372e-05,
|
| 128 |
+
"loss": 2.2471,
|
| 129 |
+
"step": 170
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.4918032786885246,
|
| 133 |
+
"grad_norm": 15.009965896606445,
|
| 134 |
+
"learning_rate": 2.988103276056618e-05,
|
| 135 |
+
"loss": 2.1654,
|
| 136 |
+
"step": 180
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.5191256830601093,
|
| 140 |
+
"grad_norm": 12.90045166015625,
|
| 141 |
+
"learning_rate": 2.984411488864658e-05,
|
| 142 |
+
"loss": 2.1238,
|
| 143 |
+
"step": 190
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.546448087431694,
|
| 147 |
+
"grad_norm": 8.598944664001465,
|
| 148 |
+
"learning_rate": 2.980224496600129e-05,
|
| 149 |
+
"loss": 1.9748,
|
| 150 |
+
"step": 200
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.5737704918032787,
|
| 154 |
+
"grad_norm": 9.50810718536377,
|
| 155 |
+
"learning_rate": 2.975543696058881e-05,
|
| 156 |
+
"loss": 1.9237,
|
| 157 |
+
"step": 210
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6010928961748634,
|
| 161 |
+
"grad_norm": 11.621309280395508,
|
| 162 |
+
"learning_rate": 2.9703706487730033e-05,
|
| 163 |
+
"loss": 1.9223,
|
| 164 |
+
"step": 220
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.6284153005464481,
|
| 168 |
+
"grad_norm": 12.043228149414062,
|
| 169 |
+
"learning_rate": 2.964707080489887e-05,
|
| 170 |
+
"loss": 1.6967,
|
| 171 |
+
"step": 230
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.6557377049180327,
|
| 175 |
+
"grad_norm": 8.679780006408691,
|
| 176 |
+
"learning_rate": 2.958554880596515e-05,
|
| 177 |
+
"loss": 1.7717,
|
| 178 |
+
"step": 240
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.6830601092896175,
|
| 182 |
+
"grad_norm": 12.931756973266602,
|
| 183 |
+
"learning_rate": 2.9519161014891514e-05,
|
| 184 |
+
"loss": 1.6964,
|
| 185 |
+
"step": 250
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.7103825136612022,
|
| 189 |
+
"grad_norm": 11.386296272277832,
|
| 190 |
+
"learning_rate": 2.944792957888656e-05,
|
| 191 |
+
"loss": 1.5883,
|
| 192 |
+
"step": 260
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.7377049180327869,
|
| 196 |
+
"grad_norm": 9.392644882202148,
|
| 197 |
+
"learning_rate": 2.9371878261016468e-05,
|
| 198 |
+
"loss": 1.4422,
|
| 199 |
+
"step": 270
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.7650273224043715,
|
| 203 |
+
"grad_norm": 13.371213912963867,
|
| 204 |
+
"learning_rate": 2.9291032432277537e-05,
|
| 205 |
+
"loss": 1.4828,
|
| 206 |
+
"step": 280
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.7923497267759563,
|
| 210 |
+
"grad_norm": 9.957645416259766,
|
| 211 |
+
"learning_rate": 2.9205419063132315e-05,
|
| 212 |
+
"loss": 1.3551,
|
| 213 |
+
"step": 290
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.819672131147541,
|
| 217 |
+
"grad_norm": 15.953017234802246,
|
| 218 |
+
"learning_rate": 2.9115066714512192e-05,
|
| 219 |
+
"loss": 1.1904,
|
| 220 |
+
"step": 300
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.8469945355191257,
|
| 224 |
+
"grad_norm": 12.193412780761719,
|
| 225 |
+
"learning_rate": 2.902000552828935e-05,
|
| 226 |
+
"loss": 1.2798,
|
| 227 |
+
"step": 310
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.8743169398907104,
|
| 231 |
+
"grad_norm": 22.1932315826416,
|
| 232 |
+
"learning_rate": 2.892026721722132e-05,
|
| 233 |
+
"loss": 1.3221,
|
| 234 |
+
"step": 320
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.9016393442622951,
|
| 238 |
+
"grad_norm": 18.232664108276367,
|
| 239 |
+
"learning_rate": 2.881588505437149e-05,
|
| 240 |
+
"loss": 1.3464,
|
| 241 |
+
"step": 330
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.9289617486338798,
|
| 245 |
+
"grad_norm": 16.0748348236084,
|
| 246 |
+
"learning_rate": 2.8706893862009102e-05,
|
| 247 |
+
"loss": 1.2608,
|
| 248 |
+
"step": 340
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.9562841530054644,
|
| 252 |
+
"grad_norm": 19.062816619873047,
|
| 253 |
+
"learning_rate": 2.859332999999241e-05,
|
| 254 |
+
"loss": 1.1351,
|
| 255 |
+
"step": 350
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.9836065573770492,
|
| 259 |
+
"grad_norm": 13.451746940612793,
|
| 260 |
+
"learning_rate": 2.8475231353638888e-05,
|
| 261 |
+
"loss": 1.299,
|
| 262 |
+
"step": 360
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.0,
|
| 266 |
+
"eval_accuracy": 0.6343130553656869,
|
| 267 |
+
"eval_f1": 0.6348165517128922,
|
| 268 |
+
"eval_loss": 1.1399110555648804,
|
| 269 |
+
"eval_runtime": 4.7145,
|
| 270 |
+
"eval_samples_per_second": 310.319,
|
| 271 |
+
"eval_steps_per_second": 19.514,
|
| 272 |
+
"step": 366
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 1.010928961748634,
|
| 276 |
+
"grad_norm": 15.27212905883789,
|
| 277 |
+
"learning_rate": 2.8352637321086587e-05,
|
| 278 |
+
"loss": 0.8772,
|
| 279 |
+
"step": 370
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 1.0382513661202186,
|
| 283 |
+
"grad_norm": 14.341962814331055,
|
| 284 |
+
"learning_rate": 2.8225588800150717e-05,
|
| 285 |
+
"loss": 1.228,
|
| 286 |
+
"step": 380
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 1.0655737704918034,
|
| 290 |
+
"grad_norm": 16.302701950073242,
|
| 291 |
+
"learning_rate": 2.8094128174680033e-05,
|
| 292 |
+
"loss": 1.0407,
|
| 293 |
+
"step": 390
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 1.092896174863388,
|
| 297 |
+
"grad_norm": 19.2470645904541,
|
| 298 |
+
"learning_rate": 2.7958299300417413e-05,
|
| 299 |
+
"loss": 1.2054,
|
| 300 |
+
"step": 400
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.1202185792349726,
|
| 304 |
+
"grad_norm": 11.071598052978516,
|
| 305 |
+
"learning_rate": 2.781814749036942e-05,
|
| 306 |
+
"loss": 1.12,
|
| 307 |
+
"step": 410
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 1.1475409836065573,
|
| 311 |
+
"grad_norm": 14.336385726928711,
|
| 312 |
+
"learning_rate": 2.767371949968971e-05,
|
| 313 |
+
"loss": 0.9408,
|
| 314 |
+
"step": 420
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 1.174863387978142,
|
| 318 |
+
"grad_norm": 14.412948608398438,
|
| 319 |
+
"learning_rate": 2.7525063510081378e-05,
|
| 320 |
+
"loss": 0.8873,
|
| 321 |
+
"step": 430
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 1.2021857923497268,
|
| 325 |
+
"grad_norm": 7.640225410461426,
|
| 326 |
+
"learning_rate": 2.7372229113723316e-05,
|
| 327 |
+
"loss": 0.9188,
|
| 328 |
+
"step": 440
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"epoch": 1.2295081967213115,
|
| 332 |
+
"grad_norm": 12.760605812072754,
|
| 333 |
+
"learning_rate": 2.7215267296726124e-05,
|
| 334 |
+
"loss": 1.0622,
|
| 335 |
+
"step": 450
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"epoch": 1.2568306010928962,
|
| 339 |
+
"grad_norm": 16.584192276000977,
|
| 340 |
+
"learning_rate": 2.7054230422122936e-05,
|
| 341 |
+
"loss": 1.0441,
|
| 342 |
+
"step": 460
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"epoch": 1.2841530054644807,
|
| 346 |
+
"grad_norm": 13.030243873596191,
|
| 347 |
+
"learning_rate": 2.6889172212400925e-05,
|
| 348 |
+
"loss": 0.6724,
|
| 349 |
+
"step": 470
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"epoch": 1.3114754098360657,
|
| 353 |
+
"grad_norm": 14.200984954833984,
|
| 354 |
+
"learning_rate": 2.6720147731579297e-05,
|
| 355 |
+
"loss": 1.0364,
|
| 356 |
+
"step": 480
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 1.3387978142076502,
|
| 360 |
+
"grad_norm": 9.490402221679688,
|
| 361 |
+
"learning_rate": 2.6547213366839715e-05,
|
| 362 |
+
"loss": 0.8933,
|
| 363 |
+
"step": 490
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 1.366120218579235,
|
| 367 |
+
"grad_norm": 13.559136390686035,
|
| 368 |
+
"learning_rate": 2.637042680971534e-05,
|
| 369 |
+
"loss": 0.874,
|
| 370 |
+
"step": 500
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.3934426229508197,
|
| 374 |
+
"grad_norm": 9.073728561401367,
|
| 375 |
+
"learning_rate": 2.6189847036844737e-05,
|
| 376 |
+
"loss": 1.0375,
|
| 377 |
+
"step": 510
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"epoch": 1.4207650273224044,
|
| 381 |
+
"grad_norm": 14.217357635498047,
|
| 382 |
+
"learning_rate": 2.6005534290297032e-05,
|
| 383 |
+
"loss": 0.7856,
|
| 384 |
+
"step": 520
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"epoch": 1.4480874316939891,
|
| 388 |
+
"grad_norm": 13.805753707885742,
|
| 389 |
+
"learning_rate": 2.5817550057474958e-05,
|
| 390 |
+
"loss": 0.9337,
|
| 391 |
+
"step": 530
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"epoch": 1.4754098360655736,
|
| 395 |
+
"grad_norm": 11.231172561645508,
|
| 396 |
+
"learning_rate": 2.562595705060241e-05,
|
| 397 |
+
"loss": 0.7167,
|
| 398 |
+
"step": 540
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"epoch": 1.5027322404371586,
|
| 402 |
+
"grad_norm": 17.595722198486328,
|
| 403 |
+
"learning_rate": 2.5430819185803452e-05,
|
| 404 |
+
"loss": 0.9102,
|
| 405 |
+
"step": 550
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"epoch": 1.530054644808743,
|
| 409 |
+
"grad_norm": 9.007168769836426,
|
| 410 |
+
"learning_rate": 2.523220156177963e-05,
|
| 411 |
+
"loss": 0.8971,
|
| 412 |
+
"step": 560
|
| 413 |
+
},
|
| 414 |
+
{
|
| 415 |
+
"epoch": 1.5573770491803278,
|
| 416 |
+
"grad_norm": 19.105390548706055,
|
| 417 |
+
"learning_rate": 2.5030170438092854e-05,
|
| 418 |
+
"loss": 0.7724,
|
| 419 |
+
"step": 570
|
| 420 |
+
},
|
| 421 |
+
{
|
| 422 |
+
"epoch": 1.5846994535519126,
|
| 423 |
+
"grad_norm": 20.397462844848633,
|
| 424 |
+
"learning_rate": 2.48247932130609e-05,
|
| 425 |
+
"loss": 0.9044,
|
| 426 |
+
"step": 580
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"epoch": 1.6120218579234973,
|
| 430 |
+
"grad_norm": 16.47760581970215,
|
| 431 |
+
"learning_rate": 2.461613840127315e-05,
|
| 432 |
+
"loss": 0.905,
|
| 433 |
+
"step": 590
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 1.639344262295082,
|
| 437 |
+
"grad_norm": 17.686187744140625,
|
| 438 |
+
"learning_rate": 2.4404275610733853e-05,
|
| 439 |
+
"loss": 0.8214,
|
| 440 |
+
"step": 600
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"epoch": 1.6666666666666665,
|
| 444 |
+
"grad_norm": 16.285888671875,
|
| 445 |
+
"learning_rate": 2.4189275519640622e-05,
|
| 446 |
+
"loss": 0.7419,
|
| 447 |
+
"step": 610
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"epoch": 1.6939890710382515,
|
| 451 |
+
"grad_norm": 9.757600784301758,
|
| 452 |
+
"learning_rate": 2.397120985280597e-05,
|
| 453 |
+
"loss": 0.7259,
|
| 454 |
+
"step": 620
|
| 455 |
+
},
|
| 456 |
+
{
|
| 457 |
+
"epoch": 1.721311475409836,
|
| 458 |
+
"grad_norm": 8.898860931396484,
|
| 459 |
+
"learning_rate": 2.3750151357729604e-05,
|
| 460 |
+
"loss": 0.8569,
|
| 461 |
+
"step": 630
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"epoch": 1.748633879781421,
|
| 465 |
+
"grad_norm": 19.698688507080078,
|
| 466 |
+
"learning_rate": 2.3526173780329636e-05,
|
| 467 |
+
"loss": 1.0927,
|
| 468 |
+
"step": 640
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"epoch": 1.7759562841530054,
|
| 472 |
+
"grad_norm": 23.36447525024414,
|
| 473 |
+
"learning_rate": 2.329935184034066e-05,
|
| 474 |
+
"loss": 0.6988,
|
| 475 |
+
"step": 650
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 1.8032786885245902,
|
| 479 |
+
"grad_norm": 16.561899185180664,
|
| 480 |
+
"learning_rate": 2.3069761206386968e-05,
|
| 481 |
+
"loss": 0.7696,
|
| 482 |
+
"step": 660
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"epoch": 1.830601092896175,
|
| 486 |
+
"grad_norm": 18.133567810058594,
|
| 487 |
+
"learning_rate": 2.2837478470739234e-05,
|
| 488 |
+
"loss": 0.877,
|
| 489 |
+
"step": 670
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"epoch": 1.8579234972677594,
|
| 493 |
+
"grad_norm": 13.005228996276855,
|
| 494 |
+
"learning_rate": 2.2602581123763054e-05,
|
| 495 |
+
"loss": 0.658,
|
| 496 |
+
"step": 680
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 1.8852459016393444,
|
| 500 |
+
"grad_norm": 11.603018760681152,
|
| 501 |
+
"learning_rate": 2.2365147528067874e-05,
|
| 502 |
+
"loss": 0.9204,
|
| 503 |
+
"step": 690
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"epoch": 1.9125683060109289,
|
| 507 |
+
"grad_norm": 7.9754319190979,
|
| 508 |
+
"learning_rate": 2.2125256892364934e-05,
|
| 509 |
+
"loss": 0.6936,
|
| 510 |
+
"step": 700
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 1.9398907103825138,
|
| 514 |
+
"grad_norm": 13.788674354553223,
|
| 515 |
+
"learning_rate": 2.188298924504296e-05,
|
| 516 |
+
"loss": 0.7217,
|
| 517 |
+
"step": 710
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 1.9672131147540983,
|
| 521 |
+
"grad_norm": 19.109081268310547,
|
| 522 |
+
"learning_rate": 2.1638425407470398e-05,
|
| 523 |
+
"loss": 0.8034,
|
| 524 |
+
"step": 720
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 1.994535519125683,
|
| 528 |
+
"grad_norm": 12.080116271972656,
|
| 529 |
+
"learning_rate": 2.139164696703313e-05,
|
| 530 |
+
"loss": 0.786,
|
| 531 |
+
"step": 730
|
| 532 |
+
},
|
| 533 |
+
{
|
| 534 |
+
"epoch": 2.0,
|
| 535 |
+
"eval_accuracy": 0.735475051264525,
|
| 536 |
+
"eval_f1": 0.737288346724191,
|
| 537 |
+
"eval_loss": 0.7614660263061523,
|
| 538 |
+
"eval_runtime": 3.3477,
|
| 539 |
+
"eval_samples_per_second": 437.012,
|
| 540 |
+
"eval_steps_per_second": 27.481,
|
| 541 |
+
"step": 732
|
| 542 |
+
}
|
| 543 |
+
],
|
| 544 |
+
"logging_steps": 10,
|
| 545 |
+
"max_steps": 1830,
|
| 546 |
+
"num_input_tokens_seen": 0,
|
| 547 |
+
"num_train_epochs": 5,
|
| 548 |
+
"save_steps": 500,
|
| 549 |
+
"stateful_callbacks": {
|
| 550 |
+
"TrainerControl": {
|
| 551 |
+
"args": {
|
| 552 |
+
"should_epoch_stop": false,
|
| 553 |
+
"should_evaluate": false,
|
| 554 |
+
"should_log": false,
|
| 555 |
+
"should_save": true,
|
| 556 |
+
"should_training_stop": false
|
| 557 |
+
},
|
| 558 |
+
"attributes": {}
|
| 559 |
+
}
|
| 560 |
+
},
|
| 561 |
+
"total_flos": 4049697748647936.0,
|
| 562 |
+
"train_batch_size": 16,
|
| 563 |
+
"trial_name": null,
|
| 564 |
+
"trial_params": null
|
| 565 |
+
}
|
checkpoint-732/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de007bea22dcb88578703fe7cbafb05e81ad70f6e86a48f9973a14db3a420500
|
| 3 |
+
size 5841
|
label_mapping.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"category_to_idx": {
|
| 3 |
+
"biology": 0,
|
| 4 |
+
"business": 1,
|
| 5 |
+
"chemistry": 2,
|
| 6 |
+
"computer science": 3,
|
| 7 |
+
"economics": 4,
|
| 8 |
+
"engineering": 5,
|
| 9 |
+
"health": 6,
|
| 10 |
+
"history": 7,
|
| 11 |
+
"law": 8,
|
| 12 |
+
"math": 9,
|
| 13 |
+
"other": 10,
|
| 14 |
+
"philosophy": 11,
|
| 15 |
+
"physics": 12,
|
| 16 |
+
"psychology": 13
|
| 17 |
+
},
|
| 18 |
+
"idx_to_category": {
|
| 19 |
+
"0": "biology",
|
| 20 |
+
"1": "business",
|
| 21 |
+
"2": "chemistry",
|
| 22 |
+
"3": "computer science",
|
| 23 |
+
"4": "economics",
|
| 24 |
+
"5": "engineering",
|
| 25 |
+
"6": "health",
|
| 26 |
+
"7": "history",
|
| 27 |
+
"8": "law",
|
| 28 |
+
"9": "math",
|
| 29 |
+
"10": "other",
|
| 30 |
+
"11": "philosophy",
|
| 31 |
+
"12": "physics",
|
| 32 |
+
"13": "psychology"
|
| 33 |
+
}
|
| 34 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<start_of_turn>",
|
| 4 |
+
"<end_of_turn>"
|
| 5 |
+
],
|
| 6 |
+
"bos_token": {
|
| 7 |
+
"content": "<bos>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false
|
| 12 |
+
},
|
| 13 |
+
"cls_token": {
|
| 14 |
+
"content": "<bos>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"content": "<eos>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false
|
| 26 |
+
},
|
| 27 |
+
"mask_token": {
|
| 28 |
+
"content": "<mask>",
|
| 29 |
+
"lstrip": true,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false
|
| 33 |
+
},
|
| 34 |
+
"pad_token": {
|
| 35 |
+
"content": "<pad>",
|
| 36 |
+
"lstrip": false,
|
| 37 |
+
"normalized": false,
|
| 38 |
+
"rstrip": false,
|
| 39 |
+
"single_word": false
|
| 40 |
+
},
|
| 41 |
+
"sep_token": {
|
| 42 |
+
"content": "<eos>",
|
| 43 |
+
"lstrip": false,
|
| 44 |
+
"normalized": false,
|
| 45 |
+
"rstrip": false,
|
| 46 |
+
"single_word": false
|
| 47 |
+
},
|
| 48 |
+
"unk_token": {
|
| 49 |
+
"content": "<unk>",
|
| 50 |
+
"lstrip": false,
|
| 51 |
+
"normalized": false,
|
| 52 |
+
"rstrip": false,
|
| 53 |
+
"single_word": false
|
| 54 |
+
}
|
| 55 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17f7d8b9518c403d7429ad9eeeabb6eed49c8d3311de8ef4ed5ad811381a2ced
|
| 3 |
+
size 34363441
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,2018 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"0": {
|
| 5 |
+
"content": "<pad>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"1": {
|
| 13 |
+
"content": "<eos>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"2": {
|
| 21 |
+
"content": "<bos>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"3": {
|
| 29 |
+
"content": "<unk>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"4": {
|
| 37 |
+
"content": "<mask>",
|
| 38 |
+
"lstrip": true,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"5": {
|
| 45 |
+
"content": "<2mass>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": false
|
| 51 |
+
},
|
| 52 |
+
"6": {
|
| 53 |
+
"content": "[@BOS@]",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": false
|
| 59 |
+
},
|
| 60 |
+
"7": {
|
| 61 |
+
"content": "<unused0>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": false
|
| 67 |
+
},
|
| 68 |
+
"8": {
|
| 69 |
+
"content": "<unused1>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": false
|
| 75 |
+
},
|
| 76 |
+
"9": {
|
| 77 |
+
"content": "<unused2>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": false
|
| 83 |
+
},
|
| 84 |
+
"10": {
|
| 85 |
+
"content": "<unused3>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": false
|
| 91 |
+
},
|
| 92 |
+
"11": {
|
| 93 |
+
"content": "<unused4>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": false
|
| 99 |
+
},
|
| 100 |
+
"12": {
|
| 101 |
+
"content": "<unused5>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": false
|
| 107 |
+
},
|
| 108 |
+
"13": {
|
| 109 |
+
"content": "<unused6>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": false
|
| 115 |
+
},
|
| 116 |
+
"14": {
|
| 117 |
+
"content": "<unused7>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"15": {
|
| 125 |
+
"content": "<unused8>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"16": {
|
| 133 |
+
"content": "<unused9>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"17": {
|
| 141 |
+
"content": "<unused10>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"18": {
|
| 149 |
+
"content": "<unused11>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"19": {
|
| 157 |
+
"content": "<unused12>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"20": {
|
| 165 |
+
"content": "<unused13>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"21": {
|
| 173 |
+
"content": "<unused14>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
},
|
| 180 |
+
"22": {
|
| 181 |
+
"content": "<unused15>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": false
|
| 187 |
+
},
|
| 188 |
+
"23": {
|
| 189 |
+
"content": "<unused16>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": false
|
| 195 |
+
},
|
| 196 |
+
"24": {
|
| 197 |
+
"content": "<unused17>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": false
|
| 203 |
+
},
|
| 204 |
+
"25": {
|
| 205 |
+
"content": "<unused18>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": false
|
| 211 |
+
},
|
| 212 |
+
"26": {
|
| 213 |
+
"content": "<unused19>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": false
|
| 219 |
+
},
|
| 220 |
+
"27": {
|
| 221 |
+
"content": "<unused20>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": false
|
| 227 |
+
},
|
| 228 |
+
"28": {
|
| 229 |
+
"content": "<unused21>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": false
|
| 235 |
+
},
|
| 236 |
+
"29": {
|
| 237 |
+
"content": "<unused22>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": false
|
| 243 |
+
},
|
| 244 |
+
"30": {
|
| 245 |
+
"content": "<unused23>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": false
|
| 251 |
+
},
|
| 252 |
+
"31": {
|
| 253 |
+
"content": "<unused24>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": false
|
| 259 |
+
},
|
| 260 |
+
"32": {
|
| 261 |
+
"content": "<unused25>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": false
|
| 267 |
+
},
|
| 268 |
+
"33": {
|
| 269 |
+
"content": "<unused26>",
|
| 270 |
+
"lstrip": false,
|
| 271 |
+
"normalized": false,
|
| 272 |
+
"rstrip": false,
|
| 273 |
+
"single_word": false,
|
| 274 |
+
"special": false
|
| 275 |
+
},
|
| 276 |
+
"34": {
|
| 277 |
+
"content": "<unused27>",
|
| 278 |
+
"lstrip": false,
|
| 279 |
+
"normalized": false,
|
| 280 |
+
"rstrip": false,
|
| 281 |
+
"single_word": false,
|
| 282 |
+
"special": false
|
| 283 |
+
},
|
| 284 |
+
"35": {
|
| 285 |
+
"content": "<unused28>",
|
| 286 |
+
"lstrip": false,
|
| 287 |
+
"normalized": false,
|
| 288 |
+
"rstrip": false,
|
| 289 |
+
"single_word": false,
|
| 290 |
+
"special": false
|
| 291 |
+
},
|
| 292 |
+
"36": {
|
| 293 |
+
"content": "<unused29>",
|
| 294 |
+
"lstrip": false,
|
| 295 |
+
"normalized": false,
|
| 296 |
+
"rstrip": false,
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"special": false
|
| 299 |
+
},
|
| 300 |
+
"37": {
|
| 301 |
+
"content": "<unused30>",
|
| 302 |
+
"lstrip": false,
|
| 303 |
+
"normalized": false,
|
| 304 |
+
"rstrip": false,
|
| 305 |
+
"single_word": false,
|
| 306 |
+
"special": false
|
| 307 |
+
},
|
| 308 |
+
"38": {
|
| 309 |
+
"content": "<unused31>",
|
| 310 |
+
"lstrip": false,
|
| 311 |
+
"normalized": false,
|
| 312 |
+
"rstrip": false,
|
| 313 |
+
"single_word": false,
|
| 314 |
+
"special": false
|
| 315 |
+
},
|
| 316 |
+
"39": {
|
| 317 |
+
"content": "<unused32>",
|
| 318 |
+
"lstrip": false,
|
| 319 |
+
"normalized": false,
|
| 320 |
+
"rstrip": false,
|
| 321 |
+
"single_word": false,
|
| 322 |
+
"special": false
|
| 323 |
+
},
|
| 324 |
+
"40": {
|
| 325 |
+
"content": "<unused33>",
|
| 326 |
+
"lstrip": false,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"rstrip": false,
|
| 329 |
+
"single_word": false,
|
| 330 |
+
"special": false
|
| 331 |
+
},
|
| 332 |
+
"41": {
|
| 333 |
+
"content": "<unused34>",
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"normalized": false,
|
| 336 |
+
"rstrip": false,
|
| 337 |
+
"single_word": false,
|
| 338 |
+
"special": false
|
| 339 |
+
},
|
| 340 |
+
"42": {
|
| 341 |
+
"content": "<unused35>",
|
| 342 |
+
"lstrip": false,
|
| 343 |
+
"normalized": false,
|
| 344 |
+
"rstrip": false,
|
| 345 |
+
"single_word": false,
|
| 346 |
+
"special": false
|
| 347 |
+
},
|
| 348 |
+
"43": {
|
| 349 |
+
"content": "<unused36>",
|
| 350 |
+
"lstrip": false,
|
| 351 |
+
"normalized": false,
|
| 352 |
+
"rstrip": false,
|
| 353 |
+
"single_word": false,
|
| 354 |
+
"special": false
|
| 355 |
+
},
|
| 356 |
+
"44": {
|
| 357 |
+
"content": "<unused37>",
|
| 358 |
+
"lstrip": false,
|
| 359 |
+
"normalized": false,
|
| 360 |
+
"rstrip": false,
|
| 361 |
+
"single_word": false,
|
| 362 |
+
"special": false
|
| 363 |
+
},
|
| 364 |
+
"45": {
|
| 365 |
+
"content": "<unused38>",
|
| 366 |
+
"lstrip": false,
|
| 367 |
+
"normalized": false,
|
| 368 |
+
"rstrip": false,
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"special": false
|
| 371 |
+
},
|
| 372 |
+
"46": {
|
| 373 |
+
"content": "<unused39>",
|
| 374 |
+
"lstrip": false,
|
| 375 |
+
"normalized": false,
|
| 376 |
+
"rstrip": false,
|
| 377 |
+
"single_word": false,
|
| 378 |
+
"special": false
|
| 379 |
+
},
|
| 380 |
+
"47": {
|
| 381 |
+
"content": "<unused40>",
|
| 382 |
+
"lstrip": false,
|
| 383 |
+
"normalized": false,
|
| 384 |
+
"rstrip": false,
|
| 385 |
+
"single_word": false,
|
| 386 |
+
"special": false
|
| 387 |
+
},
|
| 388 |
+
"48": {
|
| 389 |
+
"content": "<unused41>",
|
| 390 |
+
"lstrip": false,
|
| 391 |
+
"normalized": false,
|
| 392 |
+
"rstrip": false,
|
| 393 |
+
"single_word": false,
|
| 394 |
+
"special": false
|
| 395 |
+
},
|
| 396 |
+
"49": {
|
| 397 |
+
"content": "<unused42>",
|
| 398 |
+
"lstrip": false,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"rstrip": false,
|
| 401 |
+
"single_word": false,
|
| 402 |
+
"special": false
|
| 403 |
+
},
|
| 404 |
+
"50": {
|
| 405 |
+
"content": "<unused43>",
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"normalized": false,
|
| 408 |
+
"rstrip": false,
|
| 409 |
+
"single_word": false,
|
| 410 |
+
"special": false
|
| 411 |
+
},
|
| 412 |
+
"51": {
|
| 413 |
+
"content": "<unused44>",
|
| 414 |
+
"lstrip": false,
|
| 415 |
+
"normalized": false,
|
| 416 |
+
"rstrip": false,
|
| 417 |
+
"single_word": false,
|
| 418 |
+
"special": false
|
| 419 |
+
},
|
| 420 |
+
"52": {
|
| 421 |
+
"content": "<unused45>",
|
| 422 |
+
"lstrip": false,
|
| 423 |
+
"normalized": false,
|
| 424 |
+
"rstrip": false,
|
| 425 |
+
"single_word": false,
|
| 426 |
+
"special": false
|
| 427 |
+
},
|
| 428 |
+
"53": {
|
| 429 |
+
"content": "<unused46>",
|
| 430 |
+
"lstrip": false,
|
| 431 |
+
"normalized": false,
|
| 432 |
+
"rstrip": false,
|
| 433 |
+
"single_word": false,
|
| 434 |
+
"special": false
|
| 435 |
+
},
|
| 436 |
+
"54": {
|
| 437 |
+
"content": "<unused47>",
|
| 438 |
+
"lstrip": false,
|
| 439 |
+
"normalized": false,
|
| 440 |
+
"rstrip": false,
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"special": false
|
| 443 |
+
},
|
| 444 |
+
"55": {
|
| 445 |
+
"content": "<unused48>",
|
| 446 |
+
"lstrip": false,
|
| 447 |
+
"normalized": false,
|
| 448 |
+
"rstrip": false,
|
| 449 |
+
"single_word": false,
|
| 450 |
+
"special": false
|
| 451 |
+
},
|
| 452 |
+
"56": {
|
| 453 |
+
"content": "<unused49>",
|
| 454 |
+
"lstrip": false,
|
| 455 |
+
"normalized": false,
|
| 456 |
+
"rstrip": false,
|
| 457 |
+
"single_word": false,
|
| 458 |
+
"special": false
|
| 459 |
+
},
|
| 460 |
+
"57": {
|
| 461 |
+
"content": "<unused50>",
|
| 462 |
+
"lstrip": false,
|
| 463 |
+
"normalized": false,
|
| 464 |
+
"rstrip": false,
|
| 465 |
+
"single_word": false,
|
| 466 |
+
"special": false
|
| 467 |
+
},
|
| 468 |
+
"58": {
|
| 469 |
+
"content": "<unused51>",
|
| 470 |
+
"lstrip": false,
|
| 471 |
+
"normalized": false,
|
| 472 |
+
"rstrip": false,
|
| 473 |
+
"single_word": false,
|
| 474 |
+
"special": false
|
| 475 |
+
},
|
| 476 |
+
"59": {
|
| 477 |
+
"content": "<unused52>",
|
| 478 |
+
"lstrip": false,
|
| 479 |
+
"normalized": false,
|
| 480 |
+
"rstrip": false,
|
| 481 |
+
"single_word": false,
|
| 482 |
+
"special": false
|
| 483 |
+
},
|
| 484 |
+
"60": {
|
| 485 |
+
"content": "<unused53>",
|
| 486 |
+
"lstrip": false,
|
| 487 |
+
"normalized": false,
|
| 488 |
+
"rstrip": false,
|
| 489 |
+
"single_word": false,
|
| 490 |
+
"special": false
|
| 491 |
+
},
|
| 492 |
+
"61": {
|
| 493 |
+
"content": "<unused54>",
|
| 494 |
+
"lstrip": false,
|
| 495 |
+
"normalized": false,
|
| 496 |
+
"rstrip": false,
|
| 497 |
+
"single_word": false,
|
| 498 |
+
"special": false
|
| 499 |
+
},
|
| 500 |
+
"62": {
|
| 501 |
+
"content": "<unused55>",
|
| 502 |
+
"lstrip": false,
|
| 503 |
+
"normalized": false,
|
| 504 |
+
"rstrip": false,
|
| 505 |
+
"single_word": false,
|
| 506 |
+
"special": false
|
| 507 |
+
},
|
| 508 |
+
"63": {
|
| 509 |
+
"content": "<unused56>",
|
| 510 |
+
"lstrip": false,
|
| 511 |
+
"normalized": false,
|
| 512 |
+
"rstrip": false,
|
| 513 |
+
"single_word": false,
|
| 514 |
+
"special": false
|
| 515 |
+
},
|
| 516 |
+
"64": {
|
| 517 |
+
"content": "<unused57>",
|
| 518 |
+
"lstrip": false,
|
| 519 |
+
"normalized": false,
|
| 520 |
+
"rstrip": false,
|
| 521 |
+
"single_word": false,
|
| 522 |
+
"special": false
|
| 523 |
+
},
|
| 524 |
+
"65": {
|
| 525 |
+
"content": "<unused58>",
|
| 526 |
+
"lstrip": false,
|
| 527 |
+
"normalized": false,
|
| 528 |
+
"rstrip": false,
|
| 529 |
+
"single_word": false,
|
| 530 |
+
"special": false
|
| 531 |
+
},
|
| 532 |
+
"66": {
|
| 533 |
+
"content": "<unused59>",
|
| 534 |
+
"lstrip": false,
|
| 535 |
+
"normalized": false,
|
| 536 |
+
"rstrip": false,
|
| 537 |
+
"single_word": false,
|
| 538 |
+
"special": false
|
| 539 |
+
},
|
| 540 |
+
"67": {
|
| 541 |
+
"content": "<unused60>",
|
| 542 |
+
"lstrip": false,
|
| 543 |
+
"normalized": false,
|
| 544 |
+
"rstrip": false,
|
| 545 |
+
"single_word": false,
|
| 546 |
+
"special": false
|
| 547 |
+
},
|
| 548 |
+
"68": {
|
| 549 |
+
"content": "<unused61>",
|
| 550 |
+
"lstrip": false,
|
| 551 |
+
"normalized": false,
|
| 552 |
+
"rstrip": false,
|
| 553 |
+
"single_word": false,
|
| 554 |
+
"special": false
|
| 555 |
+
},
|
| 556 |
+
"69": {
|
| 557 |
+
"content": "<unused62>",
|
| 558 |
+
"lstrip": false,
|
| 559 |
+
"normalized": false,
|
| 560 |
+
"rstrip": false,
|
| 561 |
+
"single_word": false,
|
| 562 |
+
"special": false
|
| 563 |
+
},
|
| 564 |
+
"70": {
|
| 565 |
+
"content": "<unused63>",
|
| 566 |
+
"lstrip": false,
|
| 567 |
+
"normalized": false,
|
| 568 |
+
"rstrip": false,
|
| 569 |
+
"single_word": false,
|
| 570 |
+
"special": false
|
| 571 |
+
},
|
| 572 |
+
"71": {
|
| 573 |
+
"content": "<unused64>",
|
| 574 |
+
"lstrip": false,
|
| 575 |
+
"normalized": false,
|
| 576 |
+
"rstrip": false,
|
| 577 |
+
"single_word": false,
|
| 578 |
+
"special": false
|
| 579 |
+
},
|
| 580 |
+
"72": {
|
| 581 |
+
"content": "<unused65>",
|
| 582 |
+
"lstrip": false,
|
| 583 |
+
"normalized": false,
|
| 584 |
+
"rstrip": false,
|
| 585 |
+
"single_word": false,
|
| 586 |
+
"special": false
|
| 587 |
+
},
|
| 588 |
+
"73": {
|
| 589 |
+
"content": "<unused66>",
|
| 590 |
+
"lstrip": false,
|
| 591 |
+
"normalized": false,
|
| 592 |
+
"rstrip": false,
|
| 593 |
+
"single_word": false,
|
| 594 |
+
"special": false
|
| 595 |
+
},
|
| 596 |
+
"74": {
|
| 597 |
+
"content": "<unused67>",
|
| 598 |
+
"lstrip": false,
|
| 599 |
+
"normalized": false,
|
| 600 |
+
"rstrip": false,
|
| 601 |
+
"single_word": false,
|
| 602 |
+
"special": false
|
| 603 |
+
},
|
| 604 |
+
"75": {
|
| 605 |
+
"content": "<unused68>",
|
| 606 |
+
"lstrip": false,
|
| 607 |
+
"normalized": false,
|
| 608 |
+
"rstrip": false,
|
| 609 |
+
"single_word": false,
|
| 610 |
+
"special": false
|
| 611 |
+
},
|
| 612 |
+
"76": {
|
| 613 |
+
"content": "<unused69>",
|
| 614 |
+
"lstrip": false,
|
| 615 |
+
"normalized": false,
|
| 616 |
+
"rstrip": false,
|
| 617 |
+
"single_word": false,
|
| 618 |
+
"special": false
|
| 619 |
+
},
|
| 620 |
+
"77": {
|
| 621 |
+
"content": "<unused70>",
|
| 622 |
+
"lstrip": false,
|
| 623 |
+
"normalized": false,
|
| 624 |
+
"rstrip": false,
|
| 625 |
+
"single_word": false,
|
| 626 |
+
"special": false
|
| 627 |
+
},
|
| 628 |
+
"78": {
|
| 629 |
+
"content": "<unused71>",
|
| 630 |
+
"lstrip": false,
|
| 631 |
+
"normalized": false,
|
| 632 |
+
"rstrip": false,
|
| 633 |
+
"single_word": false,
|
| 634 |
+
"special": false
|
| 635 |
+
},
|
| 636 |
+
"79": {
|
| 637 |
+
"content": "<unused72>",
|
| 638 |
+
"lstrip": false,
|
| 639 |
+
"normalized": false,
|
| 640 |
+
"rstrip": false,
|
| 641 |
+
"single_word": false,
|
| 642 |
+
"special": false
|
| 643 |
+
},
|
| 644 |
+
"80": {
|
| 645 |
+
"content": "<unused73>",
|
| 646 |
+
"lstrip": false,
|
| 647 |
+
"normalized": false,
|
| 648 |
+
"rstrip": false,
|
| 649 |
+
"single_word": false,
|
| 650 |
+
"special": false
|
| 651 |
+
},
|
| 652 |
+
"81": {
|
| 653 |
+
"content": "<unused74>",
|
| 654 |
+
"lstrip": false,
|
| 655 |
+
"normalized": false,
|
| 656 |
+
"rstrip": false,
|
| 657 |
+
"single_word": false,
|
| 658 |
+
"special": false
|
| 659 |
+
},
|
| 660 |
+
"82": {
|
| 661 |
+
"content": "<unused75>",
|
| 662 |
+
"lstrip": false,
|
| 663 |
+
"normalized": false,
|
| 664 |
+
"rstrip": false,
|
| 665 |
+
"single_word": false,
|
| 666 |
+
"special": false
|
| 667 |
+
},
|
| 668 |
+
"83": {
|
| 669 |
+
"content": "<unused76>",
|
| 670 |
+
"lstrip": false,
|
| 671 |
+
"normalized": false,
|
| 672 |
+
"rstrip": false,
|
| 673 |
+
"single_word": false,
|
| 674 |
+
"special": false
|
| 675 |
+
},
|
| 676 |
+
"84": {
|
| 677 |
+
"content": "<unused77>",
|
| 678 |
+
"lstrip": false,
|
| 679 |
+
"normalized": false,
|
| 680 |
+
"rstrip": false,
|
| 681 |
+
"single_word": false,
|
| 682 |
+
"special": false
|
| 683 |
+
},
|
| 684 |
+
"85": {
|
| 685 |
+
"content": "<unused78>",
|
| 686 |
+
"lstrip": false,
|
| 687 |
+
"normalized": false,
|
| 688 |
+
"rstrip": false,
|
| 689 |
+
"single_word": false,
|
| 690 |
+
"special": false
|
| 691 |
+
},
|
| 692 |
+
"86": {
|
| 693 |
+
"content": "<unused79>",
|
| 694 |
+
"lstrip": false,
|
| 695 |
+
"normalized": false,
|
| 696 |
+
"rstrip": false,
|
| 697 |
+
"single_word": false,
|
| 698 |
+
"special": false
|
| 699 |
+
},
|
| 700 |
+
"87": {
|
| 701 |
+
"content": "<unused80>",
|
| 702 |
+
"lstrip": false,
|
| 703 |
+
"normalized": false,
|
| 704 |
+
"rstrip": false,
|
| 705 |
+
"single_word": false,
|
| 706 |
+
"special": false
|
| 707 |
+
},
|
| 708 |
+
"88": {
|
| 709 |
+
"content": "<unused81>",
|
| 710 |
+
"lstrip": false,
|
| 711 |
+
"normalized": false,
|
| 712 |
+
"rstrip": false,
|
| 713 |
+
"single_word": false,
|
| 714 |
+
"special": false
|
| 715 |
+
},
|
| 716 |
+
"89": {
|
| 717 |
+
"content": "<unused82>",
|
| 718 |
+
"lstrip": false,
|
| 719 |
+
"normalized": false,
|
| 720 |
+
"rstrip": false,
|
| 721 |
+
"single_word": false,
|
| 722 |
+
"special": false
|
| 723 |
+
},
|
| 724 |
+
"90": {
|
| 725 |
+
"content": "<unused83>",
|
| 726 |
+
"lstrip": false,
|
| 727 |
+
"normalized": false,
|
| 728 |
+
"rstrip": false,
|
| 729 |
+
"single_word": false,
|
| 730 |
+
"special": false
|
| 731 |
+
},
|
| 732 |
+
"91": {
|
| 733 |
+
"content": "<unused84>",
|
| 734 |
+
"lstrip": false,
|
| 735 |
+
"normalized": false,
|
| 736 |
+
"rstrip": false,
|
| 737 |
+
"single_word": false,
|
| 738 |
+
"special": false
|
| 739 |
+
},
|
| 740 |
+
"92": {
|
| 741 |
+
"content": "<unused85>",
|
| 742 |
+
"lstrip": false,
|
| 743 |
+
"normalized": false,
|
| 744 |
+
"rstrip": false,
|
| 745 |
+
"single_word": false,
|
| 746 |
+
"special": false
|
| 747 |
+
},
|
| 748 |
+
"93": {
|
| 749 |
+
"content": "<unused86>",
|
| 750 |
+
"lstrip": false,
|
| 751 |
+
"normalized": false,
|
| 752 |
+
"rstrip": false,
|
| 753 |
+
"single_word": false,
|
| 754 |
+
"special": false
|
| 755 |
+
},
|
| 756 |
+
"94": {
|
| 757 |
+
"content": "<unused87>",
|
| 758 |
+
"lstrip": false,
|
| 759 |
+
"normalized": false,
|
| 760 |
+
"rstrip": false,
|
| 761 |
+
"single_word": false,
|
| 762 |
+
"special": false
|
| 763 |
+
},
|
| 764 |
+
"95": {
|
| 765 |
+
"content": "<unused88>",
|
| 766 |
+
"lstrip": false,
|
| 767 |
+
"normalized": false,
|
| 768 |
+
"rstrip": false,
|
| 769 |
+
"single_word": false,
|
| 770 |
+
"special": false
|
| 771 |
+
},
|
| 772 |
+
"96": {
|
| 773 |
+
"content": "<unused89>",
|
| 774 |
+
"lstrip": false,
|
| 775 |
+
"normalized": false,
|
| 776 |
+
"rstrip": false,
|
| 777 |
+
"single_word": false,
|
| 778 |
+
"special": false
|
| 779 |
+
},
|
| 780 |
+
"97": {
|
| 781 |
+
"content": "<unused90>",
|
| 782 |
+
"lstrip": false,
|
| 783 |
+
"normalized": false,
|
| 784 |
+
"rstrip": false,
|
| 785 |
+
"single_word": false,
|
| 786 |
+
"special": false
|
| 787 |
+
},
|
| 788 |
+
"98": {
|
| 789 |
+
"content": "<unused91>",
|
| 790 |
+
"lstrip": false,
|
| 791 |
+
"normalized": false,
|
| 792 |
+
"rstrip": false,
|
| 793 |
+
"single_word": false,
|
| 794 |
+
"special": false
|
| 795 |
+
},
|
| 796 |
+
"99": {
|
| 797 |
+
"content": "<unused92>",
|
| 798 |
+
"lstrip": false,
|
| 799 |
+
"normalized": false,
|
| 800 |
+
"rstrip": false,
|
| 801 |
+
"single_word": false,
|
| 802 |
+
"special": false
|
| 803 |
+
},
|
| 804 |
+
"100": {
|
| 805 |
+
"content": "<unused93>",
|
| 806 |
+
"lstrip": false,
|
| 807 |
+
"normalized": false,
|
| 808 |
+
"rstrip": false,
|
| 809 |
+
"single_word": false,
|
| 810 |
+
"special": false
|
| 811 |
+
},
|
| 812 |
+
"101": {
|
| 813 |
+
"content": "<unused94>",
|
| 814 |
+
"lstrip": false,
|
| 815 |
+
"normalized": false,
|
| 816 |
+
"rstrip": false,
|
| 817 |
+
"single_word": false,
|
| 818 |
+
"special": false
|
| 819 |
+
},
|
| 820 |
+
"102": {
|
| 821 |
+
"content": "<unused95>",
|
| 822 |
+
"lstrip": false,
|
| 823 |
+
"normalized": false,
|
| 824 |
+
"rstrip": false,
|
| 825 |
+
"single_word": false,
|
| 826 |
+
"special": false
|
| 827 |
+
},
|
| 828 |
+
"103": {
|
| 829 |
+
"content": "<unused96>",
|
| 830 |
+
"lstrip": false,
|
| 831 |
+
"normalized": false,
|
| 832 |
+
"rstrip": false,
|
| 833 |
+
"single_word": false,
|
| 834 |
+
"special": false
|
| 835 |
+
},
|
| 836 |
+
"104": {
|
| 837 |
+
"content": "<unused97>",
|
| 838 |
+
"lstrip": false,
|
| 839 |
+
"normalized": false,
|
| 840 |
+
"rstrip": false,
|
| 841 |
+
"single_word": false,
|
| 842 |
+
"special": false
|
| 843 |
+
},
|
| 844 |
+
"105": {
|
| 845 |
+
"content": "<unused98>",
|
| 846 |
+
"lstrip": false,
|
| 847 |
+
"normalized": false,
|
| 848 |
+
"rstrip": false,
|
| 849 |
+
"single_word": false,
|
| 850 |
+
"special": false
|
| 851 |
+
},
|
| 852 |
+
"106": {
|
| 853 |
+
"content": "<start_of_turn>",
|
| 854 |
+
"lstrip": false,
|
| 855 |
+
"normalized": false,
|
| 856 |
+
"rstrip": false,
|
| 857 |
+
"single_word": false,
|
| 858 |
+
"special": true
|
| 859 |
+
},
|
| 860 |
+
"107": {
|
| 861 |
+
"content": "<end_of_turn>",
|
| 862 |
+
"lstrip": false,
|
| 863 |
+
"normalized": false,
|
| 864 |
+
"rstrip": false,
|
| 865 |
+
"single_word": false,
|
| 866 |
+
"special": true
|
| 867 |
+
},
|
| 868 |
+
"108": {
|
| 869 |
+
"content": "\n",
|
| 870 |
+
"lstrip": false,
|
| 871 |
+
"normalized": false,
|
| 872 |
+
"rstrip": false,
|
| 873 |
+
"single_word": false,
|
| 874 |
+
"special": false
|
| 875 |
+
},
|
| 876 |
+
"109": {
|
| 877 |
+
"content": "\n\n",
|
| 878 |
+
"lstrip": false,
|
| 879 |
+
"normalized": false,
|
| 880 |
+
"rstrip": false,
|
| 881 |
+
"single_word": false,
|
| 882 |
+
"special": false
|
| 883 |
+
},
|
| 884 |
+
"110": {
|
| 885 |
+
"content": "\n\n\n",
|
| 886 |
+
"lstrip": false,
|
| 887 |
+
"normalized": false,
|
| 888 |
+
"rstrip": false,
|
| 889 |
+
"single_word": false,
|
| 890 |
+
"special": false
|
| 891 |
+
},
|
| 892 |
+
"111": {
|
| 893 |
+
"content": "\n\n\n\n",
|
| 894 |
+
"lstrip": false,
|
| 895 |
+
"normalized": false,
|
| 896 |
+
"rstrip": false,
|
| 897 |
+
"single_word": false,
|
| 898 |
+
"special": false
|
| 899 |
+
},
|
| 900 |
+
"112": {
|
| 901 |
+
"content": "\n\n\n\n\n",
|
| 902 |
+
"lstrip": false,
|
| 903 |
+
"normalized": false,
|
| 904 |
+
"rstrip": false,
|
| 905 |
+
"single_word": false,
|
| 906 |
+
"special": false
|
| 907 |
+
},
|
| 908 |
+
"113": {
|
| 909 |
+
"content": "\n\n\n\n\n\n",
|
| 910 |
+
"lstrip": false,
|
| 911 |
+
"normalized": false,
|
| 912 |
+
"rstrip": false,
|
| 913 |
+
"single_word": false,
|
| 914 |
+
"special": false
|
| 915 |
+
},
|
| 916 |
+
"114": {
|
| 917 |
+
"content": "\n\n\n\n\n\n\n",
|
| 918 |
+
"lstrip": false,
|
| 919 |
+
"normalized": false,
|
| 920 |
+
"rstrip": false,
|
| 921 |
+
"single_word": false,
|
| 922 |
+
"special": false
|
| 923 |
+
},
|
| 924 |
+
"115": {
|
| 925 |
+
"content": "\n\n\n\n\n\n\n\n",
|
| 926 |
+
"lstrip": false,
|
| 927 |
+
"normalized": false,
|
| 928 |
+
"rstrip": false,
|
| 929 |
+
"single_word": false,
|
| 930 |
+
"special": false
|
| 931 |
+
},
|
| 932 |
+
"116": {
|
| 933 |
+
"content": "\n\n\n\n\n\n\n\n\n",
|
| 934 |
+
"lstrip": false,
|
| 935 |
+
"normalized": false,
|
| 936 |
+
"rstrip": false,
|
| 937 |
+
"single_word": false,
|
| 938 |
+
"special": false
|
| 939 |
+
},
|
| 940 |
+
"117": {
|
| 941 |
+
"content": "\n\n\n\n\n\n\n\n\n\n",
|
| 942 |
+
"lstrip": false,
|
| 943 |
+
"normalized": false,
|
| 944 |
+
"rstrip": false,
|
| 945 |
+
"single_word": false,
|
| 946 |
+
"special": false
|
| 947 |
+
},
|
| 948 |
+
"118": {
|
| 949 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n",
|
| 950 |
+
"lstrip": false,
|
| 951 |
+
"normalized": false,
|
| 952 |
+
"rstrip": false,
|
| 953 |
+
"single_word": false,
|
| 954 |
+
"special": false
|
| 955 |
+
},
|
| 956 |
+
"119": {
|
| 957 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 958 |
+
"lstrip": false,
|
| 959 |
+
"normalized": false,
|
| 960 |
+
"rstrip": false,
|
| 961 |
+
"single_word": false,
|
| 962 |
+
"special": false
|
| 963 |
+
},
|
| 964 |
+
"120": {
|
| 965 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 966 |
+
"lstrip": false,
|
| 967 |
+
"normalized": false,
|
| 968 |
+
"rstrip": false,
|
| 969 |
+
"single_word": false,
|
| 970 |
+
"special": false
|
| 971 |
+
},
|
| 972 |
+
"121": {
|
| 973 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 974 |
+
"lstrip": false,
|
| 975 |
+
"normalized": false,
|
| 976 |
+
"rstrip": false,
|
| 977 |
+
"single_word": false,
|
| 978 |
+
"special": false
|
| 979 |
+
},
|
| 980 |
+
"122": {
|
| 981 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 982 |
+
"lstrip": false,
|
| 983 |
+
"normalized": false,
|
| 984 |
+
"rstrip": false,
|
| 985 |
+
"single_word": false,
|
| 986 |
+
"special": false
|
| 987 |
+
},
|
| 988 |
+
"123": {
|
| 989 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 990 |
+
"lstrip": false,
|
| 991 |
+
"normalized": false,
|
| 992 |
+
"rstrip": false,
|
| 993 |
+
"single_word": false,
|
| 994 |
+
"special": false
|
| 995 |
+
},
|
| 996 |
+
"124": {
|
| 997 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 998 |
+
"lstrip": false,
|
| 999 |
+
"normalized": false,
|
| 1000 |
+
"rstrip": false,
|
| 1001 |
+
"single_word": false,
|
| 1002 |
+
"special": false
|
| 1003 |
+
},
|
| 1004 |
+
"125": {
|
| 1005 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1006 |
+
"lstrip": false,
|
| 1007 |
+
"normalized": false,
|
| 1008 |
+
"rstrip": false,
|
| 1009 |
+
"single_word": false,
|
| 1010 |
+
"special": false
|
| 1011 |
+
},
|
| 1012 |
+
"126": {
|
| 1013 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1014 |
+
"lstrip": false,
|
| 1015 |
+
"normalized": false,
|
| 1016 |
+
"rstrip": false,
|
| 1017 |
+
"single_word": false,
|
| 1018 |
+
"special": false
|
| 1019 |
+
},
|
| 1020 |
+
"127": {
|
| 1021 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1022 |
+
"lstrip": false,
|
| 1023 |
+
"normalized": false,
|
| 1024 |
+
"rstrip": false,
|
| 1025 |
+
"single_word": false,
|
| 1026 |
+
"special": false
|
| 1027 |
+
},
|
| 1028 |
+
"128": {
|
| 1029 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1030 |
+
"lstrip": false,
|
| 1031 |
+
"normalized": false,
|
| 1032 |
+
"rstrip": false,
|
| 1033 |
+
"single_word": false,
|
| 1034 |
+
"special": false
|
| 1035 |
+
},
|
| 1036 |
+
"129": {
|
| 1037 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1038 |
+
"lstrip": false,
|
| 1039 |
+
"normalized": false,
|
| 1040 |
+
"rstrip": false,
|
| 1041 |
+
"single_word": false,
|
| 1042 |
+
"special": false
|
| 1043 |
+
},
|
| 1044 |
+
"130": {
|
| 1045 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1046 |
+
"lstrip": false,
|
| 1047 |
+
"normalized": false,
|
| 1048 |
+
"rstrip": false,
|
| 1049 |
+
"single_word": false,
|
| 1050 |
+
"special": false
|
| 1051 |
+
},
|
| 1052 |
+
"131": {
|
| 1053 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1054 |
+
"lstrip": false,
|
| 1055 |
+
"normalized": false,
|
| 1056 |
+
"rstrip": false,
|
| 1057 |
+
"single_word": false,
|
| 1058 |
+
"special": false
|
| 1059 |
+
},
|
| 1060 |
+
"132": {
|
| 1061 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1062 |
+
"lstrip": false,
|
| 1063 |
+
"normalized": false,
|
| 1064 |
+
"rstrip": false,
|
| 1065 |
+
"single_word": false,
|
| 1066 |
+
"special": false
|
| 1067 |
+
},
|
| 1068 |
+
"133": {
|
| 1069 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1070 |
+
"lstrip": false,
|
| 1071 |
+
"normalized": false,
|
| 1072 |
+
"rstrip": false,
|
| 1073 |
+
"single_word": false,
|
| 1074 |
+
"special": false
|
| 1075 |
+
},
|
| 1076 |
+
"134": {
|
| 1077 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1078 |
+
"lstrip": false,
|
| 1079 |
+
"normalized": false,
|
| 1080 |
+
"rstrip": false,
|
| 1081 |
+
"single_word": false,
|
| 1082 |
+
"special": false
|
| 1083 |
+
},
|
| 1084 |
+
"135": {
|
| 1085 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1086 |
+
"lstrip": false,
|
| 1087 |
+
"normalized": false,
|
| 1088 |
+
"rstrip": false,
|
| 1089 |
+
"single_word": false,
|
| 1090 |
+
"special": false
|
| 1091 |
+
},
|
| 1092 |
+
"136": {
|
| 1093 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1094 |
+
"lstrip": false,
|
| 1095 |
+
"normalized": false,
|
| 1096 |
+
"rstrip": false,
|
| 1097 |
+
"single_word": false,
|
| 1098 |
+
"special": false
|
| 1099 |
+
},
|
| 1100 |
+
"137": {
|
| 1101 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1102 |
+
"lstrip": false,
|
| 1103 |
+
"normalized": false,
|
| 1104 |
+
"rstrip": false,
|
| 1105 |
+
"single_word": false,
|
| 1106 |
+
"special": false
|
| 1107 |
+
},
|
| 1108 |
+
"138": {
|
| 1109 |
+
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n",
|
| 1110 |
+
"lstrip": false,
|
| 1111 |
+
"normalized": false,
|
| 1112 |
+
"rstrip": false,
|
| 1113 |
+
"single_word": false,
|
| 1114 |
+
"special": false
|
| 1115 |
+
},
|
| 1116 |
+
"139": {
|
| 1117 |
+
"content": "▁▁",
|
| 1118 |
+
"lstrip": false,
|
| 1119 |
+
"normalized": false,
|
| 1120 |
+
"rstrip": false,
|
| 1121 |
+
"single_word": false,
|
| 1122 |
+
"special": false
|
| 1123 |
+
},
|
| 1124 |
+
"140": {
|
| 1125 |
+
"content": "▁▁▁",
|
| 1126 |
+
"lstrip": false,
|
| 1127 |
+
"normalized": false,
|
| 1128 |
+
"rstrip": false,
|
| 1129 |
+
"single_word": false,
|
| 1130 |
+
"special": false
|
| 1131 |
+
},
|
| 1132 |
+
"141": {
|
| 1133 |
+
"content": "▁▁▁▁",
|
| 1134 |
+
"lstrip": false,
|
| 1135 |
+
"normalized": false,
|
| 1136 |
+
"rstrip": false,
|
| 1137 |
+
"single_word": false,
|
| 1138 |
+
"special": false
|
| 1139 |
+
},
|
| 1140 |
+
"142": {
|
| 1141 |
+
"content": "▁▁▁▁▁",
|
| 1142 |
+
"lstrip": false,
|
| 1143 |
+
"normalized": false,
|
| 1144 |
+
"rstrip": false,
|
| 1145 |
+
"single_word": false,
|
| 1146 |
+
"special": false
|
| 1147 |
+
},
|
| 1148 |
+
"143": {
|
| 1149 |
+
"content": "▁▁▁▁▁▁",
|
| 1150 |
+
"lstrip": false,
|
| 1151 |
+
"normalized": false,
|
| 1152 |
+
"rstrip": false,
|
| 1153 |
+
"single_word": false,
|
| 1154 |
+
"special": false
|
| 1155 |
+
},
|
| 1156 |
+
"144": {
|
| 1157 |
+
"content": "▁▁▁▁▁▁▁",
|
| 1158 |
+
"lstrip": false,
|
| 1159 |
+
"normalized": false,
|
| 1160 |
+
"rstrip": false,
|
| 1161 |
+
"single_word": false,
|
| 1162 |
+
"special": false
|
| 1163 |
+
},
|
| 1164 |
+
"145": {
|
| 1165 |
+
"content": "▁▁▁▁▁▁▁▁",
|
| 1166 |
+
"lstrip": false,
|
| 1167 |
+
"normalized": false,
|
| 1168 |
+
"rstrip": false,
|
| 1169 |
+
"single_word": false,
|
| 1170 |
+
"special": false
|
| 1171 |
+
},
|
| 1172 |
+
"146": {
|
| 1173 |
+
"content": "▁▁▁▁▁▁▁▁▁",
|
| 1174 |
+
"lstrip": false,
|
| 1175 |
+
"normalized": false,
|
| 1176 |
+
"rstrip": false,
|
| 1177 |
+
"single_word": false,
|
| 1178 |
+
"special": false
|
| 1179 |
+
},
|
| 1180 |
+
"147": {
|
| 1181 |
+
"content": "▁▁▁▁▁▁▁▁▁▁",
|
| 1182 |
+
"lstrip": false,
|
| 1183 |
+
"normalized": false,
|
| 1184 |
+
"rstrip": false,
|
| 1185 |
+
"single_word": false,
|
| 1186 |
+
"special": false
|
| 1187 |
+
},
|
| 1188 |
+
"148": {
|
| 1189 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁",
|
| 1190 |
+
"lstrip": false,
|
| 1191 |
+
"normalized": false,
|
| 1192 |
+
"rstrip": false,
|
| 1193 |
+
"single_word": false,
|
| 1194 |
+
"special": false
|
| 1195 |
+
},
|
| 1196 |
+
"149": {
|
| 1197 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1198 |
+
"lstrip": false,
|
| 1199 |
+
"normalized": false,
|
| 1200 |
+
"rstrip": false,
|
| 1201 |
+
"single_word": false,
|
| 1202 |
+
"special": false
|
| 1203 |
+
},
|
| 1204 |
+
"150": {
|
| 1205 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1206 |
+
"lstrip": false,
|
| 1207 |
+
"normalized": false,
|
| 1208 |
+
"rstrip": false,
|
| 1209 |
+
"single_word": false,
|
| 1210 |
+
"special": false
|
| 1211 |
+
},
|
| 1212 |
+
"151": {
|
| 1213 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1214 |
+
"lstrip": false,
|
| 1215 |
+
"normalized": false,
|
| 1216 |
+
"rstrip": false,
|
| 1217 |
+
"single_word": false,
|
| 1218 |
+
"special": false
|
| 1219 |
+
},
|
| 1220 |
+
"152": {
|
| 1221 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1222 |
+
"lstrip": false,
|
| 1223 |
+
"normalized": false,
|
| 1224 |
+
"rstrip": false,
|
| 1225 |
+
"single_word": false,
|
| 1226 |
+
"special": false
|
| 1227 |
+
},
|
| 1228 |
+
"153": {
|
| 1229 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1230 |
+
"lstrip": false,
|
| 1231 |
+
"normalized": false,
|
| 1232 |
+
"rstrip": false,
|
| 1233 |
+
"single_word": false,
|
| 1234 |
+
"special": false
|
| 1235 |
+
},
|
| 1236 |
+
"154": {
|
| 1237 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1238 |
+
"lstrip": false,
|
| 1239 |
+
"normalized": false,
|
| 1240 |
+
"rstrip": false,
|
| 1241 |
+
"single_word": false,
|
| 1242 |
+
"special": false
|
| 1243 |
+
},
|
| 1244 |
+
"155": {
|
| 1245 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1246 |
+
"lstrip": false,
|
| 1247 |
+
"normalized": false,
|
| 1248 |
+
"rstrip": false,
|
| 1249 |
+
"single_word": false,
|
| 1250 |
+
"special": false
|
| 1251 |
+
},
|
| 1252 |
+
"156": {
|
| 1253 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1254 |
+
"lstrip": false,
|
| 1255 |
+
"normalized": false,
|
| 1256 |
+
"rstrip": false,
|
| 1257 |
+
"single_word": false,
|
| 1258 |
+
"special": false
|
| 1259 |
+
},
|
| 1260 |
+
"157": {
|
| 1261 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1262 |
+
"lstrip": false,
|
| 1263 |
+
"normalized": false,
|
| 1264 |
+
"rstrip": false,
|
| 1265 |
+
"single_word": false,
|
| 1266 |
+
"special": false
|
| 1267 |
+
},
|
| 1268 |
+
"158": {
|
| 1269 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1270 |
+
"lstrip": false,
|
| 1271 |
+
"normalized": false,
|
| 1272 |
+
"rstrip": false,
|
| 1273 |
+
"single_word": false,
|
| 1274 |
+
"special": false
|
| 1275 |
+
},
|
| 1276 |
+
"159": {
|
| 1277 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1278 |
+
"lstrip": false,
|
| 1279 |
+
"normalized": false,
|
| 1280 |
+
"rstrip": false,
|
| 1281 |
+
"single_word": false,
|
| 1282 |
+
"special": false
|
| 1283 |
+
},
|
| 1284 |
+
"160": {
|
| 1285 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1286 |
+
"lstrip": false,
|
| 1287 |
+
"normalized": false,
|
| 1288 |
+
"rstrip": false,
|
| 1289 |
+
"single_word": false,
|
| 1290 |
+
"special": false
|
| 1291 |
+
},
|
| 1292 |
+
"161": {
|
| 1293 |
+
"content": "▁▁▁���▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1294 |
+
"lstrip": false,
|
| 1295 |
+
"normalized": false,
|
| 1296 |
+
"rstrip": false,
|
| 1297 |
+
"single_word": false,
|
| 1298 |
+
"special": false
|
| 1299 |
+
},
|
| 1300 |
+
"162": {
|
| 1301 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1302 |
+
"lstrip": false,
|
| 1303 |
+
"normalized": false,
|
| 1304 |
+
"rstrip": false,
|
| 1305 |
+
"single_word": false,
|
| 1306 |
+
"special": false
|
| 1307 |
+
},
|
| 1308 |
+
"163": {
|
| 1309 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1310 |
+
"lstrip": false,
|
| 1311 |
+
"normalized": false,
|
| 1312 |
+
"rstrip": false,
|
| 1313 |
+
"single_word": false,
|
| 1314 |
+
"special": false
|
| 1315 |
+
},
|
| 1316 |
+
"164": {
|
| 1317 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1318 |
+
"lstrip": false,
|
| 1319 |
+
"normalized": false,
|
| 1320 |
+
"rstrip": false,
|
| 1321 |
+
"single_word": false,
|
| 1322 |
+
"special": false
|
| 1323 |
+
},
|
| 1324 |
+
"165": {
|
| 1325 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1326 |
+
"lstrip": false,
|
| 1327 |
+
"normalized": false,
|
| 1328 |
+
"rstrip": false,
|
| 1329 |
+
"single_word": false,
|
| 1330 |
+
"special": false
|
| 1331 |
+
},
|
| 1332 |
+
"166": {
|
| 1333 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1334 |
+
"lstrip": false,
|
| 1335 |
+
"normalized": false,
|
| 1336 |
+
"rstrip": false,
|
| 1337 |
+
"single_word": false,
|
| 1338 |
+
"special": false
|
| 1339 |
+
},
|
| 1340 |
+
"167": {
|
| 1341 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1342 |
+
"lstrip": false,
|
| 1343 |
+
"normalized": false,
|
| 1344 |
+
"rstrip": false,
|
| 1345 |
+
"single_word": false,
|
| 1346 |
+
"special": false
|
| 1347 |
+
},
|
| 1348 |
+
"168": {
|
| 1349 |
+
"content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁",
|
| 1350 |
+
"lstrip": false,
|
| 1351 |
+
"normalized": false,
|
| 1352 |
+
"rstrip": false,
|
| 1353 |
+
"single_word": false,
|
| 1354 |
+
"special": false
|
| 1355 |
+
},
|
| 1356 |
+
"169": {
|
| 1357 |
+
"content": "<table>",
|
| 1358 |
+
"lstrip": false,
|
| 1359 |
+
"normalized": false,
|
| 1360 |
+
"rstrip": false,
|
| 1361 |
+
"single_word": false,
|
| 1362 |
+
"special": false
|
| 1363 |
+
},
|
| 1364 |
+
"170": {
|
| 1365 |
+
"content": "<caption>",
|
| 1366 |
+
"lstrip": false,
|
| 1367 |
+
"normalized": false,
|
| 1368 |
+
"rstrip": false,
|
| 1369 |
+
"single_word": false,
|
| 1370 |
+
"special": false
|
| 1371 |
+
},
|
| 1372 |
+
"171": {
|
| 1373 |
+
"content": "<thead>",
|
| 1374 |
+
"lstrip": false,
|
| 1375 |
+
"normalized": false,
|
| 1376 |
+
"rstrip": false,
|
| 1377 |
+
"single_word": false,
|
| 1378 |
+
"special": false
|
| 1379 |
+
},
|
| 1380 |
+
"172": {
|
| 1381 |
+
"content": "<tbody>",
|
| 1382 |
+
"lstrip": false,
|
| 1383 |
+
"normalized": false,
|
| 1384 |
+
"rstrip": false,
|
| 1385 |
+
"single_word": false,
|
| 1386 |
+
"special": false
|
| 1387 |
+
},
|
| 1388 |
+
"173": {
|
| 1389 |
+
"content": "<tfoot>",
|
| 1390 |
+
"lstrip": false,
|
| 1391 |
+
"normalized": false,
|
| 1392 |
+
"rstrip": false,
|
| 1393 |
+
"single_word": false,
|
| 1394 |
+
"special": false
|
| 1395 |
+
},
|
| 1396 |
+
"174": {
|
| 1397 |
+
"content": "<tr>",
|
| 1398 |
+
"lstrip": false,
|
| 1399 |
+
"normalized": false,
|
| 1400 |
+
"rstrip": false,
|
| 1401 |
+
"single_word": false,
|
| 1402 |
+
"special": false
|
| 1403 |
+
},
|
| 1404 |
+
"175": {
|
| 1405 |
+
"content": "<th>",
|
| 1406 |
+
"lstrip": false,
|
| 1407 |
+
"normalized": false,
|
| 1408 |
+
"rstrip": false,
|
| 1409 |
+
"single_word": false,
|
| 1410 |
+
"special": false
|
| 1411 |
+
},
|
| 1412 |
+
"176": {
|
| 1413 |
+
"content": "<td>",
|
| 1414 |
+
"lstrip": false,
|
| 1415 |
+
"normalized": false,
|
| 1416 |
+
"rstrip": false,
|
| 1417 |
+
"single_word": false,
|
| 1418 |
+
"special": false
|
| 1419 |
+
},
|
| 1420 |
+
"177": {
|
| 1421 |
+
"content": "</table>",
|
| 1422 |
+
"lstrip": false,
|
| 1423 |
+
"normalized": false,
|
| 1424 |
+
"rstrip": false,
|
| 1425 |
+
"single_word": false,
|
| 1426 |
+
"special": false
|
| 1427 |
+
},
|
| 1428 |
+
"178": {
|
| 1429 |
+
"content": "</caption>",
|
| 1430 |
+
"lstrip": false,
|
| 1431 |
+
"normalized": false,
|
| 1432 |
+
"rstrip": false,
|
| 1433 |
+
"single_word": false,
|
| 1434 |
+
"special": false
|
| 1435 |
+
},
|
| 1436 |
+
"179": {
|
| 1437 |
+
"content": "</thead>",
|
| 1438 |
+
"lstrip": false,
|
| 1439 |
+
"normalized": false,
|
| 1440 |
+
"rstrip": false,
|
| 1441 |
+
"single_word": false,
|
| 1442 |
+
"special": false
|
| 1443 |
+
},
|
| 1444 |
+
"180": {
|
| 1445 |
+
"content": "</tbody>",
|
| 1446 |
+
"lstrip": false,
|
| 1447 |
+
"normalized": false,
|
| 1448 |
+
"rstrip": false,
|
| 1449 |
+
"single_word": false,
|
| 1450 |
+
"special": false
|
| 1451 |
+
},
|
| 1452 |
+
"181": {
|
| 1453 |
+
"content": "</tfoot>",
|
| 1454 |
+
"lstrip": false,
|
| 1455 |
+
"normalized": false,
|
| 1456 |
+
"rstrip": false,
|
| 1457 |
+
"single_word": false,
|
| 1458 |
+
"special": false
|
| 1459 |
+
},
|
| 1460 |
+
"182": {
|
| 1461 |
+
"content": "</tr>",
|
| 1462 |
+
"lstrip": false,
|
| 1463 |
+
"normalized": false,
|
| 1464 |
+
"rstrip": false,
|
| 1465 |
+
"single_word": false,
|
| 1466 |
+
"special": false
|
| 1467 |
+
},
|
| 1468 |
+
"183": {
|
| 1469 |
+
"content": "</th>",
|
| 1470 |
+
"lstrip": false,
|
| 1471 |
+
"normalized": false,
|
| 1472 |
+
"rstrip": false,
|
| 1473 |
+
"single_word": false,
|
| 1474 |
+
"special": false
|
| 1475 |
+
},
|
| 1476 |
+
"184": {
|
| 1477 |
+
"content": "</td>",
|
| 1478 |
+
"lstrip": false,
|
| 1479 |
+
"normalized": false,
|
| 1480 |
+
"rstrip": false,
|
| 1481 |
+
"single_word": false,
|
| 1482 |
+
"special": false
|
| 1483 |
+
},
|
| 1484 |
+
"185": {
|
| 1485 |
+
"content": "<h1>",
|
| 1486 |
+
"lstrip": false,
|
| 1487 |
+
"normalized": false,
|
| 1488 |
+
"rstrip": false,
|
| 1489 |
+
"single_word": false,
|
| 1490 |
+
"special": false
|
| 1491 |
+
},
|
| 1492 |
+
"186": {
|
| 1493 |
+
"content": "<h2>",
|
| 1494 |
+
"lstrip": false,
|
| 1495 |
+
"normalized": false,
|
| 1496 |
+
"rstrip": false,
|
| 1497 |
+
"single_word": false,
|
| 1498 |
+
"special": false
|
| 1499 |
+
},
|
| 1500 |
+
"187": {
|
| 1501 |
+
"content": "<h3>",
|
| 1502 |
+
"lstrip": false,
|
| 1503 |
+
"normalized": false,
|
| 1504 |
+
"rstrip": false,
|
| 1505 |
+
"single_word": false,
|
| 1506 |
+
"special": false
|
| 1507 |
+
},
|
| 1508 |
+
"188": {
|
| 1509 |
+
"content": "<h4>",
|
| 1510 |
+
"lstrip": false,
|
| 1511 |
+
"normalized": false,
|
| 1512 |
+
"rstrip": false,
|
| 1513 |
+
"single_word": false,
|
| 1514 |
+
"special": false
|
| 1515 |
+
},
|
| 1516 |
+
"189": {
|
| 1517 |
+
"content": "<h5>",
|
| 1518 |
+
"lstrip": false,
|
| 1519 |
+
"normalized": false,
|
| 1520 |
+
"rstrip": false,
|
| 1521 |
+
"single_word": false,
|
| 1522 |
+
"special": false
|
| 1523 |
+
},
|
| 1524 |
+
"190": {
|
| 1525 |
+
"content": "<h6>",
|
| 1526 |
+
"lstrip": false,
|
| 1527 |
+
"normalized": false,
|
| 1528 |
+
"rstrip": false,
|
| 1529 |
+
"single_word": false,
|
| 1530 |
+
"special": false
|
| 1531 |
+
},
|
| 1532 |
+
"191": {
|
| 1533 |
+
"content": "<blockquote>",
|
| 1534 |
+
"lstrip": false,
|
| 1535 |
+
"normalized": false,
|
| 1536 |
+
"rstrip": false,
|
| 1537 |
+
"single_word": false,
|
| 1538 |
+
"special": false
|
| 1539 |
+
},
|
| 1540 |
+
"192": {
|
| 1541 |
+
"content": "</h1>",
|
| 1542 |
+
"lstrip": false,
|
| 1543 |
+
"normalized": false,
|
| 1544 |
+
"rstrip": false,
|
| 1545 |
+
"single_word": false,
|
| 1546 |
+
"special": false
|
| 1547 |
+
},
|
| 1548 |
+
"193": {
|
| 1549 |
+
"content": "</h2>",
|
| 1550 |
+
"lstrip": false,
|
| 1551 |
+
"normalized": false,
|
| 1552 |
+
"rstrip": false,
|
| 1553 |
+
"single_word": false,
|
| 1554 |
+
"special": false
|
| 1555 |
+
},
|
| 1556 |
+
"194": {
|
| 1557 |
+
"content": "</h3>",
|
| 1558 |
+
"lstrip": false,
|
| 1559 |
+
"normalized": false,
|
| 1560 |
+
"rstrip": false,
|
| 1561 |
+
"single_word": false,
|
| 1562 |
+
"special": false
|
| 1563 |
+
},
|
| 1564 |
+
"195": {
|
| 1565 |
+
"content": "</h4>",
|
| 1566 |
+
"lstrip": false,
|
| 1567 |
+
"normalized": false,
|
| 1568 |
+
"rstrip": false,
|
| 1569 |
+
"single_word": false,
|
| 1570 |
+
"special": false
|
| 1571 |
+
},
|
| 1572 |
+
"196": {
|
| 1573 |
+
"content": "</h5>",
|
| 1574 |
+
"lstrip": false,
|
| 1575 |
+
"normalized": false,
|
| 1576 |
+
"rstrip": false,
|
| 1577 |
+
"single_word": false,
|
| 1578 |
+
"special": false
|
| 1579 |
+
},
|
| 1580 |
+
"197": {
|
| 1581 |
+
"content": "</h6>",
|
| 1582 |
+
"lstrip": false,
|
| 1583 |
+
"normalized": false,
|
| 1584 |
+
"rstrip": false,
|
| 1585 |
+
"single_word": false,
|
| 1586 |
+
"special": false
|
| 1587 |
+
},
|
| 1588 |
+
"198": {
|
| 1589 |
+
"content": "</blockquote>",
|
| 1590 |
+
"lstrip": false,
|
| 1591 |
+
"normalized": false,
|
| 1592 |
+
"rstrip": false,
|
| 1593 |
+
"single_word": false,
|
| 1594 |
+
"special": false
|
| 1595 |
+
},
|
| 1596 |
+
"199": {
|
| 1597 |
+
"content": "<strong>",
|
| 1598 |
+
"lstrip": false,
|
| 1599 |
+
"normalized": false,
|
| 1600 |
+
"rstrip": false,
|
| 1601 |
+
"single_word": false,
|
| 1602 |
+
"special": false
|
| 1603 |
+
},
|
| 1604 |
+
"200": {
|
| 1605 |
+
"content": "<em>",
|
| 1606 |
+
"lstrip": false,
|
| 1607 |
+
"normalized": false,
|
| 1608 |
+
"rstrip": false,
|
| 1609 |
+
"single_word": false,
|
| 1610 |
+
"special": false
|
| 1611 |
+
},
|
| 1612 |
+
"201": {
|
| 1613 |
+
"content": "<b>",
|
| 1614 |
+
"lstrip": false,
|
| 1615 |
+
"normalized": false,
|
| 1616 |
+
"rstrip": false,
|
| 1617 |
+
"single_word": false,
|
| 1618 |
+
"special": false
|
| 1619 |
+
},
|
| 1620 |
+
"202": {
|
| 1621 |
+
"content": "<i>",
|
| 1622 |
+
"lstrip": false,
|
| 1623 |
+
"normalized": false,
|
| 1624 |
+
"rstrip": false,
|
| 1625 |
+
"single_word": false,
|
| 1626 |
+
"special": false
|
| 1627 |
+
},
|
| 1628 |
+
"203": {
|
| 1629 |
+
"content": "<u>",
|
| 1630 |
+
"lstrip": false,
|
| 1631 |
+
"normalized": false,
|
| 1632 |
+
"rstrip": false,
|
| 1633 |
+
"single_word": false,
|
| 1634 |
+
"special": false
|
| 1635 |
+
},
|
| 1636 |
+
"204": {
|
| 1637 |
+
"content": "<s>",
|
| 1638 |
+
"lstrip": false,
|
| 1639 |
+
"normalized": false,
|
| 1640 |
+
"rstrip": false,
|
| 1641 |
+
"single_word": false,
|
| 1642 |
+
"special": false
|
| 1643 |
+
},
|
| 1644 |
+
"205": {
|
| 1645 |
+
"content": "<sub>",
|
| 1646 |
+
"lstrip": false,
|
| 1647 |
+
"normalized": false,
|
| 1648 |
+
"rstrip": false,
|
| 1649 |
+
"single_word": false,
|
| 1650 |
+
"special": false
|
| 1651 |
+
},
|
| 1652 |
+
"206": {
|
| 1653 |
+
"content": "<sup>",
|
| 1654 |
+
"lstrip": false,
|
| 1655 |
+
"normalized": false,
|
| 1656 |
+
"rstrip": false,
|
| 1657 |
+
"single_word": false,
|
| 1658 |
+
"special": false
|
| 1659 |
+
},
|
| 1660 |
+
"207": {
|
| 1661 |
+
"content": "<code>",
|
| 1662 |
+
"lstrip": false,
|
| 1663 |
+
"normalized": false,
|
| 1664 |
+
"rstrip": false,
|
| 1665 |
+
"single_word": false,
|
| 1666 |
+
"special": false
|
| 1667 |
+
},
|
| 1668 |
+
"208": {
|
| 1669 |
+
"content": "</strong>",
|
| 1670 |
+
"lstrip": false,
|
| 1671 |
+
"normalized": false,
|
| 1672 |
+
"rstrip": false,
|
| 1673 |
+
"single_word": false,
|
| 1674 |
+
"special": false
|
| 1675 |
+
},
|
| 1676 |
+
"209": {
|
| 1677 |
+
"content": "</em>",
|
| 1678 |
+
"lstrip": false,
|
| 1679 |
+
"normalized": false,
|
| 1680 |
+
"rstrip": false,
|
| 1681 |
+
"single_word": false,
|
| 1682 |
+
"special": false
|
| 1683 |
+
},
|
| 1684 |
+
"210": {
|
| 1685 |
+
"content": "</b>",
|
| 1686 |
+
"lstrip": false,
|
| 1687 |
+
"normalized": false,
|
| 1688 |
+
"rstrip": false,
|
| 1689 |
+
"single_word": false,
|
| 1690 |
+
"special": false
|
| 1691 |
+
},
|
| 1692 |
+
"211": {
|
| 1693 |
+
"content": "</i>",
|
| 1694 |
+
"lstrip": false,
|
| 1695 |
+
"normalized": false,
|
| 1696 |
+
"rstrip": false,
|
| 1697 |
+
"single_word": false,
|
| 1698 |
+
"special": false
|
| 1699 |
+
},
|
| 1700 |
+
"212": {
|
| 1701 |
+
"content": "</u>",
|
| 1702 |
+
"lstrip": false,
|
| 1703 |
+
"normalized": false,
|
| 1704 |
+
"rstrip": false,
|
| 1705 |
+
"single_word": false,
|
| 1706 |
+
"special": false
|
| 1707 |
+
},
|
| 1708 |
+
"213": {
|
| 1709 |
+
"content": "</s>",
|
| 1710 |
+
"lstrip": false,
|
| 1711 |
+
"normalized": false,
|
| 1712 |
+
"rstrip": false,
|
| 1713 |
+
"single_word": false,
|
| 1714 |
+
"special": false
|
| 1715 |
+
},
|
| 1716 |
+
"214": {
|
| 1717 |
+
"content": "</sub>",
|
| 1718 |
+
"lstrip": false,
|
| 1719 |
+
"normalized": false,
|
| 1720 |
+
"rstrip": false,
|
| 1721 |
+
"single_word": false,
|
| 1722 |
+
"special": false
|
| 1723 |
+
},
|
| 1724 |
+
"215": {
|
| 1725 |
+
"content": "</sup>",
|
| 1726 |
+
"lstrip": false,
|
| 1727 |
+
"normalized": false,
|
| 1728 |
+
"rstrip": false,
|
| 1729 |
+
"single_word": false,
|
| 1730 |
+
"special": false
|
| 1731 |
+
},
|
| 1732 |
+
"216": {
|
| 1733 |
+
"content": "</code>",
|
| 1734 |
+
"lstrip": false,
|
| 1735 |
+
"normalized": false,
|
| 1736 |
+
"rstrip": false,
|
| 1737 |
+
"single_word": false,
|
| 1738 |
+
"special": false
|
| 1739 |
+
},
|
| 1740 |
+
"255968": {
|
| 1741 |
+
"content": "[toxicity=0]",
|
| 1742 |
+
"lstrip": false,
|
| 1743 |
+
"normalized": false,
|
| 1744 |
+
"rstrip": false,
|
| 1745 |
+
"single_word": false,
|
| 1746 |
+
"special": false
|
| 1747 |
+
},
|
| 1748 |
+
"255969": {
|
| 1749 |
+
"content": "\t\t",
|
| 1750 |
+
"lstrip": false,
|
| 1751 |
+
"normalized": false,
|
| 1752 |
+
"rstrip": false,
|
| 1753 |
+
"single_word": false,
|
| 1754 |
+
"special": false
|
| 1755 |
+
},
|
| 1756 |
+
"255970": {
|
| 1757 |
+
"content": "\t\t\t",
|
| 1758 |
+
"lstrip": false,
|
| 1759 |
+
"normalized": false,
|
| 1760 |
+
"rstrip": false,
|
| 1761 |
+
"single_word": false,
|
| 1762 |
+
"special": false
|
| 1763 |
+
},
|
| 1764 |
+
"255971": {
|
| 1765 |
+
"content": "\t\t\t\t",
|
| 1766 |
+
"lstrip": false,
|
| 1767 |
+
"normalized": false,
|
| 1768 |
+
"rstrip": false,
|
| 1769 |
+
"single_word": false,
|
| 1770 |
+
"special": false
|
| 1771 |
+
},
|
| 1772 |
+
"255972": {
|
| 1773 |
+
"content": "\t\t\t\t\t",
|
| 1774 |
+
"lstrip": false,
|
| 1775 |
+
"normalized": false,
|
| 1776 |
+
"rstrip": false,
|
| 1777 |
+
"single_word": false,
|
| 1778 |
+
"special": false
|
| 1779 |
+
},
|
| 1780 |
+
"255973": {
|
| 1781 |
+
"content": "\t\t\t\t\t\t",
|
| 1782 |
+
"lstrip": false,
|
| 1783 |
+
"normalized": false,
|
| 1784 |
+
"rstrip": false,
|
| 1785 |
+
"single_word": false,
|
| 1786 |
+
"special": false
|
| 1787 |
+
},
|
| 1788 |
+
"255974": {
|
| 1789 |
+
"content": "\t\t\t\t\t\t\t",
|
| 1790 |
+
"lstrip": false,
|
| 1791 |
+
"normalized": false,
|
| 1792 |
+
"rstrip": false,
|
| 1793 |
+
"single_word": false,
|
| 1794 |
+
"special": false
|
| 1795 |
+
},
|
| 1796 |
+
"255975": {
|
| 1797 |
+
"content": "\t\t\t\t\t\t\t\t",
|
| 1798 |
+
"lstrip": false,
|
| 1799 |
+
"normalized": false,
|
| 1800 |
+
"rstrip": false,
|
| 1801 |
+
"single_word": false,
|
| 1802 |
+
"special": false
|
| 1803 |
+
},
|
| 1804 |
+
"255976": {
|
| 1805 |
+
"content": "\t\t\t\t\t\t\t\t\t",
|
| 1806 |
+
"lstrip": false,
|
| 1807 |
+
"normalized": false,
|
| 1808 |
+
"rstrip": false,
|
| 1809 |
+
"single_word": false,
|
| 1810 |
+
"special": false
|
| 1811 |
+
},
|
| 1812 |
+
"255977": {
|
| 1813 |
+
"content": "\t\t\t\t\t\t\t\t\t\t",
|
| 1814 |
+
"lstrip": false,
|
| 1815 |
+
"normalized": false,
|
| 1816 |
+
"rstrip": false,
|
| 1817 |
+
"single_word": false,
|
| 1818 |
+
"special": false
|
| 1819 |
+
},
|
| 1820 |
+
"255978": {
|
| 1821 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t",
|
| 1822 |
+
"lstrip": false,
|
| 1823 |
+
"normalized": false,
|
| 1824 |
+
"rstrip": false,
|
| 1825 |
+
"single_word": false,
|
| 1826 |
+
"special": false
|
| 1827 |
+
},
|
| 1828 |
+
"255979": {
|
| 1829 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1830 |
+
"lstrip": false,
|
| 1831 |
+
"normalized": false,
|
| 1832 |
+
"rstrip": false,
|
| 1833 |
+
"single_word": false,
|
| 1834 |
+
"special": false
|
| 1835 |
+
},
|
| 1836 |
+
"255980": {
|
| 1837 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1838 |
+
"lstrip": false,
|
| 1839 |
+
"normalized": false,
|
| 1840 |
+
"rstrip": false,
|
| 1841 |
+
"single_word": false,
|
| 1842 |
+
"special": false
|
| 1843 |
+
},
|
| 1844 |
+
"255981": {
|
| 1845 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1846 |
+
"lstrip": false,
|
| 1847 |
+
"normalized": false,
|
| 1848 |
+
"rstrip": false,
|
| 1849 |
+
"single_word": false,
|
| 1850 |
+
"special": false
|
| 1851 |
+
},
|
| 1852 |
+
"255982": {
|
| 1853 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1854 |
+
"lstrip": false,
|
| 1855 |
+
"normalized": false,
|
| 1856 |
+
"rstrip": false,
|
| 1857 |
+
"single_word": false,
|
| 1858 |
+
"special": false
|
| 1859 |
+
},
|
| 1860 |
+
"255983": {
|
| 1861 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1862 |
+
"lstrip": false,
|
| 1863 |
+
"normalized": false,
|
| 1864 |
+
"rstrip": false,
|
| 1865 |
+
"single_word": false,
|
| 1866 |
+
"special": false
|
| 1867 |
+
},
|
| 1868 |
+
"255984": {
|
| 1869 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1870 |
+
"lstrip": false,
|
| 1871 |
+
"normalized": false,
|
| 1872 |
+
"rstrip": false,
|
| 1873 |
+
"single_word": false,
|
| 1874 |
+
"special": false
|
| 1875 |
+
},
|
| 1876 |
+
"255985": {
|
| 1877 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1878 |
+
"lstrip": false,
|
| 1879 |
+
"normalized": false,
|
| 1880 |
+
"rstrip": false,
|
| 1881 |
+
"single_word": false,
|
| 1882 |
+
"special": false
|
| 1883 |
+
},
|
| 1884 |
+
"255986": {
|
| 1885 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1886 |
+
"lstrip": false,
|
| 1887 |
+
"normalized": false,
|
| 1888 |
+
"rstrip": false,
|
| 1889 |
+
"single_word": false,
|
| 1890 |
+
"special": false
|
| 1891 |
+
},
|
| 1892 |
+
"255987": {
|
| 1893 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1894 |
+
"lstrip": false,
|
| 1895 |
+
"normalized": false,
|
| 1896 |
+
"rstrip": false,
|
| 1897 |
+
"single_word": false,
|
| 1898 |
+
"special": false
|
| 1899 |
+
},
|
| 1900 |
+
"255988": {
|
| 1901 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1902 |
+
"lstrip": false,
|
| 1903 |
+
"normalized": false,
|
| 1904 |
+
"rstrip": false,
|
| 1905 |
+
"single_word": false,
|
| 1906 |
+
"special": false
|
| 1907 |
+
},
|
| 1908 |
+
"255989": {
|
| 1909 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1910 |
+
"lstrip": false,
|
| 1911 |
+
"normalized": false,
|
| 1912 |
+
"rstrip": false,
|
| 1913 |
+
"single_word": false,
|
| 1914 |
+
"special": false
|
| 1915 |
+
},
|
| 1916 |
+
"255990": {
|
| 1917 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1918 |
+
"lstrip": false,
|
| 1919 |
+
"normalized": false,
|
| 1920 |
+
"rstrip": false,
|
| 1921 |
+
"single_word": false,
|
| 1922 |
+
"special": false
|
| 1923 |
+
},
|
| 1924 |
+
"255991": {
|
| 1925 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1926 |
+
"lstrip": false,
|
| 1927 |
+
"normalized": false,
|
| 1928 |
+
"rstrip": false,
|
| 1929 |
+
"single_word": false,
|
| 1930 |
+
"special": false
|
| 1931 |
+
},
|
| 1932 |
+
"255992": {
|
| 1933 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1934 |
+
"lstrip": false,
|
| 1935 |
+
"normalized": false,
|
| 1936 |
+
"rstrip": false,
|
| 1937 |
+
"single_word": false,
|
| 1938 |
+
"special": false
|
| 1939 |
+
},
|
| 1940 |
+
"255993": {
|
| 1941 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1942 |
+
"lstrip": false,
|
| 1943 |
+
"normalized": false,
|
| 1944 |
+
"rstrip": false,
|
| 1945 |
+
"single_word": false,
|
| 1946 |
+
"special": false
|
| 1947 |
+
},
|
| 1948 |
+
"255994": {
|
| 1949 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1950 |
+
"lstrip": false,
|
| 1951 |
+
"normalized": false,
|
| 1952 |
+
"rstrip": false,
|
| 1953 |
+
"single_word": false,
|
| 1954 |
+
"special": false
|
| 1955 |
+
},
|
| 1956 |
+
"255995": {
|
| 1957 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1958 |
+
"lstrip": false,
|
| 1959 |
+
"normalized": false,
|
| 1960 |
+
"rstrip": false,
|
| 1961 |
+
"single_word": false,
|
| 1962 |
+
"special": false
|
| 1963 |
+
},
|
| 1964 |
+
"255996": {
|
| 1965 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1966 |
+
"lstrip": false,
|
| 1967 |
+
"normalized": false,
|
| 1968 |
+
"rstrip": false,
|
| 1969 |
+
"single_word": false,
|
| 1970 |
+
"special": false
|
| 1971 |
+
},
|
| 1972 |
+
"255997": {
|
| 1973 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1974 |
+
"lstrip": false,
|
| 1975 |
+
"normalized": false,
|
| 1976 |
+
"rstrip": false,
|
| 1977 |
+
"single_word": false,
|
| 1978 |
+
"special": false
|
| 1979 |
+
},
|
| 1980 |
+
"255998": {
|
| 1981 |
+
"content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t",
|
| 1982 |
+
"lstrip": false,
|
| 1983 |
+
"normalized": false,
|
| 1984 |
+
"rstrip": false,
|
| 1985 |
+
"single_word": false,
|
| 1986 |
+
"special": false
|
| 1987 |
+
},
|
| 1988 |
+
"255999": {
|
| 1989 |
+
"content": "<unused99>",
|
| 1990 |
+
"lstrip": false,
|
| 1991 |
+
"normalized": false,
|
| 1992 |
+
"rstrip": false,
|
| 1993 |
+
"single_word": false,
|
| 1994 |
+
"special": false
|
| 1995 |
+
}
|
| 1996 |
+
},
|
| 1997 |
+
"additional_special_tokens": [
|
| 1998 |
+
"<start_of_turn>",
|
| 1999 |
+
"<end_of_turn>"
|
| 2000 |
+
],
|
| 2001 |
+
"bos_token": "<bos>",
|
| 2002 |
+
"clean_up_tokenization_spaces": false,
|
| 2003 |
+
"cls_token": "<bos>",
|
| 2004 |
+
"eos_token": "<eos>",
|
| 2005 |
+
"extra_special_tokens": {},
|
| 2006 |
+
"mask_token": "<mask>",
|
| 2007 |
+
"model_input_names": [
|
| 2008 |
+
"input_ids",
|
| 2009 |
+
"attention_mask"
|
| 2010 |
+
],
|
| 2011 |
+
"model_max_length": 32768,
|
| 2012 |
+
"pad_token": "<pad>",
|
| 2013 |
+
"padding_side": "right",
|
| 2014 |
+
"sep_token": "<eos>",
|
| 2015 |
+
"spaces_between_special_tokens": false,
|
| 2016 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
| 2017 |
+
"unk_token": "<unk>"
|
| 2018 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de007bea22dcb88578703fe7cbafb05e81ad70f6e86a48f9973a14db3a420500
|
| 3 |
+
size 5841
|