reach-vb HF staff commited on
Commit
e88cb05
·
verified ·
1 Parent(s): f235bd0

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +5 -0
  2. checkpoint-10800/config.json +43 -0
  3. checkpoint-10800/generation_config.json +11 -0
  4. checkpoint-10800/model.safetensors +3 -0
  5. checkpoint-10800/optimizer.pt +3 -0
  6. checkpoint-10800/rng_state.pth +3 -0
  7. checkpoint-10800/scheduler.pt +3 -0
  8. checkpoint-10800/special_tokens_map.json +17 -0
  9. checkpoint-10800/tokenizer.json +3 -0
  10. checkpoint-10800/tokenizer_config.json +2064 -0
  11. checkpoint-10800/trainer_state.json +1066 -0
  12. checkpoint-10800/training_args.bin +3 -0
  13. checkpoint-10800/ultravox_config.py +170 -0
  14. checkpoint-10800/ultravox_model.py +723 -0
  15. checkpoint-14400/config.json +43 -0
  16. checkpoint-14400/generation_config.json +11 -0
  17. checkpoint-14400/model.safetensors +3 -0
  18. checkpoint-14400/optimizer.pt +3 -0
  19. checkpoint-14400/rng_state.pth +3 -0
  20. checkpoint-14400/scheduler.pt +3 -0
  21. checkpoint-14400/special_tokens_map.json +17 -0
  22. checkpoint-14400/tokenizer.json +3 -0
  23. checkpoint-14400/tokenizer_config.json +2064 -0
  24. checkpoint-14400/trainer_state.json +1426 -0
  25. checkpoint-14400/training_args.bin +3 -0
  26. checkpoint-14400/ultravox_config.py +170 -0
  27. checkpoint-14400/ultravox_model.py +723 -0
  28. checkpoint-3600/config.json +43 -0
  29. checkpoint-3600/generation_config.json +11 -0
  30. checkpoint-3600/model.safetensors +3 -0
  31. checkpoint-3600/optimizer.pt +3 -0
  32. checkpoint-3600/rng_state.pth +3 -0
  33. checkpoint-3600/scheduler.pt +3 -0
  34. checkpoint-3600/special_tokens_map.json +17 -0
  35. checkpoint-3600/tokenizer.json +3 -0
  36. checkpoint-3600/tokenizer_config.json +2064 -0
  37. checkpoint-3600/trainer_state.json +373 -0
  38. checkpoint-3600/training_args.bin +3 -0
  39. checkpoint-3600/ultravox_config.py +170 -0
  40. checkpoint-3600/ultravox_model.py +723 -0
  41. checkpoint-7200/config.json +43 -0
  42. checkpoint-7200/generation_config.json +11 -0
  43. checkpoint-7200/model.safetensors +3 -0
  44. checkpoint-7200/optimizer.pt +3 -0
  45. checkpoint-7200/rng_state.pth +3 -0
  46. checkpoint-7200/scheduler.pt +3 -0
  47. checkpoint-7200/special_tokens_map.json +17 -0
  48. checkpoint-7200/tokenizer.json +3 -0
  49. checkpoint-7200/tokenizer_config.json +2064 -0
  50. checkpoint-7200/trainer_state.json +733 -0
.gitattributes CHANGED
@@ -33,3 +33,8 @@ 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
+ checkpoint-10800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-14400/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ checkpoint-7200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
checkpoint-10800/config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "UltravoxModel"
4
+ ],
5
+ "audio_latency_block_size": null,
6
+ "audio_model_id": "openai/whisper-large-v3-turbo",
7
+ "audio_model_lora_config": {
8
+ "lora_alpha": 8,
9
+ "r": 0,
10
+ "target_modules": [
11
+ "k_proj",
12
+ "q_proj",
13
+ "linear_k",
14
+ "linear_q"
15
+ ]
16
+ },
17
+ "auto_map": {
18
+ "AutoConfig": "ultravox_config.UltravoxConfig",
19
+ "AutoModel": "ultravox_model.UltravoxModel"
20
+ },
21
+ "hidden_size": 4096,
22
+ "ignore_index": -100,
23
+ "initializer_range": 0.02,
24
+ "model_type": "ultravox",
25
+ "norm_init": 0.4,
26
+ "pad_token_id": 128009,
27
+ "projector_act": "swiglu",
28
+ "stack_factor": 8,
29
+ "text_model_id": "meta-llama/Llama-3.2-1B-Instruct",
30
+ "text_model_lora_config": {
31
+ "lora_alpha": 8,
32
+ "r": 0,
33
+ "target_modules": [
34
+ "k_proj",
35
+ "q_proj",
36
+ "linear_k",
37
+ "linear_q"
38
+ ]
39
+ },
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.47.0",
42
+ "vocab_size": 128256
43
+ }
checkpoint-10800/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 128000,
4
+ "eos_token_id": [
5
+ 128001,
6
+ 128008,
7
+ 128009
8
+ ],
9
+ "pad_token_id": 128009,
10
+ "transformers_version": "4.47.0"
11
+ }
checkpoint-10800/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb8c9e69ce51c40cf7113f8c13039453372cf800e2546f6e70e2806ea50b01ff
3
+ size 92299736
checkpoint-10800/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a469d87dbbb0799b502a39ab9d99b8cb02e0bcee34e1d96a01d5d6ce56f06268
3
+ size 184602962
checkpoint-10800/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:282eacecfb6f7e9eb42fb868e2a5ed7c671ea124a6cbc6714f7daf0bf89f1c9e
3
+ size 14244
checkpoint-10800/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01ae122cbb1630c5e9128a1def009fb9fe6db25bf8dbd0de4ec680be8f1568e1
3
+ size 1064
checkpoint-10800/special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|eot_id|>"
17
+ }
checkpoint-10800/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-10800/tokenizer_config.json ADDED
@@ -0,0 +1,2064 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "128000": {
4
+ "content": "<|begin_of_text|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "128001": {
12
+ "content": "<|end_of_text|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "128002": {
20
+ "content": "<|reserved_special_token_0|>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "128003": {
28
+ "content": "<|reserved_special_token_1|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "128004": {
36
+ "content": "<|finetune_right_pad_id|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "128005": {
44
+ "content": "<|reserved_special_token_2|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "128006": {
52
+ "content": "<|start_header_id|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "128007": {
60
+ "content": "<|end_header_id|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "128008": {
68
+ "content": "<|eom_id|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "128009": {
76
+ "content": "<|eot_id|>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "128010": {
84
+ "content": "<|python_tag|>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "128011": {
92
+ "content": "<|reserved_special_token_3|>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "128012": {
100
+ "content": "<|reserved_special_token_4|>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "128013": {
108
+ "content": "<|reserved_special_token_5|>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "128014": {
116
+ "content": "<|reserved_special_token_6|>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "128015": {
124
+ "content": "<|reserved_special_token_7|>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "128016": {
132
+ "content": "<|reserved_special_token_8|>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "128017": {
140
+ "content": "<|reserved_special_token_9|>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "128018": {
148
+ "content": "<|reserved_special_token_10|>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "128019": {
156
+ "content": "<|reserved_special_token_11|>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "128020": {
164
+ "content": "<|reserved_special_token_12|>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "128021": {
172
+ "content": "<|reserved_special_token_13|>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": true
178
+ },
179
+ "128022": {
180
+ "content": "<|reserved_special_token_14|>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": true
186
+ },
187
+ "128023": {
188
+ "content": "<|reserved_special_token_15|>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": true
194
+ },
195
+ "128024": {
196
+ "content": "<|reserved_special_token_16|>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": true
202
+ },
203
+ "128025": {
204
+ "content": "<|reserved_special_token_17|>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": true
210
+ },
211
+ "128026": {
212
+ "content": "<|reserved_special_token_18|>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": true
218
+ },
219
+ "128027": {
220
+ "content": "<|reserved_special_token_19|>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "128028": {
228
+ "content": "<|reserved_special_token_20|>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "128029": {
236
+ "content": "<|reserved_special_token_21|>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "128030": {
244
+ "content": "<|reserved_special_token_22|>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "128031": {
252
+ "content": "<|reserved_special_token_23|>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "128032": {
260
+ "content": "<|reserved_special_token_24|>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "128033": {
268
+ "content": "<|reserved_special_token_25|>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": true
274
+ },
275
+ "128034": {
276
+ "content": "<|reserved_special_token_26|>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": true
282
+ },
283
+ "128035": {
284
+ "content": "<|reserved_special_token_27|>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": true
290
+ },
291
+ "128036": {
292
+ "content": "<|reserved_special_token_28|>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": true
298
+ },
299
+ "128037": {
300
+ "content": "<|reserved_special_token_29|>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": true
306
+ },
307
+ "128038": {
308
+ "content": "<|reserved_special_token_30|>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": true
314
+ },
315
+ "128039": {
316
+ "content": "<|reserved_special_token_31|>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": true
322
+ },
323
+ "128040": {
324
+ "content": "<|reserved_special_token_32|>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": true
330
+ },
331
+ "128041": {
332
+ "content": "<|reserved_special_token_33|>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": true
338
+ },
339
+ "128042": {
340
+ "content": "<|reserved_special_token_34|>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": true
346
+ },
347
+ "128043": {
348
+ "content": "<|reserved_special_token_35|>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": true
354
+ },
355
+ "128044": {
356
+ "content": "<|reserved_special_token_36|>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": true
362
+ },
363
+ "128045": {
364
+ "content": "<|reserved_special_token_37|>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": true
370
+ },
371
+ "128046": {
372
+ "content": "<|reserved_special_token_38|>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": true
378
+ },
379
+ "128047": {
380
+ "content": "<|reserved_special_token_39|>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": true
386
+ },
387
+ "128048": {
388
+ "content": "<|reserved_special_token_40|>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": true
394
+ },
395
+ "128049": {
396
+ "content": "<|reserved_special_token_41|>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": true
402
+ },
403
+ "128050": {
404
+ "content": "<|reserved_special_token_42|>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": true
410
+ },
411
+ "128051": {
412
+ "content": "<|reserved_special_token_43|>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": true
418
+ },
419
+ "128052": {
420
+ "content": "<|reserved_special_token_44|>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": true
426
+ },
427
+ "128053": {
428
+ "content": "<|reserved_special_token_45|>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": true
434
+ },
435
+ "128054": {
436
+ "content": "<|reserved_special_token_46|>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": true
442
+ },
443
+ "128055": {
444
+ "content": "<|reserved_special_token_47|>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": true
450
+ },
451
+ "128056": {
452
+ "content": "<|reserved_special_token_48|>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": true
458
+ },
459
+ "128057": {
460
+ "content": "<|reserved_special_token_49|>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": true
466
+ },
467
+ "128058": {
468
+ "content": "<|reserved_special_token_50|>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": true
474
+ },
475
+ "128059": {
476
+ "content": "<|reserved_special_token_51|>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": true
482
+ },
483
+ "128060": {
484
+ "content": "<|reserved_special_token_52|>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": true
490
+ },
491
+ "128061": {
492
+ "content": "<|reserved_special_token_53|>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": true
498
+ },
499
+ "128062": {
500
+ "content": "<|reserved_special_token_54|>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": true
506
+ },
507
+ "128063": {
508
+ "content": "<|reserved_special_token_55|>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": true
514
+ },
515
+ "128064": {
516
+ "content": "<|reserved_special_token_56|>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": true
522
+ },
523
+ "128065": {
524
+ "content": "<|reserved_special_token_57|>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": true
530
+ },
531
+ "128066": {
532
+ "content": "<|reserved_special_token_58|>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": true
538
+ },
539
+ "128067": {
540
+ "content": "<|reserved_special_token_59|>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": true
546
+ },
547
+ "128068": {
548
+ "content": "<|reserved_special_token_60|>",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": true
554
+ },
555
+ "128069": {
556
+ "content": "<|reserved_special_token_61|>",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": true
562
+ },
563
+ "128070": {
564
+ "content": "<|reserved_special_token_62|>",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": true
570
+ },
571
+ "128071": {
572
+ "content": "<|reserved_special_token_63|>",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": true
578
+ },
579
+ "128072": {
580
+ "content": "<|reserved_special_token_64|>",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": true
586
+ },
587
+ "128073": {
588
+ "content": "<|reserved_special_token_65|>",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": true
594
+ },
595
+ "128074": {
596
+ "content": "<|reserved_special_token_66|>",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": true
602
+ },
603
+ "128075": {
604
+ "content": "<|reserved_special_token_67|>",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": true
610
+ },
611
+ "128076": {
612
+ "content": "<|reserved_special_token_68|>",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": true
618
+ },
619
+ "128077": {
620
+ "content": "<|reserved_special_token_69|>",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": true
626
+ },
627
+ "128078": {
628
+ "content": "<|reserved_special_token_70|>",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": true
634
+ },
635
+ "128079": {
636
+ "content": "<|reserved_special_token_71|>",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": true
642
+ },
643
+ "128080": {
644
+ "content": "<|reserved_special_token_72|>",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": true
650
+ },
651
+ "128081": {
652
+ "content": "<|reserved_special_token_73|>",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": true
658
+ },
659
+ "128082": {
660
+ "content": "<|reserved_special_token_74|>",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": true
666
+ },
667
+ "128083": {
668
+ "content": "<|reserved_special_token_75|>",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": true
674
+ },
675
+ "128084": {
676
+ "content": "<|reserved_special_token_76|>",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": true
682
+ },
683
+ "128085": {
684
+ "content": "<|reserved_special_token_77|>",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": true
690
+ },
691
+ "128086": {
692
+ "content": "<|reserved_special_token_78|>",
693
+ "lstrip": false,
694
+ "normalized": false,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": true
698
+ },
699
+ "128087": {
700
+ "content": "<|reserved_special_token_79|>",
701
+ "lstrip": false,
702
+ "normalized": false,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": true
706
+ },
707
+ "128088": {
708
+ "content": "<|reserved_special_token_80|>",
709
+ "lstrip": false,
710
+ "normalized": false,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": true
714
+ },
715
+ "128089": {
716
+ "content": "<|reserved_special_token_81|>",
717
+ "lstrip": false,
718
+ "normalized": false,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": true
722
+ },
723
+ "128090": {
724
+ "content": "<|reserved_special_token_82|>",
725
+ "lstrip": false,
726
+ "normalized": false,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": true
730
+ },
731
+ "128091": {
732
+ "content": "<|reserved_special_token_83|>",
733
+ "lstrip": false,
734
+ "normalized": false,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": true
738
+ },
739
+ "128092": {
740
+ "content": "<|reserved_special_token_84|>",
741
+ "lstrip": false,
742
+ "normalized": false,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": true
746
+ },
747
+ "128093": {
748
+ "content": "<|reserved_special_token_85|>",
749
+ "lstrip": false,
750
+ "normalized": false,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": true
754
+ },
755
+ "128094": {
756
+ "content": "<|reserved_special_token_86|>",
757
+ "lstrip": false,
758
+ "normalized": false,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": true
762
+ },
763
+ "128095": {
764
+ "content": "<|reserved_special_token_87|>",
765
+ "lstrip": false,
766
+ "normalized": false,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": true
770
+ },
771
+ "128096": {
772
+ "content": "<|reserved_special_token_88|>",
773
+ "lstrip": false,
774
+ "normalized": false,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": true
778
+ },
779
+ "128097": {
780
+ "content": "<|reserved_special_token_89|>",
781
+ "lstrip": false,
782
+ "normalized": false,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": true
786
+ },
787
+ "128098": {
788
+ "content": "<|reserved_special_token_90|>",
789
+ "lstrip": false,
790
+ "normalized": false,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": true
794
+ },
795
+ "128099": {
796
+ "content": "<|reserved_special_token_91|>",
797
+ "lstrip": false,
798
+ "normalized": false,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": true
802
+ },
803
+ "128100": {
804
+ "content": "<|reserved_special_token_92|>",
805
+ "lstrip": false,
806
+ "normalized": false,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": true
810
+ },
811
+ "128101": {
812
+ "content": "<|reserved_special_token_93|>",
813
+ "lstrip": false,
814
+ "normalized": false,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": true
818
+ },
819
+ "128102": {
820
+ "content": "<|reserved_special_token_94|>",
821
+ "lstrip": false,
822
+ "normalized": false,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": true
826
+ },
827
+ "128103": {
828
+ "content": "<|reserved_special_token_95|>",
829
+ "lstrip": false,
830
+ "normalized": false,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": true
834
+ },
835
+ "128104": {
836
+ "content": "<|reserved_special_token_96|>",
837
+ "lstrip": false,
838
+ "normalized": false,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": true
842
+ },
843
+ "128105": {
844
+ "content": "<|reserved_special_token_97|>",
845
+ "lstrip": false,
846
+ "normalized": false,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": true
850
+ },
851
+ "128106": {
852
+ "content": "<|reserved_special_token_98|>",
853
+ "lstrip": false,
854
+ "normalized": false,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": true
858
+ },
859
+ "128107": {
860
+ "content": "<|reserved_special_token_99|>",
861
+ "lstrip": false,
862
+ "normalized": false,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": true
866
+ },
867
+ "128108": {
868
+ "content": "<|reserved_special_token_100|>",
869
+ "lstrip": false,
870
+ "normalized": false,
871
+ "rstrip": false,
872
+ "single_word": false,
873
+ "special": true
874
+ },
875
+ "128109": {
876
+ "content": "<|reserved_special_token_101|>",
877
+ "lstrip": false,
878
+ "normalized": false,
879
+ "rstrip": false,
880
+ "single_word": false,
881
+ "special": true
882
+ },
883
+ "128110": {
884
+ "content": "<|reserved_special_token_102|>",
885
+ "lstrip": false,
886
+ "normalized": false,
887
+ "rstrip": false,
888
+ "single_word": false,
889
+ "special": true
890
+ },
891
+ "128111": {
892
+ "content": "<|reserved_special_token_103|>",
893
+ "lstrip": false,
894
+ "normalized": false,
895
+ "rstrip": false,
896
+ "single_word": false,
897
+ "special": true
898
+ },
899
+ "128112": {
900
+ "content": "<|reserved_special_token_104|>",
901
+ "lstrip": false,
902
+ "normalized": false,
903
+ "rstrip": false,
904
+ "single_word": false,
905
+ "special": true
906
+ },
907
+ "128113": {
908
+ "content": "<|reserved_special_token_105|>",
909
+ "lstrip": false,
910
+ "normalized": false,
911
+ "rstrip": false,
912
+ "single_word": false,
913
+ "special": true
914
+ },
915
+ "128114": {
916
+ "content": "<|reserved_special_token_106|>",
917
+ "lstrip": false,
918
+ "normalized": false,
919
+ "rstrip": false,
920
+ "single_word": false,
921
+ "special": true
922
+ },
923
+ "128115": {
924
+ "content": "<|reserved_special_token_107|>",
925
+ "lstrip": false,
926
+ "normalized": false,
927
+ "rstrip": false,
928
+ "single_word": false,
929
+ "special": true
930
+ },
931
+ "128116": {
932
+ "content": "<|reserved_special_token_108|>",
933
+ "lstrip": false,
934
+ "normalized": false,
935
+ "rstrip": false,
936
+ "single_word": false,
937
+ "special": true
938
+ },
939
+ "128117": {
940
+ "content": "<|reserved_special_token_109|>",
941
+ "lstrip": false,
942
+ "normalized": false,
943
+ "rstrip": false,
944
+ "single_word": false,
945
+ "special": true
946
+ },
947
+ "128118": {
948
+ "content": "<|reserved_special_token_110|>",
949
+ "lstrip": false,
950
+ "normalized": false,
951
+ "rstrip": false,
952
+ "single_word": false,
953
+ "special": true
954
+ },
955
+ "128119": {
956
+ "content": "<|reserved_special_token_111|>",
957
+ "lstrip": false,
958
+ "normalized": false,
959
+ "rstrip": false,
960
+ "single_word": false,
961
+ "special": true
962
+ },
963
+ "128120": {
964
+ "content": "<|reserved_special_token_112|>",
965
+ "lstrip": false,
966
+ "normalized": false,
967
+ "rstrip": false,
968
+ "single_word": false,
969
+ "special": true
970
+ },
971
+ "128121": {
972
+ "content": "<|reserved_special_token_113|>",
973
+ "lstrip": false,
974
+ "normalized": false,
975
+ "rstrip": false,
976
+ "single_word": false,
977
+ "special": true
978
+ },
979
+ "128122": {
980
+ "content": "<|reserved_special_token_114|>",
981
+ "lstrip": false,
982
+ "normalized": false,
983
+ "rstrip": false,
984
+ "single_word": false,
985
+ "special": true
986
+ },
987
+ "128123": {
988
+ "content": "<|reserved_special_token_115|>",
989
+ "lstrip": false,
990
+ "normalized": false,
991
+ "rstrip": false,
992
+ "single_word": false,
993
+ "special": true
994
+ },
995
+ "128124": {
996
+ "content": "<|reserved_special_token_116|>",
997
+ "lstrip": false,
998
+ "normalized": false,
999
+ "rstrip": false,
1000
+ "single_word": false,
1001
+ "special": true
1002
+ },
1003
+ "128125": {
1004
+ "content": "<|reserved_special_token_117|>",
1005
+ "lstrip": false,
1006
+ "normalized": false,
1007
+ "rstrip": false,
1008
+ "single_word": false,
1009
+ "special": true
1010
+ },
1011
+ "128126": {
1012
+ "content": "<|reserved_special_token_118|>",
1013
+ "lstrip": false,
1014
+ "normalized": false,
1015
+ "rstrip": false,
1016
+ "single_word": false,
1017
+ "special": true
1018
+ },
1019
+ "128127": {
1020
+ "content": "<|reserved_special_token_119|>",
1021
+ "lstrip": false,
1022
+ "normalized": false,
1023
+ "rstrip": false,
1024
+ "single_word": false,
1025
+ "special": true
1026
+ },
1027
+ "128128": {
1028
+ "content": "<|reserved_special_token_120|>",
1029
+ "lstrip": false,
1030
+ "normalized": false,
1031
+ "rstrip": false,
1032
+ "single_word": false,
1033
+ "special": true
1034
+ },
1035
+ "128129": {
1036
+ "content": "<|reserved_special_token_121|>",
1037
+ "lstrip": false,
1038
+ "normalized": false,
1039
+ "rstrip": false,
1040
+ "single_word": false,
1041
+ "special": true
1042
+ },
1043
+ "128130": {
1044
+ "content": "<|reserved_special_token_122|>",
1045
+ "lstrip": false,
1046
+ "normalized": false,
1047
+ "rstrip": false,
1048
+ "single_word": false,
1049
+ "special": true
1050
+ },
1051
+ "128131": {
1052
+ "content": "<|reserved_special_token_123|>",
1053
+ "lstrip": false,
1054
+ "normalized": false,
1055
+ "rstrip": false,
1056
+ "single_word": false,
1057
+ "special": true
1058
+ },
1059
+ "128132": {
1060
+ "content": "<|reserved_special_token_124|>",
1061
+ "lstrip": false,
1062
+ "normalized": false,
1063
+ "rstrip": false,
1064
+ "single_word": false,
1065
+ "special": true
1066
+ },
1067
+ "128133": {
1068
+ "content": "<|reserved_special_token_125|>",
1069
+ "lstrip": false,
1070
+ "normalized": false,
1071
+ "rstrip": false,
1072
+ "single_word": false,
1073
+ "special": true
1074
+ },
1075
+ "128134": {
1076
+ "content": "<|reserved_special_token_126|>",
1077
+ "lstrip": false,
1078
+ "normalized": false,
1079
+ "rstrip": false,
1080
+ "single_word": false,
1081
+ "special": true
1082
+ },
1083
+ "128135": {
1084
+ "content": "<|reserved_special_token_127|>",
1085
+ "lstrip": false,
1086
+ "normalized": false,
1087
+ "rstrip": false,
1088
+ "single_word": false,
1089
+ "special": true
1090
+ },
1091
+ "128136": {
1092
+ "content": "<|reserved_special_token_128|>",
1093
+ "lstrip": false,
1094
+ "normalized": false,
1095
+ "rstrip": false,
1096
+ "single_word": false,
1097
+ "special": true
1098
+ },
1099
+ "128137": {
1100
+ "content": "<|reserved_special_token_129|>",
1101
+ "lstrip": false,
1102
+ "normalized": false,
1103
+ "rstrip": false,
1104
+ "single_word": false,
1105
+ "special": true
1106
+ },
1107
+ "128138": {
1108
+ "content": "<|reserved_special_token_130|>",
1109
+ "lstrip": false,
1110
+ "normalized": false,
1111
+ "rstrip": false,
1112
+ "single_word": false,
1113
+ "special": true
1114
+ },
1115
+ "128139": {
1116
+ "content": "<|reserved_special_token_131|>",
1117
+ "lstrip": false,
1118
+ "normalized": false,
1119
+ "rstrip": false,
1120
+ "single_word": false,
1121
+ "special": true
1122
+ },
1123
+ "128140": {
1124
+ "content": "<|reserved_special_token_132|>",
1125
+ "lstrip": false,
1126
+ "normalized": false,
1127
+ "rstrip": false,
1128
+ "single_word": false,
1129
+ "special": true
1130
+ },
1131
+ "128141": {
1132
+ "content": "<|reserved_special_token_133|>",
1133
+ "lstrip": false,
1134
+ "normalized": false,
1135
+ "rstrip": false,
1136
+ "single_word": false,
1137
+ "special": true
1138
+ },
1139
+ "128142": {
1140
+ "content": "<|reserved_special_token_134|>",
1141
+ "lstrip": false,
1142
+ "normalized": false,
1143
+ "rstrip": false,
1144
+ "single_word": false,
1145
+ "special": true
1146
+ },
1147
+ "128143": {
1148
+ "content": "<|reserved_special_token_135|>",
1149
+ "lstrip": false,
1150
+ "normalized": false,
1151
+ "rstrip": false,
1152
+ "single_word": false,
1153
+ "special": true
1154
+ },
1155
+ "128144": {
1156
+ "content": "<|reserved_special_token_136|>",
1157
+ "lstrip": false,
1158
+ "normalized": false,
1159
+ "rstrip": false,
1160
+ "single_word": false,
1161
+ "special": true
1162
+ },
1163
+ "128145": {
1164
+ "content": "<|reserved_special_token_137|>",
1165
+ "lstrip": false,
1166
+ "normalized": false,
1167
+ "rstrip": false,
1168
+ "single_word": false,
1169
+ "special": true
1170
+ },
1171
+ "128146": {
1172
+ "content": "<|reserved_special_token_138|>",
1173
+ "lstrip": false,
1174
+ "normalized": false,
1175
+ "rstrip": false,
1176
+ "single_word": false,
1177
+ "special": true
1178
+ },
1179
+ "128147": {
1180
+ "content": "<|reserved_special_token_139|>",
1181
+ "lstrip": false,
1182
+ "normalized": false,
1183
+ "rstrip": false,
1184
+ "single_word": false,
1185
+ "special": true
1186
+ },
1187
+ "128148": {
1188
+ "content": "<|reserved_special_token_140|>",
1189
+ "lstrip": false,
1190
+ "normalized": false,
1191
+ "rstrip": false,
1192
+ "single_word": false,
1193
+ "special": true
1194
+ },
1195
+ "128149": {
1196
+ "content": "<|reserved_special_token_141|>",
1197
+ "lstrip": false,
1198
+ "normalized": false,
1199
+ "rstrip": false,
1200
+ "single_word": false,
1201
+ "special": true
1202
+ },
1203
+ "128150": {
1204
+ "content": "<|reserved_special_token_142|>",
1205
+ "lstrip": false,
1206
+ "normalized": false,
1207
+ "rstrip": false,
1208
+ "single_word": false,
1209
+ "special": true
1210
+ },
1211
+ "128151": {
1212
+ "content": "<|reserved_special_token_143|>",
1213
+ "lstrip": false,
1214
+ "normalized": false,
1215
+ "rstrip": false,
1216
+ "single_word": false,
1217
+ "special": true
1218
+ },
1219
+ "128152": {
1220
+ "content": "<|reserved_special_token_144|>",
1221
+ "lstrip": false,
1222
+ "normalized": false,
1223
+ "rstrip": false,
1224
+ "single_word": false,
1225
+ "special": true
1226
+ },
1227
+ "128153": {
1228
+ "content": "<|reserved_special_token_145|>",
1229
+ "lstrip": false,
1230
+ "normalized": false,
1231
+ "rstrip": false,
1232
+ "single_word": false,
1233
+ "special": true
1234
+ },
1235
+ "128154": {
1236
+ "content": "<|reserved_special_token_146|>",
1237
+ "lstrip": false,
1238
+ "normalized": false,
1239
+ "rstrip": false,
1240
+ "single_word": false,
1241
+ "special": true
1242
+ },
1243
+ "128155": {
1244
+ "content": "<|reserved_special_token_147|>",
1245
+ "lstrip": false,
1246
+ "normalized": false,
1247
+ "rstrip": false,
1248
+ "single_word": false,
1249
+ "special": true
1250
+ },
1251
+ "128156": {
1252
+ "content": "<|reserved_special_token_148|>",
1253
+ "lstrip": false,
1254
+ "normalized": false,
1255
+ "rstrip": false,
1256
+ "single_word": false,
1257
+ "special": true
1258
+ },
1259
+ "128157": {
1260
+ "content": "<|reserved_special_token_149|>",
1261
+ "lstrip": false,
1262
+ "normalized": false,
1263
+ "rstrip": false,
1264
+ "single_word": false,
1265
+ "special": true
1266
+ },
1267
+ "128158": {
1268
+ "content": "<|reserved_special_token_150|>",
1269
+ "lstrip": false,
1270
+ "normalized": false,
1271
+ "rstrip": false,
1272
+ "single_word": false,
1273
+ "special": true
1274
+ },
1275
+ "128159": {
1276
+ "content": "<|reserved_special_token_151|>",
1277
+ "lstrip": false,
1278
+ "normalized": false,
1279
+ "rstrip": false,
1280
+ "single_word": false,
1281
+ "special": true
1282
+ },
1283
+ "128160": {
1284
+ "content": "<|reserved_special_token_152|>",
1285
+ "lstrip": false,
1286
+ "normalized": false,
1287
+ "rstrip": false,
1288
+ "single_word": false,
1289
+ "special": true
1290
+ },
1291
+ "128161": {
1292
+ "content": "<|reserved_special_token_153|>",
1293
+ "lstrip": false,
1294
+ "normalized": false,
1295
+ "rstrip": false,
1296
+ "single_word": false,
1297
+ "special": true
1298
+ },
1299
+ "128162": {
1300
+ "content": "<|reserved_special_token_154|>",
1301
+ "lstrip": false,
1302
+ "normalized": false,
1303
+ "rstrip": false,
1304
+ "single_word": false,
1305
+ "special": true
1306
+ },
1307
+ "128163": {
1308
+ "content": "<|reserved_special_token_155|>",
1309
+ "lstrip": false,
1310
+ "normalized": false,
1311
+ "rstrip": false,
1312
+ "single_word": false,
1313
+ "special": true
1314
+ },
1315
+ "128164": {
1316
+ "content": "<|reserved_special_token_156|>",
1317
+ "lstrip": false,
1318
+ "normalized": false,
1319
+ "rstrip": false,
1320
+ "single_word": false,
1321
+ "special": true
1322
+ },
1323
+ "128165": {
1324
+ "content": "<|reserved_special_token_157|>",
1325
+ "lstrip": false,
1326
+ "normalized": false,
1327
+ "rstrip": false,
1328
+ "single_word": false,
1329
+ "special": true
1330
+ },
1331
+ "128166": {
1332
+ "content": "<|reserved_special_token_158|>",
1333
+ "lstrip": false,
1334
+ "normalized": false,
1335
+ "rstrip": false,
1336
+ "single_word": false,
1337
+ "special": true
1338
+ },
1339
+ "128167": {
1340
+ "content": "<|reserved_special_token_159|>",
1341
+ "lstrip": false,
1342
+ "normalized": false,
1343
+ "rstrip": false,
1344
+ "single_word": false,
1345
+ "special": true
1346
+ },
1347
+ "128168": {
1348
+ "content": "<|reserved_special_token_160|>",
1349
+ "lstrip": false,
1350
+ "normalized": false,
1351
+ "rstrip": false,
1352
+ "single_word": false,
1353
+ "special": true
1354
+ },
1355
+ "128169": {
1356
+ "content": "<|reserved_special_token_161|>",
1357
+ "lstrip": false,
1358
+ "normalized": false,
1359
+ "rstrip": false,
1360
+ "single_word": false,
1361
+ "special": true
1362
+ },
1363
+ "128170": {
1364
+ "content": "<|reserved_special_token_162|>",
1365
+ "lstrip": false,
1366
+ "normalized": false,
1367
+ "rstrip": false,
1368
+ "single_word": false,
1369
+ "special": true
1370
+ },
1371
+ "128171": {
1372
+ "content": "<|reserved_special_token_163|>",
1373
+ "lstrip": false,
1374
+ "normalized": false,
1375
+ "rstrip": false,
1376
+ "single_word": false,
1377
+ "special": true
1378
+ },
1379
+ "128172": {
1380
+ "content": "<|reserved_special_token_164|>",
1381
+ "lstrip": false,
1382
+ "normalized": false,
1383
+ "rstrip": false,
1384
+ "single_word": false,
1385
+ "special": true
1386
+ },
1387
+ "128173": {
1388
+ "content": "<|reserved_special_token_165|>",
1389
+ "lstrip": false,
1390
+ "normalized": false,
1391
+ "rstrip": false,
1392
+ "single_word": false,
1393
+ "special": true
1394
+ },
1395
+ "128174": {
1396
+ "content": "<|reserved_special_token_166|>",
1397
+ "lstrip": false,
1398
+ "normalized": false,
1399
+ "rstrip": false,
1400
+ "single_word": false,
1401
+ "special": true
1402
+ },
1403
+ "128175": {
1404
+ "content": "<|reserved_special_token_167|>",
1405
+ "lstrip": false,
1406
+ "normalized": false,
1407
+ "rstrip": false,
1408
+ "single_word": false,
1409
+ "special": true
1410
+ },
1411
+ "128176": {
1412
+ "content": "<|reserved_special_token_168|>",
1413
+ "lstrip": false,
1414
+ "normalized": false,
1415
+ "rstrip": false,
1416
+ "single_word": false,
1417
+ "special": true
1418
+ },
1419
+ "128177": {
1420
+ "content": "<|reserved_special_token_169|>",
1421
+ "lstrip": false,
1422
+ "normalized": false,
1423
+ "rstrip": false,
1424
+ "single_word": false,
1425
+ "special": true
1426
+ },
1427
+ "128178": {
1428
+ "content": "<|reserved_special_token_170|>",
1429
+ "lstrip": false,
1430
+ "normalized": false,
1431
+ "rstrip": false,
1432
+ "single_word": false,
1433
+ "special": true
1434
+ },
1435
+ "128179": {
1436
+ "content": "<|reserved_special_token_171|>",
1437
+ "lstrip": false,
1438
+ "normalized": false,
1439
+ "rstrip": false,
1440
+ "single_word": false,
1441
+ "special": true
1442
+ },
1443
+ "128180": {
1444
+ "content": "<|reserved_special_token_172|>",
1445
+ "lstrip": false,
1446
+ "normalized": false,
1447
+ "rstrip": false,
1448
+ "single_word": false,
1449
+ "special": true
1450
+ },
1451
+ "128181": {
1452
+ "content": "<|reserved_special_token_173|>",
1453
+ "lstrip": false,
1454
+ "normalized": false,
1455
+ "rstrip": false,
1456
+ "single_word": false,
1457
+ "special": true
1458
+ },
1459
+ "128182": {
1460
+ "content": "<|reserved_special_token_174|>",
1461
+ "lstrip": false,
1462
+ "normalized": false,
1463
+ "rstrip": false,
1464
+ "single_word": false,
1465
+ "special": true
1466
+ },
1467
+ "128183": {
1468
+ "content": "<|reserved_special_token_175|>",
1469
+ "lstrip": false,
1470
+ "normalized": false,
1471
+ "rstrip": false,
1472
+ "single_word": false,
1473
+ "special": true
1474
+ },
1475
+ "128184": {
1476
+ "content": "<|reserved_special_token_176|>",
1477
+ "lstrip": false,
1478
+ "normalized": false,
1479
+ "rstrip": false,
1480
+ "single_word": false,
1481
+ "special": true
1482
+ },
1483
+ "128185": {
1484
+ "content": "<|reserved_special_token_177|>",
1485
+ "lstrip": false,
1486
+ "normalized": false,
1487
+ "rstrip": false,
1488
+ "single_word": false,
1489
+ "special": true
1490
+ },
1491
+ "128186": {
1492
+ "content": "<|reserved_special_token_178|>",
1493
+ "lstrip": false,
1494
+ "normalized": false,
1495
+ "rstrip": false,
1496
+ "single_word": false,
1497
+ "special": true
1498
+ },
1499
+ "128187": {
1500
+ "content": "<|reserved_special_token_179|>",
1501
+ "lstrip": false,
1502
+ "normalized": false,
1503
+ "rstrip": false,
1504
+ "single_word": false,
1505
+ "special": true
1506
+ },
1507
+ "128188": {
1508
+ "content": "<|reserved_special_token_180|>",
1509
+ "lstrip": false,
1510
+ "normalized": false,
1511
+ "rstrip": false,
1512
+ "single_word": false,
1513
+ "special": true
1514
+ },
1515
+ "128189": {
1516
+ "content": "<|reserved_special_token_181|>",
1517
+ "lstrip": false,
1518
+ "normalized": false,
1519
+ "rstrip": false,
1520
+ "single_word": false,
1521
+ "special": true
1522
+ },
1523
+ "128190": {
1524
+ "content": "<|reserved_special_token_182|>",
1525
+ "lstrip": false,
1526
+ "normalized": false,
1527
+ "rstrip": false,
1528
+ "single_word": false,
1529
+ "special": true
1530
+ },
1531
+ "128191": {
1532
+ "content": "<|reserved_special_token_183|>",
1533
+ "lstrip": false,
1534
+ "normalized": false,
1535
+ "rstrip": false,
1536
+ "single_word": false,
1537
+ "special": true
1538
+ },
1539
+ "128192": {
1540
+ "content": "<|reserved_special_token_184|>",
1541
+ "lstrip": false,
1542
+ "normalized": false,
1543
+ "rstrip": false,
1544
+ "single_word": false,
1545
+ "special": true
1546
+ },
1547
+ "128193": {
1548
+ "content": "<|reserved_special_token_185|>",
1549
+ "lstrip": false,
1550
+ "normalized": false,
1551
+ "rstrip": false,
1552
+ "single_word": false,
1553
+ "special": true
1554
+ },
1555
+ "128194": {
1556
+ "content": "<|reserved_special_token_186|>",
1557
+ "lstrip": false,
1558
+ "normalized": false,
1559
+ "rstrip": false,
1560
+ "single_word": false,
1561
+ "special": true
1562
+ },
1563
+ "128195": {
1564
+ "content": "<|reserved_special_token_187|>",
1565
+ "lstrip": false,
1566
+ "normalized": false,
1567
+ "rstrip": false,
1568
+ "single_word": false,
1569
+ "special": true
1570
+ },
1571
+ "128196": {
1572
+ "content": "<|reserved_special_token_188|>",
1573
+ "lstrip": false,
1574
+ "normalized": false,
1575
+ "rstrip": false,
1576
+ "single_word": false,
1577
+ "special": true
1578
+ },
1579
+ "128197": {
1580
+ "content": "<|reserved_special_token_189|>",
1581
+ "lstrip": false,
1582
+ "normalized": false,
1583
+ "rstrip": false,
1584
+ "single_word": false,
1585
+ "special": true
1586
+ },
1587
+ "128198": {
1588
+ "content": "<|reserved_special_token_190|>",
1589
+ "lstrip": false,
1590
+ "normalized": false,
1591
+ "rstrip": false,
1592
+ "single_word": false,
1593
+ "special": true
1594
+ },
1595
+ "128199": {
1596
+ "content": "<|reserved_special_token_191|>",
1597
+ "lstrip": false,
1598
+ "normalized": false,
1599
+ "rstrip": false,
1600
+ "single_word": false,
1601
+ "special": true
1602
+ },
1603
+ "128200": {
1604
+ "content": "<|reserved_special_token_192|>",
1605
+ "lstrip": false,
1606
+ "normalized": false,
1607
+ "rstrip": false,
1608
+ "single_word": false,
1609
+ "special": true
1610
+ },
1611
+ "128201": {
1612
+ "content": "<|reserved_special_token_193|>",
1613
+ "lstrip": false,
1614
+ "normalized": false,
1615
+ "rstrip": false,
1616
+ "single_word": false,
1617
+ "special": true
1618
+ },
1619
+ "128202": {
1620
+ "content": "<|reserved_special_token_194|>",
1621
+ "lstrip": false,
1622
+ "normalized": false,
1623
+ "rstrip": false,
1624
+ "single_word": false,
1625
+ "special": true
1626
+ },
1627
+ "128203": {
1628
+ "content": "<|reserved_special_token_195|>",
1629
+ "lstrip": false,
1630
+ "normalized": false,
1631
+ "rstrip": false,
1632
+ "single_word": false,
1633
+ "special": true
1634
+ },
1635
+ "128204": {
1636
+ "content": "<|reserved_special_token_196|>",
1637
+ "lstrip": false,
1638
+ "normalized": false,
1639
+ "rstrip": false,
1640
+ "single_word": false,
1641
+ "special": true
1642
+ },
1643
+ "128205": {
1644
+ "content": "<|reserved_special_token_197|>",
1645
+ "lstrip": false,
1646
+ "normalized": false,
1647
+ "rstrip": false,
1648
+ "single_word": false,
1649
+ "special": true
1650
+ },
1651
+ "128206": {
1652
+ "content": "<|reserved_special_token_198|>",
1653
+ "lstrip": false,
1654
+ "normalized": false,
1655
+ "rstrip": false,
1656
+ "single_word": false,
1657
+ "special": true
1658
+ },
1659
+ "128207": {
1660
+ "content": "<|reserved_special_token_199|>",
1661
+ "lstrip": false,
1662
+ "normalized": false,
1663
+ "rstrip": false,
1664
+ "single_word": false,
1665
+ "special": true
1666
+ },
1667
+ "128208": {
1668
+ "content": "<|reserved_special_token_200|>",
1669
+ "lstrip": false,
1670
+ "normalized": false,
1671
+ "rstrip": false,
1672
+ "single_word": false,
1673
+ "special": true
1674
+ },
1675
+ "128209": {
1676
+ "content": "<|reserved_special_token_201|>",
1677
+ "lstrip": false,
1678
+ "normalized": false,
1679
+ "rstrip": false,
1680
+ "single_word": false,
1681
+ "special": true
1682
+ },
1683
+ "128210": {
1684
+ "content": "<|reserved_special_token_202|>",
1685
+ "lstrip": false,
1686
+ "normalized": false,
1687
+ "rstrip": false,
1688
+ "single_word": false,
1689
+ "special": true
1690
+ },
1691
+ "128211": {
1692
+ "content": "<|reserved_special_token_203|>",
1693
+ "lstrip": false,
1694
+ "normalized": false,
1695
+ "rstrip": false,
1696
+ "single_word": false,
1697
+ "special": true
1698
+ },
1699
+ "128212": {
1700
+ "content": "<|reserved_special_token_204|>",
1701
+ "lstrip": false,
1702
+ "normalized": false,
1703
+ "rstrip": false,
1704
+ "single_word": false,
1705
+ "special": true
1706
+ },
1707
+ "128213": {
1708
+ "content": "<|reserved_special_token_205|>",
1709
+ "lstrip": false,
1710
+ "normalized": false,
1711
+ "rstrip": false,
1712
+ "single_word": false,
1713
+ "special": true
1714
+ },
1715
+ "128214": {
1716
+ "content": "<|reserved_special_token_206|>",
1717
+ "lstrip": false,
1718
+ "normalized": false,
1719
+ "rstrip": false,
1720
+ "single_word": false,
1721
+ "special": true
1722
+ },
1723
+ "128215": {
1724
+ "content": "<|reserved_special_token_207|>",
1725
+ "lstrip": false,
1726
+ "normalized": false,
1727
+ "rstrip": false,
1728
+ "single_word": false,
1729
+ "special": true
1730
+ },
1731
+ "128216": {
1732
+ "content": "<|reserved_special_token_208|>",
1733
+ "lstrip": false,
1734
+ "normalized": false,
1735
+ "rstrip": false,
1736
+ "single_word": false,
1737
+ "special": true
1738
+ },
1739
+ "128217": {
1740
+ "content": "<|reserved_special_token_209|>",
1741
+ "lstrip": false,
1742
+ "normalized": false,
1743
+ "rstrip": false,
1744
+ "single_word": false,
1745
+ "special": true
1746
+ },
1747
+ "128218": {
1748
+ "content": "<|reserved_special_token_210|>",
1749
+ "lstrip": false,
1750
+ "normalized": false,
1751
+ "rstrip": false,
1752
+ "single_word": false,
1753
+ "special": true
1754
+ },
1755
+ "128219": {
1756
+ "content": "<|reserved_special_token_211|>",
1757
+ "lstrip": false,
1758
+ "normalized": false,
1759
+ "rstrip": false,
1760
+ "single_word": false,
1761
+ "special": true
1762
+ },
1763
+ "128220": {
1764
+ "content": "<|reserved_special_token_212|>",
1765
+ "lstrip": false,
1766
+ "normalized": false,
1767
+ "rstrip": false,
1768
+ "single_word": false,
1769
+ "special": true
1770
+ },
1771
+ "128221": {
1772
+ "content": "<|reserved_special_token_213|>",
1773
+ "lstrip": false,
1774
+ "normalized": false,
1775
+ "rstrip": false,
1776
+ "single_word": false,
1777
+ "special": true
1778
+ },
1779
+ "128222": {
1780
+ "content": "<|reserved_special_token_214|>",
1781
+ "lstrip": false,
1782
+ "normalized": false,
1783
+ "rstrip": false,
1784
+ "single_word": false,
1785
+ "special": true
1786
+ },
1787
+ "128223": {
1788
+ "content": "<|reserved_special_token_215|>",
1789
+ "lstrip": false,
1790
+ "normalized": false,
1791
+ "rstrip": false,
1792
+ "single_word": false,
1793
+ "special": true
1794
+ },
1795
+ "128224": {
1796
+ "content": "<|reserved_special_token_216|>",
1797
+ "lstrip": false,
1798
+ "normalized": false,
1799
+ "rstrip": false,
1800
+ "single_word": false,
1801
+ "special": true
1802
+ },
1803
+ "128225": {
1804
+ "content": "<|reserved_special_token_217|>",
1805
+ "lstrip": false,
1806
+ "normalized": false,
1807
+ "rstrip": false,
1808
+ "single_word": false,
1809
+ "special": true
1810
+ },
1811
+ "128226": {
1812
+ "content": "<|reserved_special_token_218|>",
1813
+ "lstrip": false,
1814
+ "normalized": false,
1815
+ "rstrip": false,
1816
+ "single_word": false,
1817
+ "special": true
1818
+ },
1819
+ "128227": {
1820
+ "content": "<|reserved_special_token_219|>",
1821
+ "lstrip": false,
1822
+ "normalized": false,
1823
+ "rstrip": false,
1824
+ "single_word": false,
1825
+ "special": true
1826
+ },
1827
+ "128228": {
1828
+ "content": "<|reserved_special_token_220|>",
1829
+ "lstrip": false,
1830
+ "normalized": false,
1831
+ "rstrip": false,
1832
+ "single_word": false,
1833
+ "special": true
1834
+ },
1835
+ "128229": {
1836
+ "content": "<|reserved_special_token_221|>",
1837
+ "lstrip": false,
1838
+ "normalized": false,
1839
+ "rstrip": false,
1840
+ "single_word": false,
1841
+ "special": true
1842
+ },
1843
+ "128230": {
1844
+ "content": "<|reserved_special_token_222|>",
1845
+ "lstrip": false,
1846
+ "normalized": false,
1847
+ "rstrip": false,
1848
+ "single_word": false,
1849
+ "special": true
1850
+ },
1851
+ "128231": {
1852
+ "content": "<|reserved_special_token_223|>",
1853
+ "lstrip": false,
1854
+ "normalized": false,
1855
+ "rstrip": false,
1856
+ "single_word": false,
1857
+ "special": true
1858
+ },
1859
+ "128232": {
1860
+ "content": "<|reserved_special_token_224|>",
1861
+ "lstrip": false,
1862
+ "normalized": false,
1863
+ "rstrip": false,
1864
+ "single_word": false,
1865
+ "special": true
1866
+ },
1867
+ "128233": {
1868
+ "content": "<|reserved_special_token_225|>",
1869
+ "lstrip": false,
1870
+ "normalized": false,
1871
+ "rstrip": false,
1872
+ "single_word": false,
1873
+ "special": true
1874
+ },
1875
+ "128234": {
1876
+ "content": "<|reserved_special_token_226|>",
1877
+ "lstrip": false,
1878
+ "normalized": false,
1879
+ "rstrip": false,
1880
+ "single_word": false,
1881
+ "special": true
1882
+ },
1883
+ "128235": {
1884
+ "content": "<|reserved_special_token_227|>",
1885
+ "lstrip": false,
1886
+ "normalized": false,
1887
+ "rstrip": false,
1888
+ "single_word": false,
1889
+ "special": true
1890
+ },
1891
+ "128236": {
1892
+ "content": "<|reserved_special_token_228|>",
1893
+ "lstrip": false,
1894
+ "normalized": false,
1895
+ "rstrip": false,
1896
+ "single_word": false,
1897
+ "special": true
1898
+ },
1899
+ "128237": {
1900
+ "content": "<|reserved_special_token_229|>",
1901
+ "lstrip": false,
1902
+ "normalized": false,
1903
+ "rstrip": false,
1904
+ "single_word": false,
1905
+ "special": true
1906
+ },
1907
+ "128238": {
1908
+ "content": "<|reserved_special_token_230|>",
1909
+ "lstrip": false,
1910
+ "normalized": false,
1911
+ "rstrip": false,
1912
+ "single_word": false,
1913
+ "special": true
1914
+ },
1915
+ "128239": {
1916
+ "content": "<|reserved_special_token_231|>",
1917
+ "lstrip": false,
1918
+ "normalized": false,
1919
+ "rstrip": false,
1920
+ "single_word": false,
1921
+ "special": true
1922
+ },
1923
+ "128240": {
1924
+ "content": "<|reserved_special_token_232|>",
1925
+ "lstrip": false,
1926
+ "normalized": false,
1927
+ "rstrip": false,
1928
+ "single_word": false,
1929
+ "special": true
1930
+ },
1931
+ "128241": {
1932
+ "content": "<|reserved_special_token_233|>",
1933
+ "lstrip": false,
1934
+ "normalized": false,
1935
+ "rstrip": false,
1936
+ "single_word": false,
1937
+ "special": true
1938
+ },
1939
+ "128242": {
1940
+ "content": "<|reserved_special_token_234|>",
1941
+ "lstrip": false,
1942
+ "normalized": false,
1943
+ "rstrip": false,
1944
+ "single_word": false,
1945
+ "special": true
1946
+ },
1947
+ "128243": {
1948
+ "content": "<|reserved_special_token_235|>",
1949
+ "lstrip": false,
1950
+ "normalized": false,
1951
+ "rstrip": false,
1952
+ "single_word": false,
1953
+ "special": true
1954
+ },
1955
+ "128244": {
1956
+ "content": "<|reserved_special_token_236|>",
1957
+ "lstrip": false,
1958
+ "normalized": false,
1959
+ "rstrip": false,
1960
+ "single_word": false,
1961
+ "special": true
1962
+ },
1963
+ "128245": {
1964
+ "content": "<|reserved_special_token_237|>",
1965
+ "lstrip": false,
1966
+ "normalized": false,
1967
+ "rstrip": false,
1968
+ "single_word": false,
1969
+ "special": true
1970
+ },
1971
+ "128246": {
1972
+ "content": "<|reserved_special_token_238|>",
1973
+ "lstrip": false,
1974
+ "normalized": false,
1975
+ "rstrip": false,
1976
+ "single_word": false,
1977
+ "special": true
1978
+ },
1979
+ "128247": {
1980
+ "content": "<|reserved_special_token_239|>",
1981
+ "lstrip": false,
1982
+ "normalized": false,
1983
+ "rstrip": false,
1984
+ "single_word": false,
1985
+ "special": true
1986
+ },
1987
+ "128248": {
1988
+ "content": "<|reserved_special_token_240|>",
1989
+ "lstrip": false,
1990
+ "normalized": false,
1991
+ "rstrip": false,
1992
+ "single_word": false,
1993
+ "special": true
1994
+ },
1995
+ "128249": {
1996
+ "content": "<|reserved_special_token_241|>",
1997
+ "lstrip": false,
1998
+ "normalized": false,
1999
+ "rstrip": false,
2000
+ "single_word": false,
2001
+ "special": true
2002
+ },
2003
+ "128250": {
2004
+ "content": "<|reserved_special_token_242|>",
2005
+ "lstrip": false,
2006
+ "normalized": false,
2007
+ "rstrip": false,
2008
+ "single_word": false,
2009
+ "special": true
2010
+ },
2011
+ "128251": {
2012
+ "content": "<|reserved_special_token_243|>",
2013
+ "lstrip": false,
2014
+ "normalized": false,
2015
+ "rstrip": false,
2016
+ "single_word": false,
2017
+ "special": true
2018
+ },
2019
+ "128252": {
2020
+ "content": "<|reserved_special_token_244|>",
2021
+ "lstrip": false,
2022
+ "normalized": false,
2023
+ "rstrip": false,
2024
+ "single_word": false,
2025
+ "special": true
2026
+ },
2027
+ "128253": {
2028
+ "content": "<|reserved_special_token_245|>",
2029
+ "lstrip": false,
2030
+ "normalized": false,
2031
+ "rstrip": false,
2032
+ "single_word": false,
2033
+ "special": true
2034
+ },
2035
+ "128254": {
2036
+ "content": "<|reserved_special_token_246|>",
2037
+ "lstrip": false,
2038
+ "normalized": false,
2039
+ "rstrip": false,
2040
+ "single_word": false,
2041
+ "special": true
2042
+ },
2043
+ "128255": {
2044
+ "content": "<|reserved_special_token_247|>",
2045
+ "lstrip": false,
2046
+ "normalized": false,
2047
+ "rstrip": false,
2048
+ "single_word": false,
2049
+ "special": true
2050
+ }
2051
+ },
2052
+ "bos_token": "<|begin_of_text|>",
2053
+ "chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message #}\n{{- \"<|start_header_id|>system<|end_header_id|>\\n\\n\" }}\n{%- if tools is not none %}\n {{- \"Environment: ipython\\n\" }}\n{%- endif %}\n{{- \"Cutting Knowledge Date: December 2023\\n\" }}\n{{- \"Today Date: \" + date_string + \"\\n\\n\" }}\n{%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n{%- endif %}\n{{- system_message }}\n{{- \"<|eot_id|>\" }}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|start_header_id|>user<|end_header_id|>\\n\\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\\n\\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot_id|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\\n\\n'+ message['content'] | trim + '<|eot_id|>' }}\n {%- elif 'tool_calls' in message %}\n {%- if not message.tool_calls|length == 1 %}\n {{- raise_exception(\"This model only supports single tool-calls at once!\") }}\n {%- endif %}\n {%- set tool_call = message.tool_calls[0].function %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {{- \"<|eot_id|>\" }}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|start_header_id|>ipython<|end_header_id|>\\n\\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' }}\n{%- endif %}\n",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|eot_id|>",
2063
+ "tokenizer_class": "PreTrainedTokenizerFast"
2064
+ }
checkpoint-10800/trainer_state.json ADDED
@@ -0,0 +1,1066 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.1874967448481797,
5
+ "eval_steps": 1000,
6
+ "global_step": 10800,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 1.736080970816479e-05,
13
+ "grad_norm": 10.5625,
14
+ "learning_rate": 2e-06,
15
+ "loss": 1.0,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.001736080970816479,
20
+ "grad_norm": 0.1513671875,
21
+ "learning_rate": 0.0002,
22
+ "loss": 0.3311,
23
+ "step": 100
24
+ },
25
+ {
26
+ "epoch": 0.003472161941632958,
27
+ "grad_norm": 0.16796875,
28
+ "learning_rate": 0.0004,
29
+ "loss": 0.2169,
30
+ "step": 200
31
+ },
32
+ {
33
+ "epoch": 0.005208242912449436,
34
+ "grad_norm": 0.10400390625,
35
+ "learning_rate": 0.0006,
36
+ "loss": 0.2032,
37
+ "step": 300
38
+ },
39
+ {
40
+ "epoch": 0.006944323883265916,
41
+ "grad_norm": 0.11279296875,
42
+ "learning_rate": 0.0008,
43
+ "loss": 0.188,
44
+ "step": 400
45
+ },
46
+ {
47
+ "epoch": 0.008680404854082394,
48
+ "grad_norm": 0.10107421875,
49
+ "learning_rate": 0.001,
50
+ "loss": 0.1758,
51
+ "step": 500
52
+ },
53
+ {
54
+ "epoch": 0.010416485824898873,
55
+ "grad_norm": 0.09521484375,
56
+ "learning_rate": 0.0012,
57
+ "loss": 0.1637,
58
+ "step": 600
59
+ },
60
+ {
61
+ "epoch": 0.012152566795715351,
62
+ "grad_norm": 0.08154296875,
63
+ "learning_rate": 0.0014,
64
+ "loss": 0.1518,
65
+ "step": 700
66
+ },
67
+ {
68
+ "epoch": 0.013888647766531832,
69
+ "grad_norm": 0.08642578125,
70
+ "learning_rate": 0.0016,
71
+ "loss": 0.1485,
72
+ "step": 800
73
+ },
74
+ {
75
+ "epoch": 0.01562472873734831,
76
+ "grad_norm": 0.1044921875,
77
+ "learning_rate": 0.0018000000000000002,
78
+ "loss": 0.1433,
79
+ "step": 900
80
+ },
81
+ {
82
+ "epoch": 0.01736080970816479,
83
+ "grad_norm": 0.05419921875,
84
+ "learning_rate": 0.002,
85
+ "loss": 0.139,
86
+ "step": 1000
87
+ },
88
+ {
89
+ "epoch": 0.01736080970816479,
90
+ "eval_covost2-en-de_loss": 1.896493673324585,
91
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
92
+ "eval_covost2-en-de_runtime": 9.8697,
93
+ "eval_covost2-en-de_samples_per_second": 6.485,
94
+ "eval_covost2-en-de_steps_per_second": 0.811,
95
+ "step": 1000
96
+ },
97
+ {
98
+ "epoch": 0.01736080970816479,
99
+ "eval_covost2-zh-en_loss": 3.1452860832214355,
100
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
101
+ "eval_covost2-zh-en_runtime": 8.3732,
102
+ "eval_covost2-zh-en_samples_per_second": 7.643,
103
+ "eval_covost2-zh-en_steps_per_second": 0.955,
104
+ "step": 1000
105
+ },
106
+ {
107
+ "epoch": 0.01736080970816479,
108
+ "eval_peoplespeech-clean-transcription_loss": 3.2206106185913086,
109
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
110
+ "eval_peoplespeech-clean-transcription_runtime": 9.6941,
111
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.602,
112
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.825,
113
+ "step": 1000
114
+ },
115
+ {
116
+ "epoch": 0.01909689067898127,
117
+ "grad_norm": 0.059814453125,
118
+ "learning_rate": 0.001999725185109816,
119
+ "loss": 0.1334,
120
+ "step": 1100
121
+ },
122
+ {
123
+ "epoch": 0.020832971649797746,
124
+ "grad_norm": 0.07373046875,
125
+ "learning_rate": 0.0019989008914857113,
126
+ "loss": 0.1288,
127
+ "step": 1200
128
+ },
129
+ {
130
+ "epoch": 0.022569052620614226,
131
+ "grad_norm": 0.049560546875,
132
+ "learning_rate": 0.00199752757218401,
133
+ "loss": 0.1262,
134
+ "step": 1300
135
+ },
136
+ {
137
+ "epoch": 0.024305133591430703,
138
+ "grad_norm": 0.0517578125,
139
+ "learning_rate": 0.001995605982021898,
140
+ "loss": 0.1222,
141
+ "step": 1400
142
+ },
143
+ {
144
+ "epoch": 0.026041214562247183,
145
+ "grad_norm": 0.058349609375,
146
+ "learning_rate": 0.0019931371771625545,
147
+ "loss": 0.1193,
148
+ "step": 1500
149
+ },
150
+ {
151
+ "epoch": 0.027777295533063663,
152
+ "grad_norm": 0.0498046875,
153
+ "learning_rate": 0.001990122514534651,
154
+ "loss": 0.1196,
155
+ "step": 1600
156
+ },
157
+ {
158
+ "epoch": 0.02951337650388014,
159
+ "grad_norm": 0.05517578125,
160
+ "learning_rate": 0.0019865636510865464,
161
+ "loss": 0.115,
162
+ "step": 1700
163
+ },
164
+ {
165
+ "epoch": 0.03124945747469662,
166
+ "grad_norm": 0.044677734375,
167
+ "learning_rate": 0.001982462542875576,
168
+ "loss": 0.115,
169
+ "step": 1800
170
+ },
171
+ {
172
+ "epoch": 0.0329855384455131,
173
+ "grad_norm": 0.05419921875,
174
+ "learning_rate": 0.001977821443992945,
175
+ "loss": 0.1125,
176
+ "step": 1900
177
+ },
178
+ {
179
+ "epoch": 0.03472161941632958,
180
+ "grad_norm": 0.047119140625,
181
+ "learning_rate": 0.001972642905324813,
182
+ "loss": 0.1094,
183
+ "step": 2000
184
+ },
185
+ {
186
+ "epoch": 0.03472161941632958,
187
+ "eval_covost2-en-de_loss": 1.6700351238250732,
188
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
189
+ "eval_covost2-en-de_runtime": 8.1279,
190
+ "eval_covost2-en-de_samples_per_second": 7.874,
191
+ "eval_covost2-en-de_steps_per_second": 0.984,
192
+ "step": 2000
193
+ },
194
+ {
195
+ "epoch": 0.03472161941632958,
196
+ "eval_covost2-zh-en_loss": 3.093877077102661,
197
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
198
+ "eval_covost2-zh-en_runtime": 8.1488,
199
+ "eval_covost2-zh-en_samples_per_second": 7.854,
200
+ "eval_covost2-zh-en_steps_per_second": 0.982,
201
+ "step": 2000
202
+ },
203
+ {
204
+ "epoch": 0.03472161941632958,
205
+ "eval_peoplespeech-clean-transcription_loss": 2.478968620300293,
206
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
207
+ "eval_peoplespeech-clean-transcription_runtime": 9.5507,
208
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.701,
209
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.838,
210
+ "step": 2000
211
+ },
212
+ {
213
+ "epoch": 0.036457700387146054,
214
+ "grad_norm": 0.048583984375,
215
+ "learning_rate": 0.0019669297731502505,
216
+ "loss": 0.1077,
217
+ "step": 2100
218
+ },
219
+ {
220
+ "epoch": 0.03819378135796254,
221
+ "grad_norm": 0.054443359375,
222
+ "learning_rate": 0.00196068518757684,
223
+ "loss": 0.1069,
224
+ "step": 2200
225
+ },
226
+ {
227
+ "epoch": 0.039929862328779014,
228
+ "grad_norm": 0.047119140625,
229
+ "learning_rate": 0.001953912580814779,
230
+ "loss": 0.1043,
231
+ "step": 2300
232
+ },
233
+ {
234
+ "epoch": 0.04166594329959549,
235
+ "grad_norm": 0.044921875,
236
+ "learning_rate": 0.0019466156752904343,
237
+ "loss": 0.1035,
238
+ "step": 2400
239
+ },
240
+ {
241
+ "epoch": 0.043402024270411975,
242
+ "grad_norm": 0.050537109375,
243
+ "learning_rate": 0.0019387984816003866,
244
+ "loss": 0.1033,
245
+ "step": 2500
246
+ },
247
+ {
248
+ "epoch": 0.04513810524122845,
249
+ "grad_norm": 0.056396484375,
250
+ "learning_rate": 0.0019304652963070869,
251
+ "loss": 0.102,
252
+ "step": 2600
253
+ },
254
+ {
255
+ "epoch": 0.04687418621204493,
256
+ "grad_norm": 0.046875,
257
+ "learning_rate": 0.0019216206995773372,
258
+ "loss": 0.0998,
259
+ "step": 2700
260
+ },
261
+ {
262
+ "epoch": 0.048610267182861405,
263
+ "grad_norm": 0.042236328125,
264
+ "learning_rate": 0.0019122695526648968,
265
+ "loss": 0.1002,
266
+ "step": 2800
267
+ },
268
+ {
269
+ "epoch": 0.05034634815367789,
270
+ "grad_norm": 0.04638671875,
271
+ "learning_rate": 0.0019024169952385887,
272
+ "loss": 0.0978,
273
+ "step": 2900
274
+ },
275
+ {
276
+ "epoch": 0.052082429124494366,
277
+ "grad_norm": 0.05126953125,
278
+ "learning_rate": 0.0018920684425573864,
279
+ "loss": 0.097,
280
+ "step": 3000
281
+ },
282
+ {
283
+ "epoch": 0.052082429124494366,
284
+ "eval_covost2-en-de_loss": 1.749150276184082,
285
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
286
+ "eval_covost2-en-de_runtime": 8.1948,
287
+ "eval_covost2-en-de_samples_per_second": 7.81,
288
+ "eval_covost2-en-de_steps_per_second": 0.976,
289
+ "step": 3000
290
+ },
291
+ {
292
+ "epoch": 0.052082429124494366,
293
+ "eval_covost2-zh-en_loss": 3.198117971420288,
294
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
295
+ "eval_covost2-zh-en_runtime": 8.1979,
296
+ "eval_covost2-zh-en_samples_per_second": 7.807,
297
+ "eval_covost2-zh-en_steps_per_second": 0.976,
298
+ "step": 3000
299
+ },
300
+ {
301
+ "epoch": 0.052082429124494366,
302
+ "eval_peoplespeech-clean-transcription_loss": 2.345036506652832,
303
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
304
+ "eval_peoplespeech-clean-transcription_runtime": 11.4402,
305
+ "eval_peoplespeech-clean-transcription_samples_per_second": 5.594,
306
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.699,
307
+ "step": 3000
308
+ },
309
+ {
310
+ "epoch": 0.05381851009531084,
311
+ "grad_norm": 0.06494140625,
312
+ "learning_rate": 0.0018812295824940284,
313
+ "loss": 0.0955,
314
+ "step": 3100
315
+ },
316
+ {
317
+ "epoch": 0.055554591066127326,
318
+ "grad_norm": 0.044677734375,
319
+ "learning_rate": 0.0018699063724087904,
320
+ "loss": 0.0951,
321
+ "step": 3200
322
+ },
323
+ {
324
+ "epoch": 0.0572906720369438,
325
+ "grad_norm": 0.0390625,
326
+ "learning_rate": 0.0018581050358751443,
327
+ "loss": 0.0947,
328
+ "step": 3300
329
+ },
330
+ {
331
+ "epoch": 0.05902675300776028,
332
+ "grad_norm": 0.056396484375,
333
+ "learning_rate": 0.0018458320592590974,
334
+ "loss": 0.0939,
335
+ "step": 3400
336
+ },
337
+ {
338
+ "epoch": 0.060762833978576763,
339
+ "grad_norm": 0.047119140625,
340
+ "learning_rate": 0.0018330941881540914,
341
+ "loss": 0.0941,
342
+ "step": 3500
343
+ },
344
+ {
345
+ "epoch": 0.06249891494939324,
346
+ "grad_norm": 0.046630859375,
347
+ "learning_rate": 0.0018198984236734246,
348
+ "loss": 0.0927,
349
+ "step": 3600
350
+ },
351
+ {
352
+ "epoch": 0.06423499592020972,
353
+ "grad_norm": 0.055419921875,
354
+ "learning_rate": 0.0018062520186022297,
355
+ "loss": 0.0948,
356
+ "step": 3700
357
+ },
358
+ {
359
+ "epoch": 0.0659710768910262,
360
+ "grad_norm": 0.046142578125,
361
+ "learning_rate": 0.0017921624734111292,
362
+ "loss": 0.09,
363
+ "step": 3800
364
+ },
365
+ {
366
+ "epoch": 0.06770715786184267,
367
+ "grad_norm": 0.04736328125,
368
+ "learning_rate": 0.001777637532133752,
369
+ "loss": 0.0926,
370
+ "step": 3900
371
+ },
372
+ {
373
+ "epoch": 0.06944323883265915,
374
+ "grad_norm": 0.048828125,
375
+ "learning_rate": 0.0017626851781103819,
376
+ "loss": 0.0906,
377
+ "step": 4000
378
+ },
379
+ {
380
+ "epoch": 0.06944323883265915,
381
+ "eval_covost2-en-de_loss": 1.7936017513275146,
382
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
383
+ "eval_covost2-en-de_runtime": 8.0356,
384
+ "eval_covost2-en-de_samples_per_second": 7.965,
385
+ "eval_covost2-en-de_steps_per_second": 0.996,
386
+ "step": 4000
387
+ },
388
+ {
389
+ "epoch": 0.06944323883265915,
390
+ "eval_covost2-zh-en_loss": 3.2699265480041504,
391
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
392
+ "eval_covost2-zh-en_runtime": 9.5779,
393
+ "eval_covost2-zh-en_samples_per_second": 6.682,
394
+ "eval_covost2-zh-en_steps_per_second": 0.835,
395
+ "step": 4000
396
+ },
397
+ {
398
+ "epoch": 0.06944323883265915,
399
+ "eval_peoplespeech-clean-transcription_loss": 2.3380110263824463,
400
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
401
+ "eval_peoplespeech-clean-transcription_runtime": 9.5943,
402
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.671,
403
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.834,
404
+ "step": 4000
405
+ },
406
+ {
407
+ "epoch": 0.07117931980347564,
408
+ "grad_norm": 0.041259765625,
409
+ "learning_rate": 0.001747313629600077,
410
+ "loss": 0.0926,
411
+ "step": 4100
412
+ },
413
+ {
414
+ "epoch": 0.07291540077429211,
415
+ "grad_norm": 0.05322265625,
416
+ "learning_rate": 0.001731531335263669,
417
+ "loss": 0.0907,
418
+ "step": 4200
419
+ },
420
+ {
421
+ "epoch": 0.07465148174510859,
422
+ "grad_norm": 0.05126953125,
423
+ "learning_rate": 0.0017153469695201276,
424
+ "loss": 0.0898,
425
+ "step": 4300
426
+ },
427
+ {
428
+ "epoch": 0.07638756271592508,
429
+ "grad_norm": 0.061767578125,
430
+ "learning_rate": 0.0016987694277788418,
431
+ "loss": 0.0876,
432
+ "step": 4400
433
+ },
434
+ {
435
+ "epoch": 0.07812364368674155,
436
+ "grad_norm": 0.042724609375,
437
+ "learning_rate": 0.001681807821550438,
438
+ "loss": 0.0874,
439
+ "step": 4500
440
+ },
441
+ {
442
+ "epoch": 0.07985972465755803,
443
+ "grad_norm": 0.05126953125,
444
+ "learning_rate": 0.0016644714734388218,
445
+ "loss": 0.0865,
446
+ "step": 4600
447
+ },
448
+ {
449
+ "epoch": 0.08159580562837451,
450
+ "grad_norm": 0.042724609375,
451
+ "learning_rate": 0.0016467699120171987,
452
+ "loss": 0.0866,
453
+ "step": 4700
454
+ },
455
+ {
456
+ "epoch": 0.08333188659919098,
457
+ "grad_norm": 0.0419921875,
458
+ "learning_rate": 0.001628712866590885,
459
+ "loss": 0.0864,
460
+ "step": 4800
461
+ },
462
+ {
463
+ "epoch": 0.08506796757000747,
464
+ "grad_norm": 0.051513671875,
465
+ "learning_rate": 0.0016103102618497923,
466
+ "loss": 0.0862,
467
+ "step": 4900
468
+ },
469
+ {
470
+ "epoch": 0.08680404854082395,
471
+ "grad_norm": 0.052734375,
472
+ "learning_rate": 0.0015915722124135226,
473
+ "loss": 0.0855,
474
+ "step": 5000
475
+ },
476
+ {
477
+ "epoch": 0.08680404854082395,
478
+ "eval_covost2-en-de_loss": 1.7862941026687622,
479
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
480
+ "eval_covost2-en-de_runtime": 8.2861,
481
+ "eval_covost2-en-de_samples_per_second": 7.724,
482
+ "eval_covost2-en-de_steps_per_second": 0.965,
483
+ "step": 5000
484
+ },
485
+ {
486
+ "epoch": 0.08680404854082395,
487
+ "eval_covost2-zh-en_loss": 3.33290433883667,
488
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
489
+ "eval_covost2-zh-en_runtime": 8.4063,
490
+ "eval_covost2-zh-en_samples_per_second": 7.613,
491
+ "eval_covost2-zh-en_steps_per_second": 0.952,
492
+ "step": 5000
493
+ },
494
+ {
495
+ "epoch": 0.08680404854082395,
496
+ "eval_peoplespeech-clean-transcription_loss": 2.2601113319396973,
497
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
498
+ "eval_peoplespeech-clean-transcription_runtime": 9.4946,
499
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.741,
500
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.843,
501
+ "step": 5000
502
+ },
503
+ {
504
+ "epoch": 0.08854012951164042,
505
+ "grad_norm": 0.053466796875,
506
+ "learning_rate": 0.001572509017272072,
507
+ "loss": 0.0872,
508
+ "step": 5100
509
+ },
510
+ {
511
+ "epoch": 0.0902762104824569,
512
+ "grad_norm": 0.044189453125,
513
+ "learning_rate": 0.0015531311541251993,
514
+ "loss": 0.0859,
515
+ "step": 5200
516
+ },
517
+ {
518
+ "epoch": 0.09201229145327339,
519
+ "grad_norm": 0.052978515625,
520
+ "learning_rate": 0.0015334492736235703,
521
+ "loss": 0.085,
522
+ "step": 5300
523
+ },
524
+ {
525
+ "epoch": 0.09374837242408986,
526
+ "grad_norm": 0.04833984375,
527
+ "learning_rate": 0.0015134741935148419,
528
+ "loss": 0.0844,
529
+ "step": 5400
530
+ },
531
+ {
532
+ "epoch": 0.09548445339490634,
533
+ "grad_norm": 0.047119140625,
534
+ "learning_rate": 0.0014932168926979072,
535
+ "loss": 0.0844,
536
+ "step": 5500
537
+ },
538
+ {
539
+ "epoch": 0.09722053436572281,
540
+ "grad_norm": 0.05029296875,
541
+ "learning_rate": 0.0014726885051885652,
542
+ "loss": 0.0856,
543
+ "step": 5600
544
+ },
545
+ {
546
+ "epoch": 0.0989566153365393,
547
+ "grad_norm": 0.049560546875,
548
+ "learning_rate": 0.0014519003139999338,
549
+ "loss": 0.0841,
550
+ "step": 5700
551
+ },
552
+ {
553
+ "epoch": 0.10069269630735578,
554
+ "grad_norm": 0.056884765625,
555
+ "learning_rate": 0.0014308637449409706,
556
+ "loss": 0.0841,
557
+ "step": 5800
558
+ },
559
+ {
560
+ "epoch": 0.10242877727817225,
561
+ "grad_norm": 0.041015625,
562
+ "learning_rate": 0.0014095903603365066,
563
+ "loss": 0.0825,
564
+ "step": 5900
565
+ },
566
+ {
567
+ "epoch": 0.10416485824898873,
568
+ "grad_norm": 0.048583984375,
569
+ "learning_rate": 0.0013880918526722496,
570
+ "loss": 0.0828,
571
+ "step": 6000
572
+ },
573
+ {
574
+ "epoch": 0.10416485824898873,
575
+ "eval_covost2-en-de_loss": 1.8097732067108154,
576
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
577
+ "eval_covost2-en-de_runtime": 8.2052,
578
+ "eval_covost2-en-de_samples_per_second": 7.8,
579
+ "eval_covost2-en-de_steps_per_second": 0.975,
580
+ "step": 6000
581
+ },
582
+ {
583
+ "epoch": 0.10416485824898873,
584
+ "eval_covost2-zh-en_loss": 3.331326961517334,
585
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
586
+ "eval_covost2-zh-en_runtime": 8.2653,
587
+ "eval_covost2-zh-en_samples_per_second": 7.743,
588
+ "eval_covost2-zh-en_steps_per_second": 0.968,
589
+ "step": 6000
590
+ },
591
+ {
592
+ "epoch": 0.10416485824898873,
593
+ "eval_peoplespeech-clean-transcription_loss": 2.250232219696045,
594
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
595
+ "eval_peoplespeech-clean-transcription_runtime": 9.4708,
596
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.758,
597
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.845,
598
+ "step": 6000
599
+ },
600
+ {
601
+ "epoch": 0.10590093921980522,
602
+ "grad_norm": 0.04443359375,
603
+ "learning_rate": 0.0013663800381682463,
604
+ "loss": 0.0819,
605
+ "step": 6100
606
+ },
607
+ {
608
+ "epoch": 0.10763702019062169,
609
+ "grad_norm": 0.05419921875,
610
+ "learning_rate": 0.0013444668502843329,
611
+ "loss": 0.08,
612
+ "step": 6200
613
+ },
614
+ {
615
+ "epoch": 0.10937310116143817,
616
+ "grad_norm": 0.0478515625,
617
+ "learning_rate": 0.0013223643331611537,
618
+ "loss": 0.0805,
619
+ "step": 6300
620
+ },
621
+ {
622
+ "epoch": 0.11110918213225465,
623
+ "grad_norm": 0.051513671875,
624
+ "learning_rate": 0.001300084635000341,
625
+ "loss": 0.0799,
626
+ "step": 6400
627
+ },
628
+ {
629
+ "epoch": 0.11284526310307112,
630
+ "grad_norm": 0.0498046875,
631
+ "learning_rate": 0.0012776400013875004,
632
+ "loss": 0.0807,
633
+ "step": 6500
634
+ },
635
+ {
636
+ "epoch": 0.1145813440738876,
637
+ "grad_norm": 0.050537109375,
638
+ "learning_rate": 0.0012550427685616766,
639
+ "loss": 0.0799,
640
+ "step": 6600
641
+ },
642
+ {
643
+ "epoch": 0.11631742504470409,
644
+ "grad_norm": 0.05029296875,
645
+ "learning_rate": 0.0012323053566349834,
646
+ "loss": 0.0802,
647
+ "step": 6700
648
+ },
649
+ {
650
+ "epoch": 0.11805350601552056,
651
+ "grad_norm": 0.047119140625,
652
+ "learning_rate": 0.0012094402627661448,
653
+ "loss": 0.0796,
654
+ "step": 6800
655
+ },
656
+ {
657
+ "epoch": 0.11978958698633704,
658
+ "grad_norm": 0.044677734375,
659
+ "learning_rate": 0.0011864600542916813,
660
+ "loss": 0.0784,
661
+ "step": 6900
662
+ },
663
+ {
664
+ "epoch": 0.12152566795715353,
665
+ "grad_norm": 0.0478515625,
666
+ "learning_rate": 0.0011633773618185302,
667
+ "loss": 0.0808,
668
+ "step": 7000
669
+ },
670
+ {
671
+ "epoch": 0.12152566795715353,
672
+ "eval_covost2-en-de_loss": 1.7786378860473633,
673
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
674
+ "eval_covost2-en-de_runtime": 8.0291,
675
+ "eval_covost2-en-de_samples_per_second": 7.971,
676
+ "eval_covost2-en-de_steps_per_second": 0.996,
677
+ "step": 7000
678
+ },
679
+ {
680
+ "epoch": 0.12152566795715353,
681
+ "eval_covost2-zh-en_loss": 3.273571252822876,
682
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
683
+ "eval_covost2-zh-en_runtime": 8.3234,
684
+ "eval_covost2-zh-en_samples_per_second": 7.689,
685
+ "eval_covost2-zh-en_steps_per_second": 0.961,
686
+ "step": 7000
687
+ },
688
+ {
689
+ "epoch": 0.12152566795715353,
690
+ "eval_peoplespeech-clean-transcription_loss": 2.2290830612182617,
691
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
692
+ "eval_peoplespeech-clean-transcription_runtime": 9.7693,
693
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.551,
694
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.819,
695
+ "step": 7000
696
+ },
697
+ {
698
+ "epoch": 0.12326174892797,
699
+ "grad_norm": 0.0478515625,
700
+ "learning_rate": 0.0011402048722818862,
701
+ "loss": 0.0786,
702
+ "step": 7100
703
+ },
704
+ {
705
+ "epoch": 0.12499782989878648,
706
+ "grad_norm": 0.049560546875,
707
+ "learning_rate": 0.0011169553219720827,
708
+ "loss": 0.0795,
709
+ "step": 7200
710
+ },
711
+ {
712
+ "epoch": 0.12673391086960295,
713
+ "grad_norm": 0.04736328125,
714
+ "learning_rate": 0.001093641489534351,
715
+ "loss": 0.0787,
716
+ "step": 7300
717
+ },
718
+ {
719
+ "epoch": 0.12846999184041943,
720
+ "grad_norm": 0.054931640625,
721
+ "learning_rate": 0.001070276188945293,
722
+ "loss": 0.0784,
723
+ "step": 7400
724
+ },
725
+ {
726
+ "epoch": 0.13020607281123592,
727
+ "grad_norm": 0.0478515625,
728
+ "learning_rate": 0.00104687226246994,
729
+ "loss": 0.0787,
730
+ "step": 7500
731
+ },
732
+ {
733
+ "epoch": 0.1319421537820524,
734
+ "grad_norm": 0.048828125,
735
+ "learning_rate": 0.0010234425736032607,
736
+ "loss": 0.0788,
737
+ "step": 7600
738
+ },
739
+ {
740
+ "epoch": 0.13367823475286889,
741
+ "grad_norm": 0.058837890625,
742
+ "learning_rate": 0.001,
743
+ "loss": 0.0769,
744
+ "step": 7700
745
+ },
746
+ {
747
+ "epoch": 0.13541431572368534,
748
+ "grad_norm": 0.055908203125,
749
+ "learning_rate": 0.0009765574263967396,
750
+ "loss": 0.077,
751
+ "step": 7800
752
+ },
753
+ {
754
+ "epoch": 0.13715039669450182,
755
+ "grad_norm": 0.05322265625,
756
+ "learning_rate": 0.0009531277375300599,
757
+ "loss": 0.0764,
758
+ "step": 7900
759
+ },
760
+ {
761
+ "epoch": 0.1388864776653183,
762
+ "grad_norm": 0.04833984375,
763
+ "learning_rate": 0.0009297238110547074,
764
+ "loss": 0.0764,
765
+ "step": 8000
766
+ },
767
+ {
768
+ "epoch": 0.1388864776653183,
769
+ "eval_covost2-en-de_loss": 1.7951624393463135,
770
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
771
+ "eval_covost2-en-de_runtime": 8.1477,
772
+ "eval_covost2-en-de_samples_per_second": 7.855,
773
+ "eval_covost2-en-de_steps_per_second": 0.982,
774
+ "step": 8000
775
+ },
776
+ {
777
+ "epoch": 0.1388864776653183,
778
+ "eval_covost2-zh-en_loss": 3.301699161529541,
779
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
780
+ "eval_covost2-zh-en_runtime": 8.8691,
781
+ "eval_covost2-zh-en_samples_per_second": 7.216,
782
+ "eval_covost2-zh-en_steps_per_second": 0.902,
783
+ "step": 8000
784
+ },
785
+ {
786
+ "epoch": 0.1388864776653183,
787
+ "eval_peoplespeech-clean-transcription_loss": 2.1518499851226807,
788
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
789
+ "eval_peoplespeech-clean-transcription_runtime": 9.5239,
790
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.72,
791
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.84,
792
+ "step": 8000
793
+ },
794
+ {
795
+ "epoch": 0.1406225586361348,
796
+ "grad_norm": 0.053955078125,
797
+ "learning_rate": 0.0009063585104656494,
798
+ "loss": 0.0762,
799
+ "step": 8100
800
+ },
801
+ {
802
+ "epoch": 0.14235863960695128,
803
+ "grad_norm": 0.0654296875,
804
+ "learning_rate": 0.0008830446780279176,
805
+ "loss": 0.0769,
806
+ "step": 8200
807
+ },
808
+ {
809
+ "epoch": 0.14409472057776776,
810
+ "grad_norm": 0.046875,
811
+ "learning_rate": 0.0008597951277181142,
812
+ "loss": 0.0751,
813
+ "step": 8300
814
+ },
815
+ {
816
+ "epoch": 0.14583080154858422,
817
+ "grad_norm": 0.054443359375,
818
+ "learning_rate": 0.0008366226381814697,
819
+ "loss": 0.0765,
820
+ "step": 8400
821
+ },
822
+ {
823
+ "epoch": 0.1475668825194007,
824
+ "grad_norm": 0.052490234375,
825
+ "learning_rate": 0.000813539945708319,
826
+ "loss": 0.0763,
827
+ "step": 8500
828
+ },
829
+ {
830
+ "epoch": 0.14930296349021718,
831
+ "grad_norm": 0.068359375,
832
+ "learning_rate": 0.0007905597372338558,
833
+ "loss": 0.0744,
834
+ "step": 8600
835
+ },
836
+ {
837
+ "epoch": 0.15103904446103367,
838
+ "grad_norm": 0.055908203125,
839
+ "learning_rate": 0.0007676946433650169,
840
+ "loss": 0.0737,
841
+ "step": 8700
842
+ },
843
+ {
844
+ "epoch": 0.15277512543185015,
845
+ "grad_norm": 0.055908203125,
846
+ "learning_rate": 0.0007449572314383236,
847
+ "loss": 0.0758,
848
+ "step": 8800
849
+ },
850
+ {
851
+ "epoch": 0.1545112064026666,
852
+ "grad_norm": 0.051513671875,
853
+ "learning_rate": 0.0007223599986124993,
854
+ "loss": 0.0753,
855
+ "step": 8900
856
+ },
857
+ {
858
+ "epoch": 0.1562472873734831,
859
+ "grad_norm": 0.05517578125,
860
+ "learning_rate": 0.0006999153649996595,
861
+ "loss": 0.0736,
862
+ "step": 9000
863
+ },
864
+ {
865
+ "epoch": 0.1562472873734831,
866
+ "eval_covost2-en-de_loss": 1.7736568450927734,
867
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
868
+ "eval_covost2-en-de_runtime": 8.2798,
869
+ "eval_covost2-en-de_samples_per_second": 7.73,
870
+ "eval_covost2-en-de_steps_per_second": 0.966,
871
+ "step": 9000
872
+ },
873
+ {
874
+ "epoch": 0.1562472873734831,
875
+ "eval_covost2-zh-en_loss": 3.2736916542053223,
876
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
877
+ "eval_covost2-zh-en_runtime": 8.6328,
878
+ "eval_covost2-zh-en_samples_per_second": 7.414,
879
+ "eval_covost2-zh-en_steps_per_second": 0.927,
880
+ "step": 9000
881
+ },
882
+ {
883
+ "epoch": 0.1562472873734831,
884
+ "eval_peoplespeech-clean-transcription_loss": 2.169971227645874,
885
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
886
+ "eval_peoplespeech-clean-transcription_runtime": 10.7684,
887
+ "eval_peoplespeech-clean-transcription_samples_per_second": 5.943,
888
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.743,
889
+ "step": 9000
890
+ },
891
+ {
892
+ "epoch": 0.15798336834429957,
893
+ "grad_norm": 0.06201171875,
894
+ "learning_rate": 0.0006776356668388464,
895
+ "loss": 0.073,
896
+ "step": 9100
897
+ },
898
+ {
899
+ "epoch": 0.15971944931511606,
900
+ "grad_norm": 0.0654296875,
901
+ "learning_rate": 0.0006555331497156671,
902
+ "loss": 0.0753,
903
+ "step": 9200
904
+ },
905
+ {
906
+ "epoch": 0.16145553028593254,
907
+ "grad_norm": 0.056640625,
908
+ "learning_rate": 0.0006336199618317538,
909
+ "loss": 0.0754,
910
+ "step": 9300
911
+ },
912
+ {
913
+ "epoch": 0.16319161125674903,
914
+ "grad_norm": 0.06005859375,
915
+ "learning_rate": 0.0006119081473277501,
916
+ "loss": 0.0736,
917
+ "step": 9400
918
+ },
919
+ {
920
+ "epoch": 0.16492769222756548,
921
+ "grad_norm": 0.059326171875,
922
+ "learning_rate": 0.0005904096396634935,
923
+ "loss": 0.0721,
924
+ "step": 9500
925
+ },
926
+ {
927
+ "epoch": 0.16666377319838196,
928
+ "grad_norm": 0.06201171875,
929
+ "learning_rate": 0.0005691362550590297,
930
+ "loss": 0.0717,
931
+ "step": 9600
932
+ },
933
+ {
934
+ "epoch": 0.16839985416919845,
935
+ "grad_norm": 0.051025390625,
936
+ "learning_rate": 0.0005480996860000663,
937
+ "loss": 0.0738,
938
+ "step": 9700
939
+ },
940
+ {
941
+ "epoch": 0.17013593514001493,
942
+ "grad_norm": 0.06494140625,
943
+ "learning_rate": 0.0005273114948114346,
944
+ "loss": 0.0737,
945
+ "step": 9800
946
+ },
947
+ {
948
+ "epoch": 0.17187201611083142,
949
+ "grad_norm": 0.058837890625,
950
+ "learning_rate": 0.0005067831073020928,
951
+ "loss": 0.0711,
952
+ "step": 9900
953
+ },
954
+ {
955
+ "epoch": 0.1736080970816479,
956
+ "grad_norm": 0.050537109375,
957
+ "learning_rate": 0.00048652580648515787,
958
+ "loss": 0.0722,
959
+ "step": 10000
960
+ },
961
+ {
962
+ "epoch": 0.1736080970816479,
963
+ "eval_covost2-en-de_loss": 1.768043875694275,
964
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
965
+ "eval_covost2-en-de_runtime": 8.2025,
966
+ "eval_covost2-en-de_samples_per_second": 7.802,
967
+ "eval_covost2-en-de_steps_per_second": 0.975,
968
+ "step": 10000
969
+ },
970
+ {
971
+ "epoch": 0.1736080970816479,
972
+ "eval_covost2-zh-en_loss": 3.288457155227661,
973
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
974
+ "eval_covost2-zh-en_runtime": 8.5315,
975
+ "eval_covost2-zh-en_samples_per_second": 7.502,
976
+ "eval_covost2-zh-en_steps_per_second": 0.938,
977
+ "step": 10000
978
+ },
979
+ {
980
+ "epoch": 0.1736080970816479,
981
+ "eval_peoplespeech-clean-transcription_loss": 2.099651336669922,
982
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
983
+ "eval_peoplespeech-clean-transcription_runtime": 9.7081,
984
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.592,
985
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.824,
986
+ "step": 10000
987
+ },
988
+ {
989
+ "epoch": 0.17534417805246436,
990
+ "grad_norm": 0.059326171875,
991
+ "learning_rate": 0.0004665507263764299,
992
+ "loss": 0.0717,
993
+ "step": 10100
994
+ },
995
+ {
996
+ "epoch": 0.17708025902328084,
997
+ "grad_norm": 0.06103515625,
998
+ "learning_rate": 0.0004468688458748006,
999
+ "loss": 0.0729,
1000
+ "step": 10200
1001
+ },
1002
+ {
1003
+ "epoch": 0.17881633999409732,
1004
+ "grad_norm": 0.051513671875,
1005
+ "learning_rate": 0.0004274909827279283,
1006
+ "loss": 0.0711,
1007
+ "step": 10300
1008
+ },
1009
+ {
1010
+ "epoch": 0.1805524209649138,
1011
+ "grad_norm": 0.059326171875,
1012
+ "learning_rate": 0.0004084277875864776,
1013
+ "loss": 0.0712,
1014
+ "step": 10400
1015
+ },
1016
+ {
1017
+ "epoch": 0.1822885019357303,
1018
+ "grad_norm": 0.062255859375,
1019
+ "learning_rate": 0.00038968973815020803,
1020
+ "loss": 0.0708,
1021
+ "step": 10500
1022
+ },
1023
+ {
1024
+ "epoch": 0.18402458290654677,
1025
+ "grad_norm": 0.06640625,
1026
+ "learning_rate": 0.00037128713340911534,
1027
+ "loss": 0.0716,
1028
+ "step": 10600
1029
+ },
1030
+ {
1031
+ "epoch": 0.18576066387736323,
1032
+ "grad_norm": 0.0517578125,
1033
+ "learning_rate": 0.00035323008798280133,
1034
+ "loss": 0.0728,
1035
+ "step": 10700
1036
+ },
1037
+ {
1038
+ "epoch": 0.1874967448481797,
1039
+ "grad_norm": 0.076171875,
1040
+ "learning_rate": 0.00033552852656117837,
1041
+ "loss": 0.0711,
1042
+ "step": 10800
1043
+ }
1044
+ ],
1045
+ "logging_steps": 100,
1046
+ "max_steps": 14400,
1047
+ "num_input_tokens_seen": 0,
1048
+ "num_train_epochs": 1,
1049
+ "save_steps": 3600,
1050
+ "stateful_callbacks": {
1051
+ "TrainerControl": {
1052
+ "args": {
1053
+ "should_epoch_stop": false,
1054
+ "should_evaluate": false,
1055
+ "should_log": false,
1056
+ "should_save": true,
1057
+ "should_training_stop": false
1058
+ },
1059
+ "attributes": {}
1060
+ }
1061
+ },
1062
+ "total_flos": 4.964486494302536e+17,
1063
+ "train_batch_size": 24,
1064
+ "trial_name": null,
1065
+ "trial_params": null
1066
+ }
checkpoint-10800/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c1fd9b1621955a41f9e58d5a3e2b2d6a70bd41f5404ebfa5cb0ca999c290090
3
+ size 5688
checkpoint-10800/ultravox_config.py ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dataclasses
2
+ from enum import Enum
3
+ from typing import Any, Dict, List, Optional
4
+
5
+ import transformers
6
+
7
+
8
+ @dataclasses.dataclass
9
+ class LoraConfigSimplified:
10
+ """
11
+ Low Rank Approximation (LoRA) configuration.
12
+
13
+ Used for language and audio models separately.
14
+ """
15
+
16
+ # The rank of the approximation
17
+ r: int = 0
18
+ lora_alpha: float = 8
19
+ target_modules: Optional[List[str]] = dataclasses.field(
20
+ default_factory=lambda: ["k_proj", "q_proj", "linear_k", "linear_q"]
21
+ )
22
+
23
+
24
+ class LossFunction(str, Enum):
25
+ CrossEntropy = "ce"
26
+ KL_Divergence = "kl"
27
+
28
+
29
+ @dataclasses.dataclass
30
+ class LossConfig:
31
+ loss_function: LossFunction = LossFunction.KL_Divergence
32
+ kl_temperature: float = 2.0
33
+
34
+ @property
35
+ def requires_alt_fields(self):
36
+ return self.loss_function == LossFunction.KL_Divergence
37
+
38
+
39
+ class UltravoxConfig(transformers.PretrainedConfig):
40
+ r"""
41
+ This is the configuration class to store the configuration of a [`UltravoxForConditionalGeneration`]. It is used to instantiate an
42
+ Ultravox model according to the specified arguments, defining the model architecture.
43
+
44
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
45
+ documentation from [`PretrainedConfig`] for more information.
46
+
47
+ Args:
48
+ audio_config (`Wav2Vec2Config`, *optional*):
49
+ Custom audio config or dict
50
+ text_config (`Union[AutoConfig, dict]`, *optional*):
51
+ The config object of the text backbone. Can be any of `LlamaConfig` or `MistralConfig`.
52
+ ignore_index (`int`, *optional*, defaults to -100):
53
+ The ignore index for the loss function.
54
+ audio_token_index (`int`, *optional*, defaults to 32000):
55
+ The audio token index to encode the audio prompt.
56
+ stack_factor (`int`, *optional*, defaults to 8):
57
+ Audio downsampling factor for the multimodal projector.
58
+ norm_init (`float`, *optional*, defaults to 0.4):
59
+ The initialization value for the layer normalization.
60
+ projector_act (`str`, *optional*, defaults to `"swiglu"`):
61
+ The activation function used by the multimodal projector.
62
+ text_model_lora_config (`LoraConfigSimplified`, *optional*):
63
+ The LoRA configuration for finetuning the text model.
64
+ audio_model_lora_config (`LoraConfigSimplified`, *optional*):
65
+ The LoRA configuration for finetuning the audio model.
66
+ audio_latency_block_size (`int`, *optional*, defaults to `None`):
67
+ The latency block size for simulating audio streaming.
68
+
69
+
70
+ Example:
71
+
72
+ ```python
73
+ >>> from transformers import UltravoxForConditionalGeneration, Wav2Vec2Config, UltravoxConfig, LlamaConfig
74
+
75
+ >>> # Initializing an audio encoder config
76
+ >>> audio_config = Wav2Vec2Config()
77
+
78
+ >>> # Initializing a Llama config
79
+ >>> text_config = LlamaConfig()
80
+
81
+ >>> # Initializing a default configuration
82
+ >>> configuration = UltravoxConfig(audio_config, text_config)
83
+
84
+ >>> # Initializing a completely untrained model from the configuration
85
+ >>> model = UltravoxForConditionalGeneration(configuration)
86
+
87
+ >>> # Accessing the model configuration
88
+ >>> configuration = model.config
89
+
90
+ >>> # Initialize a model from pretrained checkpoints and random projector weights
91
+ >>> config = UltravoxConfig(audio_model_id="facebook/wav2vec2-base-960h", text_model_id="meta-llama/Llama-2-7b-chat-hf")
92
+ ```"""
93
+
94
+ model_type = "ultravox"
95
+ is_composition = False
96
+
97
+ def __init__(
98
+ self,
99
+ audio_config: Optional[Dict[str, Any]] = None,
100
+ text_config: Optional[Dict[str, Any]] = None,
101
+ audio_model_id: Optional[str] = None,
102
+ text_model_id: Optional[str] = None,
103
+ ignore_index: int = -100,
104
+ hidden_size: int = 4096,
105
+ stack_factor: int = 8,
106
+ norm_init: float = 0.4,
107
+ projector_act: str = "swiglu",
108
+ text_model_lora_config: Optional[LoraConfigSimplified] = None,
109
+ audio_model_lora_config: Optional[LoraConfigSimplified] = None,
110
+ audio_latency_block_size: Optional[int] = None,
111
+ **kwargs,
112
+ ):
113
+ self.ignore_index = ignore_index
114
+
115
+ self.audio_model_id = audio_model_id
116
+ self.text_model_id = text_model_id
117
+
118
+ self.hidden_size = hidden_size
119
+ self.stack_factor = stack_factor
120
+ self.norm_init = norm_init
121
+ self.projector_act = projector_act
122
+
123
+ if text_model_id is not None:
124
+ self.text_config: transformers.LlamaConfig = (
125
+ transformers.AutoConfig.from_pretrained(text_model_id)
126
+ )
127
+ else:
128
+ text_config = text_config or {}
129
+ self.text_config = transformers.CONFIG_MAPPING[
130
+ text_config.get("model_type", "llama")
131
+ ](**text_config)
132
+
133
+ if audio_model_id is not None:
134
+ self.audio_config: transformers.PretrainedConfig = (
135
+ transformers.AutoConfig.from_pretrained(audio_model_id)
136
+ )
137
+ else:
138
+ audio_config = audio_config or {}
139
+ self.audio_config = transformers.CONFIG_MAPPING[
140
+ audio_config.get("model_type", "wav2vec2")
141
+ ](**audio_config)
142
+
143
+ self.text_model_lora_config = (
144
+ text_model_lora_config
145
+ if isinstance(text_model_lora_config, dict)
146
+ else dataclasses.asdict(text_model_lora_config or LoraConfigSimplified())
147
+ )
148
+ self.audio_model_lora_config = (
149
+ audio_model_lora_config
150
+ if isinstance(audio_model_lora_config, dict)
151
+ else dataclasses.asdict(audio_model_lora_config or LoraConfigSimplified())
152
+ )
153
+ self.audio_latency_block_size = audio_latency_block_size
154
+
155
+ self.vocab_size = self.text_config.vocab_size
156
+
157
+ self.initializer_range = self.text_config.initializer_range
158
+
159
+ super().__init__(**kwargs)
160
+
161
+ def to_diff_dict(self) -> Dict[str, Any]:
162
+ diff_dict = super().to_diff_dict()
163
+
164
+ # remove text_config and audio_config if text_model_id and audio_model_id are present
165
+ if self.text_model_id is not None:
166
+ diff_dict.pop("text_config", None)
167
+ if self.audio_model_id is not None:
168
+ diff_dict.pop("audio_config", None)
169
+
170
+ return diff_dict
checkpoint-10800/ultravox_model.py ADDED
@@ -0,0 +1,723 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ from typing import Any, Dict, Optional, Set, Tuple, Union
3
+
4
+ import peft
5
+ import torch
6
+ import torch.nn as nn
7
+ import torch.nn.functional as F
8
+ import transformers
9
+ import transformers.activations
10
+ import transformers.modeling_outputs
11
+ import transformers.models
12
+ from transformers.models.whisper import modeling_whisper as whisper
13
+
14
+ # We must use relative import in this directory to allow uploading to HF Hub
15
+ # Even "from . import X" pattern doesn't work (undocumented and unclear why)
16
+ from .ultravox_config import LossConfig
17
+ from .ultravox_config import LossFunction
18
+ from .ultravox_config import UltravoxConfig
19
+
20
+
21
+ class UltravoxModel(transformers.LlamaPreTrainedModel):
22
+ """
23
+ The Ultravox model which consists of an audio encoder and a language model.
24
+
25
+ Audio input is processed by the audio encoder, then every `stack_factor` frames are stacked together and
26
+ projected to the language model's embedding space using a few linear layers.
27
+ The text is embedded by the language model as usual and then the audio and text embeddings are merged together.
28
+
29
+ A special token `<|audio|>` is used to indicate the start of the audio embeddings in the merged embeddings.
30
+
31
+ Parameters:
32
+ config: Model configuration class with all the parameters of the model.
33
+ """
34
+
35
+ config_class = UltravoxConfig
36
+ config: UltravoxConfig # for type hinting
37
+ # Usually we load encoder and LLM weights from a pretrained model separately, so they are allowed to be missing
38
+ _keys_to_ignore_on_load_missing = ["audio_tower.*", "language_model.*"]
39
+
40
+ def __init__(self, config: UltravoxConfig):
41
+ super().__init__(config)
42
+ self._register_load_state_dict_pre_hook(self._pre_load_state_dict_hook)
43
+
44
+ self.keep_params: Set[str] = set()
45
+ self.vocab_size = config.vocab_size
46
+
47
+ self.audio_tower = self._create_audio_tower(config)
48
+ self.multi_modal_projector = self._create_multi_modal_projector(config)
49
+ self.language_model = self._create_language_model(config)
50
+
51
+ # Determine no_split_modules dynamically to use with FSDP auto_wrap policy.
52
+ # FSDP throws an error if some of the layer types are not found in the model.
53
+ # This would be something like ["LlamaDecoderLayer", "WhisperEncoderLayer"]
54
+ self._no_split_modules = (self.language_model._no_split_modules or []) + (
55
+ self.audio_tower._no_split_modules or []
56
+ )
57
+
58
+ self.loss_config = LossConfig()
59
+ self.post_init()
60
+
61
+ def get_input_embeddings(self):
62
+ return self.language_model.get_input_embeddings()
63
+
64
+ def set_input_embeddings(self, value):
65
+ self.language_model.set_input_embeddings(value)
66
+
67
+ def get_output_embeddings(self):
68
+ return self.language_model.get_output_embeddings()
69
+
70
+ def set_output_embeddings(self, new_embeddings):
71
+ self.language_model.set_output_embeddings(new_embeddings)
72
+
73
+ def set_decoder(self, decoder):
74
+ self.language_model.set_decoder(decoder)
75
+
76
+ def get_decoder(self):
77
+ return self.language_model.get_decoder()
78
+
79
+ def tie_weights(self):
80
+ return self.language_model.tie_weights()
81
+
82
+ def set_loss_config(self, loss_config: LossConfig):
83
+ self.loss_config = loss_config
84
+
85
+ def _setup_cache(
86
+ self, cache_cls, max_batch_size: int, max_cache_len: Optional[int] = None
87
+ ):
88
+ self.language_model._setup_cache(cache_cls, max_batch_size, max_cache_len)
89
+
90
+ def _reorder_cache(self, past_key_values, beam_idx):
91
+ return self.language_model._reorder_cache(past_key_values, beam_idx)
92
+
93
+ def resize_token_embeddings(
94
+ self,
95
+ new_num_tokens: Optional[int] = None,
96
+ pad_to_multiple_of: Optional[int] = None,
97
+ ) -> nn.Embedding:
98
+ model_embeds = self.language_model.resize_token_embeddings(
99
+ new_num_tokens, pad_to_multiple_of
100
+ )
101
+ # update vocab size
102
+ self.config.text_config.vocab_size = model_embeds.num_embeddings
103
+ self.config.vocab_size = model_embeds.num_embeddings
104
+ self.vocab_size = model_embeds.num_embeddings
105
+ return model_embeds
106
+
107
+ def _compute_kl_loss(
108
+ self,
109
+ lm_output: transformers.modeling_outputs.CausalLMOutputWithPast,
110
+ labels: Optional[torch.Tensor] = None,
111
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
112
+ alt_input_ids: Optional[torch.Tensor] = None,
113
+ alt_attention_mask: Optional[torch.Tensor] = None,
114
+ alt_labels: Optional[torch.Tensor] = None,
115
+ **kwargs,
116
+ ):
117
+ # disable gradient computation for the teacher model
118
+ with torch.no_grad():
119
+ # compute the teacher (text-only) model's distribution
120
+ alt_inputs_embeds = self.get_input_embeddings().forward(alt_input_ids)
121
+ alt_lm_output = self.language_model.forward(
122
+ inputs_embeds=alt_inputs_embeds,
123
+ labels=alt_labels,
124
+ attention_mask=alt_attention_mask,
125
+ past_key_values=past_key_values,
126
+ **kwargs,
127
+ )
128
+ # compute the KL divergence loss between the two models
129
+ kl_loss = F.kl_div(
130
+ F.log_softmax(
131
+ lm_output.logits[labels != -100] / self.loss_config.kl_temperature,
132
+ dim=-1,
133
+ ),
134
+ F.softmax(
135
+ alt_lm_output.logits[alt_labels != -100]
136
+ / self.loss_config.kl_temperature,
137
+ dim=-1,
138
+ ),
139
+ reduction="batchmean",
140
+ )
141
+ return {"loss": kl_loss}
142
+
143
+ def forward(
144
+ self,
145
+ input_ids: torch.Tensor,
146
+ audio_values: Optional[torch.FloatTensor] = None,
147
+ inputs_embeds: Optional[torch.FloatTensor] = None,
148
+ labels: Optional[torch.Tensor] = None,
149
+ attention_mask: Optional[torch.Tensor] = None,
150
+ audio_token_start_idx: Optional[torch.Tensor] = None,
151
+ audio_len: Optional[torch.Tensor] = None,
152
+ audio_token_len: Optional[torch.Tensor] = None,
153
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
154
+ # the alt_* fields are needed for KL divergence loss
155
+ alt_input_ids: Optional[torch.Tensor] = None,
156
+ alt_attention_mask: Optional[torch.Tensor] = None,
157
+ alt_labels: Optional[torch.Tensor] = None,
158
+ **kwargs,
159
+ ) -> Union[Tuple, transformers.modeling_outputs.CausalLMOutputWithPast]:
160
+ """
161
+ Forward pass for the Ultravox model.
162
+
163
+ `input_ids` are the tokenized text input. They are embedded by the language model as usual.
164
+ `audio_values` are processed by the audio encoder and then every `stack_factor` frames are stacked together and
165
+ projected to the language model's embedding space using a few linear layers.
166
+ The audio and text embeddings are merged together. A special token `<|audio|>` is used to indicate the start
167
+ of the audio embeddings in the merged embeddings.
168
+
169
+ Args:
170
+ input_ids: The tokenized text input.
171
+ audio_values: The processed audio values.
172
+ inputs_embeds: The embeddings for the input tokens.
173
+ labels: The tokenized text labels.
174
+ attention_mask: The attention mask for the input.
175
+ position_ids: The position ids for the input.
176
+ past_key_values: The past key value cache for the language model attention layers.
177
+ **kwargs: Additional keyword arguments. Passed directly to the language model.
178
+ """
179
+ if inputs_embeds is None:
180
+ # B x T -> B x T x D
181
+ inputs_embeds = self.get_input_embeddings().forward(input_ids)
182
+
183
+ if audio_values is not None:
184
+ assert (
185
+ audio_token_start_idx is not None and audio_token_len is not None
186
+ ), "audio_token_start_idx and audio_token_len must be provided if audio_values are provided."
187
+ assert (
188
+ len(audio_token_start_idx) == len(audio_token_len) == len(audio_values)
189
+ ), "audio_token_start_idx, audio_token_len, and audio_values must have the same batch size."
190
+
191
+ # B x A/3200 x D
192
+ audio_tower_output = self.audio_tower.forward(
193
+ audio_values.to(self.audio_tower.dtype),
194
+ audio_len=audio_len,
195
+ ).last_hidden_state
196
+ audio_tower_output = audio_tower_output.to(inputs_embeds.dtype)
197
+
198
+ audio_embeds = self.multi_modal_projector.forward(audio_tower_output)
199
+
200
+ # combine audio and text embeddings
201
+ for i, (audio, start, length) in enumerate(
202
+ zip(audio_embeds, audio_token_start_idx, audio_token_len)
203
+ ):
204
+ length = min(length, audio.shape[0])
205
+ inputs_embeds[i, start : start + length] = audio[:length]
206
+
207
+ lm_output = self.language_model.forward(
208
+ inputs_embeds=inputs_embeds,
209
+ labels=labels,
210
+ attention_mask=attention_mask,
211
+ past_key_values=past_key_values,
212
+ **kwargs,
213
+ )
214
+ if self.training:
215
+ if self.loss_config.loss_function == LossFunction.CrossEntropy:
216
+ return lm_output
217
+ elif self.loss_config.loss_function == LossFunction.KL_Divergence:
218
+ return self._compute_kl_loss(
219
+ lm_output=lm_output,
220
+ labels=labels,
221
+ past_key_values=past_key_values,
222
+ alt_input_ids=alt_input_ids,
223
+ alt_attention_mask=alt_attention_mask,
224
+ alt_labels=alt_labels,
225
+ **kwargs,
226
+ )
227
+ else:
228
+ raise ValueError(
229
+ f"Unsupported loss function: {self.loss_config.loss_function}"
230
+ )
231
+ else:
232
+ return lm_output
233
+
234
+ def prepare_inputs_for_generation(
235
+ self,
236
+ input_ids: torch.Tensor,
237
+ audio_values: Optional[torch.FloatTensor] = None,
238
+ audio_token_start_idx: Optional[torch.Tensor] = None,
239
+ audio_token_len: Optional[torch.Tensor] = None,
240
+ audio_len: Optional[torch.Tensor] = None,
241
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
242
+ attention_mask: Optional[torch.Tensor] = None,
243
+ inputs_embeds: Optional[torch.Tensor] = None,
244
+ cache_position: Optional[torch.Tensor] = None,
245
+ **kwargs,
246
+ ) -> Dict[str, Any]:
247
+ model_input = self.language_model.prepare_inputs_for_generation(
248
+ input_ids=input_ids,
249
+ past_key_values=past_key_values,
250
+ attention_mask=attention_mask,
251
+ inputs_embeds=inputs_embeds,
252
+ cache_position=cache_position,
253
+ **kwargs,
254
+ )
255
+
256
+ # include audio information in model_input only when it is needed during prefilling
257
+ # audio_token_start_idx should always be relative to the current cache position
258
+ prefill_start_idx = 0 if cache_position is None else cache_position[0]
259
+ if (
260
+ audio_values is not None
261
+ and audio_token_start_idx is not None
262
+ and prefill_start_idx <= torch.max(audio_token_start_idx)
263
+ ):
264
+ model_input["audio_values"] = audio_values
265
+ model_input["audio_token_start_idx"] = (
266
+ audio_token_start_idx - prefill_start_idx
267
+ )
268
+ model_input["audio_token_len"] = audio_token_len
269
+ model_input["audio_len"] = audio_len
270
+
271
+ return model_input
272
+
273
+ @classmethod
274
+ def _create_multi_modal_projector(
275
+ cls, config: UltravoxConfig
276
+ ) -> "UltravoxProjector":
277
+ projector = UltravoxProjector(config)
278
+ projector.to(config.torch_dtype)
279
+ return projector
280
+
281
+ @classmethod
282
+ def _create_audio_tower(
283
+ cls, config: UltravoxConfig
284
+ ) -> Union[transformers.Wav2Vec2Model, "ModifiedWhisperEncoder"]:
285
+ if config.audio_model_id is not None:
286
+ if "whisper" in config.audio_model_id is not None:
287
+ audio_tower = ModifiedWhisperEncoder.from_pretrained(
288
+ config.audio_model_id, torch_dtype=config.torch_dtype
289
+ )
290
+ audio_tower.init_latency_mask(
291
+ config.audio_latency_block_size, dtype=config.torch_dtype
292
+ )
293
+ else:
294
+ assert config.audio_latency_block_size in (
295
+ None,
296
+ 0,
297
+ ), "only whisper audio tower supports audio latency masking, got non-zero value for 'audio_latency_block_size'"
298
+ audio_tower = transformers.AutoModel.from_pretrained(
299
+ config.audio_model_id, torch_dtype=config.torch_dtype
300
+ )
301
+ else:
302
+ if "whisper" in config.audio_config._name_or_path:
303
+ audio_tower = ModifiedWhisperEncoder(config.audio_config)
304
+ audio_tower.init_latency_mask(
305
+ config.audio_latency_block_size, dtype=config.torch_dtype
306
+ )
307
+ else:
308
+ assert config.audio_latency_block_size in (
309
+ None,
310
+ 0,
311
+ ), "only whisper audio tower supports audio latency masking, got non-zero value for 'audio_latency_block_size'"
312
+ with transformers.modeling_utils.no_init_weights():
313
+ # we only ever use from_config if the weights are retrained, hence initializing is not
314
+ # required. This makes the model quite creation faster since init on CPU is quite slow.
315
+ audio_tower = transformers.AutoModel.from_config(
316
+ config.audio_config
317
+ )
318
+
319
+ if isinstance(
320
+ audio_tower,
321
+ (transformers.Wav2Vec2BertModel, transformers.WhisperModel),
322
+ ):
323
+ # For these models we only need the encoder part
324
+ # Wav2Vec2BertModel -> Wav2Vec2BertEncoder
325
+ # WhisperModel -> WhisperEncoder
326
+ audio_tower = audio_tower.encoder
327
+
328
+ audio_tower = apply_lora(audio_tower, config.audio_model_lora_config)
329
+ return audio_tower
330
+
331
+ @classmethod
332
+ def _create_language_model(
333
+ cls, config: UltravoxConfig
334
+ ) -> transformers.LlamaForCausalLM:
335
+ if config.text_model_id is not None:
336
+ language_model = transformers.AutoModelForCausalLM.from_pretrained(
337
+ config.text_model_id,
338
+ attn_implementation=config._attn_implementation,
339
+ torch_dtype=config.torch_dtype,
340
+ )
341
+ else:
342
+ with transformers.modeling_utils.no_init_weights():
343
+ # we only ever use from_config if the weights are retrained, hence initializing is not
344
+ # required. This makes the model quite creation faster since init on CPU is quite slow.
345
+ language_model = transformers.AutoModelForCausalLM.from_config(
346
+ config.text_config,
347
+ attn_implementation=config._attn_implementation,
348
+ torch_dtype=config.torch_dtype,
349
+ )
350
+
351
+ language_model = apply_lora(language_model, config.text_model_lora_config)
352
+ return language_model
353
+
354
+ def merge_and_unload(self):
355
+ if isinstance(self.language_model, peft.PeftModel):
356
+ self.language_model = self.language_model.merge_and_unload()
357
+ # no need to download base language model weights anymore, so we can remove the id
358
+ self.config.text_model_id = None
359
+ self.keep_params.update(
360
+ set(
361
+ [
362
+ f"language_model.{name}"
363
+ for name, _ in self.language_model.named_parameters()
364
+ ]
365
+ )
366
+ )
367
+
368
+ if isinstance(self.audio_tower, peft.PeftModel):
369
+ self.audio_tower = self.audio_tower.merge_and_unload()
370
+ # no need to download base audio model weights anymore, so we can remove the id
371
+ self.config.audio_model_id = None
372
+ self.keep_params.update(
373
+ set(
374
+ [
375
+ f"audio_tower.{name}"
376
+ for name, _ in self.audio_tower.named_parameters()
377
+ ]
378
+ )
379
+ )
380
+
381
+ for param in ["text_model_lora_config", "audio_model_lora_config"]:
382
+ if hasattr(self.config, param):
383
+ delattr(self.config, param)
384
+
385
+ def push_to_hub(self, *args, **kwargs):
386
+ self.merge_and_unload()
387
+ self.to(self.language_model.dtype)
388
+ return super().push_to_hub(*args, **kwargs)
389
+
390
+ def save_pretrained(
391
+ self, *args, state_dict: Optional[Dict[str, Any]] = None, **kwargs
392
+ ):
393
+ if state_dict is None:
394
+ state_dict = super().state_dict()
395
+
396
+ named_params = dict(self.named_parameters())
397
+
398
+ state_dict = {
399
+ k: v
400
+ for k, v in state_dict.items()
401
+ if k in self.keep_params
402
+ or (k in named_params and named_params[k].requires_grad)
403
+ }
404
+
405
+ super().save_pretrained(*args, state_dict=state_dict, **kwargs)
406
+
407
+ def _pre_load_state_dict_hook(self, state_dict: Dict[str, Any], *args, **kwargs):
408
+ self.keep_params.update(set(state_dict.keys()))
409
+
410
+ def print_trainable_parameters(self):
411
+ """
412
+ Prints the number of trainable parameters in the model (reuses Peft model's method)
413
+ """
414
+ count_params = peft.peft_model.PeftModel.get_nb_trainable_parameters
415
+
416
+ trainable_params, all_param = count_params(self)
417
+
418
+ logging.info(
419
+ f"trainable params: {trainable_params:,d} || all params: {all_param:,d}"
420
+ f" || trainable%: {100 * trainable_params / all_param:.1f}%"
421
+ )
422
+
423
+ lm_trainable_params, lm_all_params = count_params(self.language_model)
424
+ audio_trainable_params, audio_all_params = count_params(self.audio_tower)
425
+
426
+ projector_trainable_params = (
427
+ trainable_params - lm_trainable_params - audio_trainable_params
428
+ )
429
+ projector_all_params = all_param - lm_all_params - audio_all_params
430
+
431
+ logging.info(
432
+ f"Trainable%: "
433
+ f" LLM: {100 * lm_trainable_params / lm_all_params:.1f}%"
434
+ f" || Audio Encoder: {100 * audio_trainable_params / audio_all_params:.1f}%"
435
+ f" || Projector: {100 * projector_trainable_params / projector_all_params:.1f}%"
436
+ )
437
+
438
+
439
+ def is_cache_empty(
440
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]]
441
+ ) -> bool:
442
+ """
443
+ Check if the cache is empty.
444
+ """
445
+ if past_key_values is None:
446
+ return True
447
+ if isinstance(past_key_values, tuple):
448
+ return all(len(c) == 0 for c in past_key_values)
449
+ return past_key_values.get_seq_length() == 0
450
+
451
+
452
+ def apply_lora(model: torch.nn.Module, lora_config: dict) -> torch.nn.Module:
453
+ """
454
+ Applies LoRA finetuning to the model. If the `r` parameter is set to 0, the model is frozen instead.
455
+ """
456
+ lora_config = peft.LoraConfig(**lora_config or {})
457
+
458
+ if lora_config.r == 0:
459
+ # freeze the model entirely
460
+ for param in model.parameters():
461
+ param.requires_grad = False
462
+ else:
463
+ model = peft.get_peft_model(model, lora_config)
464
+
465
+ return model
466
+
467
+
468
+ class StackAudioFrames(nn.Module):
469
+ """
470
+ Stack the audio embedding frames to reduce the sequence length by a factor of `stack_factor`.
471
+
472
+ The number of output frames will be `ceil(T / stack_factor) + 1` where `T` is the number of input frames.
473
+ NOTE: the extra +1 is intentional: in case the number of audio tokens are over-estimated by the processor,
474
+ we want to make sure `processor.audio_token_replacement` (i.e. EOS) doesn't get leaked into the middle of embeddings.
475
+ In most cases this extra padding will get removed in the model's forward function so it has no effect.
476
+ """
477
+
478
+ def __init__(self, stack_factor: int = 8):
479
+ super().__init__()
480
+ self.stack_factor = stack_factor
481
+
482
+ def forward(self, audio_embeds: torch.Tensor) -> torch.Tensor:
483
+ B, T, C = audio_embeds.shape
484
+ T_pad = (T + self.stack_factor - 1) // self.stack_factor * self.stack_factor
485
+ audio_embeds = F.pad(audio_embeds, (0, 0, 0, T_pad - T + self.stack_factor))
486
+ B, T, C = audio_embeds.shape
487
+ audio_embeds = audio_embeds.view(
488
+ B, T // self.stack_factor, C * self.stack_factor
489
+ )
490
+ return audio_embeds
491
+
492
+
493
+ class RMSNorm(transformers.models.llama.modeling_llama.LlamaRMSNorm):
494
+ def __init__(self, hidden_size: int, init: float = 1, eps: float = 1e-6):
495
+ super().__init__(hidden_size=hidden_size, eps=eps)
496
+ self.weight.data.fill_(init)
497
+
498
+
499
+ class SwiGLU(nn.Module):
500
+ def forward(self, x):
501
+ x, gate = x.chunk(2, dim=-1)
502
+ return F.silu(gate) * x
503
+
504
+
505
+ class UltravoxProjector(nn.Sequential):
506
+ def __init__(self, config: UltravoxConfig):
507
+ super().__init__()
508
+ self.hidden_dim = config.hidden_size
509
+ self._pad_and_stack = StackAudioFrames(config.stack_factor)
510
+ dim = config.audio_config.hidden_size * config.stack_factor
511
+ self.ln_pre = RMSNorm(dim, init=config.norm_init)
512
+ self.linear_1 = nn.Linear(dim, self.hidden_dim, bias=False)
513
+ dim = self.hidden_dim
514
+ self.act = transformers.activations.get_activation(config.projector_act)
515
+ dim = dim // 2 if config.projector_act == "swiglu" else dim
516
+ self.linear_2 = nn.Linear(dim, config.text_config.hidden_size, bias=False)
517
+ self.ln_post = RMSNorm(config.text_config.hidden_size, init=config.norm_init)
518
+
519
+ def forward(self, audio_features: torch.Tensor) -> torch.Tensor:
520
+ audio_features = self._pad_and_stack(audio_features)
521
+ audio_features = self.ln_pre(audio_features)
522
+ hidden_states = self.linear_1(audio_features)
523
+ hidden_states = self.act(hidden_states)
524
+ hidden_states = self.linear_2(hidden_states)
525
+ hidden_states = self.ln_post(hidden_states)
526
+ return hidden_states
527
+
528
+
529
+ class ModifiedWhisperEncoder(
530
+ whisper.WhisperEncoder, transformers.modeling_utils.ModuleUtilsMixin
531
+ ):
532
+ """
533
+ Encoder portion of OpenAI's Whisper model.
534
+
535
+ This implementation is a slightly modified version of HF Transformers' Whisper Encoder, with only a few fixes:
536
+ 1. base_model_prefix updated to allow for doing `.from_pretrained` directly on the encoder
537
+ 2. allow less than 30 second of audio padding to be passed in:
538
+ - relaxed ValueError check for `input_features` length to be less than or equal to `expected_seq_length` instead of strictly equal
539
+ - embed_pos is now sliced to match the length of `inputs_embeds`
540
+
541
+ Original: https://github.com/huggingface/transformers/blob/main/src/transformers/models/whisper/modeling_whisper.py
542
+ """
543
+
544
+ base_model_prefix = "model.encoder"
545
+ _no_split_modules = ["WhisperEncoderLayer"]
546
+
547
+ def init_latency_mask(self, audio_latency_block_size: int, dtype: torch.dtype):
548
+ if audio_latency_block_size is None:
549
+ self.audio_streaming_mask = None
550
+ return
551
+
552
+ # maximum sequence length
553
+ max_seqlen = (
554
+ self.config.max_source_positions
555
+ * self.conv1.stride[0]
556
+ * self.conv2.stride[0]
557
+ )
558
+ assert (
559
+ max_seqlen > 0
560
+ ), f"maximum sequence length must be positive, got {max_seqlen}"
561
+ assert (
562
+ max_seqlen % audio_latency_block_size == 0
563
+ ), f"audio_latency_block_size {audio_latency_block_size} must divide {max_seqlen} evenly."
564
+ # Given the block size, we calculate number of blocks.
565
+ audio_latency_nblocks = max_seqlen // audio_latency_block_size
566
+ audio_streaming_mask = (
567
+ torch.tril(
568
+ torch.ones(audio_latency_nblocks, audio_latency_nblocks),
569
+ diagonal=0,
570
+ )
571
+ .repeat_interleave(audio_latency_block_size, dim=0)
572
+ .repeat_interleave(audio_latency_block_size, dim=1)
573
+ )
574
+ audio_streaming_mask = (1.0 - audio_streaming_mask) * torch.finfo(dtype).min
575
+ audio_streaming_mask = audio_streaming_mask[None, None, :, :]
576
+ self.register_buffer(
577
+ "audio_streaming_mask", audio_streaming_mask, persistent=False
578
+ )
579
+
580
+ def forward(
581
+ self,
582
+ input_features,
583
+ audio_len=None,
584
+ head_mask=None,
585
+ output_attentions=None,
586
+ output_hidden_states=None,
587
+ return_dict=None,
588
+ ):
589
+ expected_seq_length = (
590
+ self.config.max_source_positions
591
+ * self.conv1.stride[0]
592
+ * self.conv2.stride[0]
593
+ )
594
+ if input_features.shape[-1] > expected_seq_length:
595
+ raise ValueError(
596
+ f"Whisper expects the mel input features to be of length {expected_seq_length} or less, but found {input_features.shape[-1]}. Make sure to pad the input mel features to {expected_seq_length}."
597
+ )
598
+
599
+ output_attentions = (
600
+ output_attentions
601
+ if output_attentions is not None
602
+ else self.config.output_attentions
603
+ )
604
+ output_hidden_states = (
605
+ output_hidden_states
606
+ if output_hidden_states is not None
607
+ else self.config.output_hidden_states
608
+ )
609
+ return_dict = (
610
+ return_dict if return_dict is not None else self.config.use_return_dict
611
+ )
612
+ inputs_embeds = nn.functional.gelu(self.conv1(input_features))
613
+ inputs_embeds = nn.functional.gelu(self.conv2(inputs_embeds))
614
+
615
+ inputs_embeds = inputs_embeds.permute(0, 2, 1)
616
+ embed_pos = self.embed_positions.weight[: inputs_embeds.size(-2)]
617
+
618
+ hidden_states = inputs_embeds + embed_pos
619
+ hidden_states = nn.functional.dropout(
620
+ hidden_states, p=self.dropout, training=self.training
621
+ )
622
+
623
+ encoder_states = () if output_hidden_states else None
624
+ all_attentions = () if output_attentions else None
625
+
626
+ # Create attention mask based on audio lengths to mask out padding tokens
627
+ # For each sample in batch:
628
+ # - Convert raw audio length to feature length after convolutions
629
+ # - Create boolean mask that is True for valid positions and False for padding
630
+ # - Convert to extended attention mask format expected by transformer layers
631
+ # (1.0 for positions to attend to, large negative for positions to ignore)
632
+ # This masking ensures consistent behavior between training and inference
633
+ # by preventing the model from attending to padding tokens in both cases
634
+ attention_mask = None
635
+ if audio_len != None:
636
+ audio_feature_len = self._get_feat_extract_output_lengths(audio_len)
637
+ max_seq_len = hidden_states.shape[1]
638
+ attention_mask = torch.arange(max_seq_len, device=hidden_states.device)[
639
+ None, :
640
+ ].lt(audio_feature_len.view(-1, 1))
641
+ attention_mask = self.get_extended_attention_mask(
642
+ attention_mask,
643
+ None,
644
+ device=hidden_states.device,
645
+ dtype=hidden_states.dtype,
646
+ )
647
+
648
+ if self.audio_streaming_mask is not None:
649
+ seqlen = hidden_states.size(-2)
650
+ if attention_mask is not None:
651
+ attention_mask = torch.minimum(
652
+ self.audio_streaming_mask[:, :, :seqlen, :seqlen], attention_mask
653
+ ) # merge
654
+ else:
655
+ attention_mask = self.audio_streaming_mask[:, :, :seqlen, :seqlen]
656
+ attention_mask = attention_mask.to(hidden_states.dtype)
657
+
658
+ # check if head_mask has a correct number of layers specified if desired
659
+ if head_mask is not None:
660
+ assert head_mask.size()[0] == (
661
+ len(self.layers)
662
+ ), f"The head_mask should be specified for {len(self.layers)} layers, but it is for {head_mask.size()[0]}."
663
+
664
+ for idx, encoder_layer in enumerate(self.layers):
665
+ if output_hidden_states:
666
+ encoder_states = encoder_states + (hidden_states,)
667
+ # add LayerDrop (see https://arxiv.org/abs/1909.11556 for description)
668
+ to_drop = False
669
+ if self.training:
670
+ dropout_probability = torch.rand([])
671
+ if dropout_probability < self.layerdrop: # skip the layer
672
+ to_drop = True
673
+
674
+ if to_drop:
675
+ layer_outputs = (None, None)
676
+ else:
677
+ if self.gradient_checkpointing and self.training:
678
+ layer_outputs = self._gradient_checkpointing_func(
679
+ encoder_layer.__call__,
680
+ hidden_states,
681
+ attention_mask,
682
+ (head_mask[idx] if head_mask is not None else None),
683
+ output_attentions,
684
+ )
685
+ else:
686
+ layer_outputs = encoder_layer(
687
+ hidden_states,
688
+ attention_mask,
689
+ layer_head_mask=(
690
+ head_mask[idx] if head_mask is not None else None
691
+ ),
692
+ output_attentions=output_attentions,
693
+ )
694
+
695
+ hidden_states = layer_outputs[0]
696
+
697
+ if output_attentions:
698
+ all_attentions = all_attentions + (layer_outputs[1],)
699
+
700
+ hidden_states = self.layer_norm(hidden_states)
701
+ if output_hidden_states:
702
+ encoder_states = encoder_states + (hidden_states,)
703
+
704
+ if not return_dict:
705
+ return tuple(
706
+ v
707
+ for v in [hidden_states, encoder_states, all_attentions]
708
+ if v is not None
709
+ )
710
+ return transformers.modeling_outputs.BaseModelOutput(
711
+ last_hidden_state=hidden_states,
712
+ hidden_states=encoder_states,
713
+ attentions=all_attentions,
714
+ )
715
+
716
+
717
+ UltravoxConfig.register_for_auto_class()
718
+ UltravoxModel.register_for_auto_class()
719
+
720
+ transformers.AutoConfig.register("ultravox", UltravoxConfig)
721
+ transformers.AutoModel.register(UltravoxConfig, UltravoxModel)
722
+
723
+ transformers.activations.ACT2FN["swiglu"] = SwiGLU
checkpoint-14400/config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "UltravoxModel"
4
+ ],
5
+ "audio_latency_block_size": null,
6
+ "audio_model_id": "openai/whisper-large-v3-turbo",
7
+ "audio_model_lora_config": {
8
+ "lora_alpha": 8,
9
+ "r": 0,
10
+ "target_modules": [
11
+ "k_proj",
12
+ "q_proj",
13
+ "linear_k",
14
+ "linear_q"
15
+ ]
16
+ },
17
+ "auto_map": {
18
+ "AutoConfig": "ultravox_config.UltravoxConfig",
19
+ "AutoModel": "ultravox_model.UltravoxModel"
20
+ },
21
+ "hidden_size": 4096,
22
+ "ignore_index": -100,
23
+ "initializer_range": 0.02,
24
+ "model_type": "ultravox",
25
+ "norm_init": 0.4,
26
+ "pad_token_id": 128009,
27
+ "projector_act": "swiglu",
28
+ "stack_factor": 8,
29
+ "text_model_id": "meta-llama/Llama-3.2-1B-Instruct",
30
+ "text_model_lora_config": {
31
+ "lora_alpha": 8,
32
+ "r": 0,
33
+ "target_modules": [
34
+ "k_proj",
35
+ "q_proj",
36
+ "linear_k",
37
+ "linear_q"
38
+ ]
39
+ },
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.47.0",
42
+ "vocab_size": 128256
43
+ }
checkpoint-14400/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 128000,
4
+ "eos_token_id": [
5
+ 128001,
6
+ 128008,
7
+ 128009
8
+ ],
9
+ "pad_token_id": 128009,
10
+ "transformers_version": "4.47.0"
11
+ }
checkpoint-14400/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46fb828f3d8af8e0688d12814507e753d1b1b539be4d4fc1c4354c929de48237
3
+ size 92299736
checkpoint-14400/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83a3a84b785ddcbb571fb4f67d0a415d0ac6f7b538cec8be3e6cd7b18916ad72
3
+ size 184602962
checkpoint-14400/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11516b7ccd6e385a675b71eca16211a235edde3d873d7f7e38c7de807a794cd2
3
+ size 14244
checkpoint-14400/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c57798d3fa88e9f7f19098498af2fbd85578814b976457ff05f5a72957807e9
3
+ size 1064
checkpoint-14400/special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|eot_id|>"
17
+ }
checkpoint-14400/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-14400/tokenizer_config.json ADDED
@@ -0,0 +1,2064 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "128000": {
4
+ "content": "<|begin_of_text|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "128001": {
12
+ "content": "<|end_of_text|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "128002": {
20
+ "content": "<|reserved_special_token_0|>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "128003": {
28
+ "content": "<|reserved_special_token_1|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "128004": {
36
+ "content": "<|finetune_right_pad_id|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "128005": {
44
+ "content": "<|reserved_special_token_2|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "128006": {
52
+ "content": "<|start_header_id|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "128007": {
60
+ "content": "<|end_header_id|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "128008": {
68
+ "content": "<|eom_id|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "128009": {
76
+ "content": "<|eot_id|>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "128010": {
84
+ "content": "<|python_tag|>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "128011": {
92
+ "content": "<|reserved_special_token_3|>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "128012": {
100
+ "content": "<|reserved_special_token_4|>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "128013": {
108
+ "content": "<|reserved_special_token_5|>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "128014": {
116
+ "content": "<|reserved_special_token_6|>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "128015": {
124
+ "content": "<|reserved_special_token_7|>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "128016": {
132
+ "content": "<|reserved_special_token_8|>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "128017": {
140
+ "content": "<|reserved_special_token_9|>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "128018": {
148
+ "content": "<|reserved_special_token_10|>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "128019": {
156
+ "content": "<|reserved_special_token_11|>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "128020": {
164
+ "content": "<|reserved_special_token_12|>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "128021": {
172
+ "content": "<|reserved_special_token_13|>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": true
178
+ },
179
+ "128022": {
180
+ "content": "<|reserved_special_token_14|>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": true
186
+ },
187
+ "128023": {
188
+ "content": "<|reserved_special_token_15|>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": true
194
+ },
195
+ "128024": {
196
+ "content": "<|reserved_special_token_16|>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": true
202
+ },
203
+ "128025": {
204
+ "content": "<|reserved_special_token_17|>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": true
210
+ },
211
+ "128026": {
212
+ "content": "<|reserved_special_token_18|>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": true
218
+ },
219
+ "128027": {
220
+ "content": "<|reserved_special_token_19|>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "128028": {
228
+ "content": "<|reserved_special_token_20|>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "128029": {
236
+ "content": "<|reserved_special_token_21|>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "128030": {
244
+ "content": "<|reserved_special_token_22|>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "128031": {
252
+ "content": "<|reserved_special_token_23|>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "128032": {
260
+ "content": "<|reserved_special_token_24|>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "128033": {
268
+ "content": "<|reserved_special_token_25|>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": true
274
+ },
275
+ "128034": {
276
+ "content": "<|reserved_special_token_26|>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": true
282
+ },
283
+ "128035": {
284
+ "content": "<|reserved_special_token_27|>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": true
290
+ },
291
+ "128036": {
292
+ "content": "<|reserved_special_token_28|>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": true
298
+ },
299
+ "128037": {
300
+ "content": "<|reserved_special_token_29|>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": true
306
+ },
307
+ "128038": {
308
+ "content": "<|reserved_special_token_30|>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": true
314
+ },
315
+ "128039": {
316
+ "content": "<|reserved_special_token_31|>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": true
322
+ },
323
+ "128040": {
324
+ "content": "<|reserved_special_token_32|>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": true
330
+ },
331
+ "128041": {
332
+ "content": "<|reserved_special_token_33|>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": true
338
+ },
339
+ "128042": {
340
+ "content": "<|reserved_special_token_34|>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": true
346
+ },
347
+ "128043": {
348
+ "content": "<|reserved_special_token_35|>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": true
354
+ },
355
+ "128044": {
356
+ "content": "<|reserved_special_token_36|>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": true
362
+ },
363
+ "128045": {
364
+ "content": "<|reserved_special_token_37|>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": true
370
+ },
371
+ "128046": {
372
+ "content": "<|reserved_special_token_38|>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": true
378
+ },
379
+ "128047": {
380
+ "content": "<|reserved_special_token_39|>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": true
386
+ },
387
+ "128048": {
388
+ "content": "<|reserved_special_token_40|>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": true
394
+ },
395
+ "128049": {
396
+ "content": "<|reserved_special_token_41|>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": true
402
+ },
403
+ "128050": {
404
+ "content": "<|reserved_special_token_42|>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": true
410
+ },
411
+ "128051": {
412
+ "content": "<|reserved_special_token_43|>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": true
418
+ },
419
+ "128052": {
420
+ "content": "<|reserved_special_token_44|>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": true
426
+ },
427
+ "128053": {
428
+ "content": "<|reserved_special_token_45|>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": true
434
+ },
435
+ "128054": {
436
+ "content": "<|reserved_special_token_46|>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": true
442
+ },
443
+ "128055": {
444
+ "content": "<|reserved_special_token_47|>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": true
450
+ },
451
+ "128056": {
452
+ "content": "<|reserved_special_token_48|>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": true
458
+ },
459
+ "128057": {
460
+ "content": "<|reserved_special_token_49|>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": true
466
+ },
467
+ "128058": {
468
+ "content": "<|reserved_special_token_50|>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": true
474
+ },
475
+ "128059": {
476
+ "content": "<|reserved_special_token_51|>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": true
482
+ },
483
+ "128060": {
484
+ "content": "<|reserved_special_token_52|>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": true
490
+ },
491
+ "128061": {
492
+ "content": "<|reserved_special_token_53|>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": true
498
+ },
499
+ "128062": {
500
+ "content": "<|reserved_special_token_54|>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": true
506
+ },
507
+ "128063": {
508
+ "content": "<|reserved_special_token_55|>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": true
514
+ },
515
+ "128064": {
516
+ "content": "<|reserved_special_token_56|>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": true
522
+ },
523
+ "128065": {
524
+ "content": "<|reserved_special_token_57|>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": true
530
+ },
531
+ "128066": {
532
+ "content": "<|reserved_special_token_58|>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": true
538
+ },
539
+ "128067": {
540
+ "content": "<|reserved_special_token_59|>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": true
546
+ },
547
+ "128068": {
548
+ "content": "<|reserved_special_token_60|>",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": true
554
+ },
555
+ "128069": {
556
+ "content": "<|reserved_special_token_61|>",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": true
562
+ },
563
+ "128070": {
564
+ "content": "<|reserved_special_token_62|>",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": true
570
+ },
571
+ "128071": {
572
+ "content": "<|reserved_special_token_63|>",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": true
578
+ },
579
+ "128072": {
580
+ "content": "<|reserved_special_token_64|>",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": true
586
+ },
587
+ "128073": {
588
+ "content": "<|reserved_special_token_65|>",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": true
594
+ },
595
+ "128074": {
596
+ "content": "<|reserved_special_token_66|>",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": true
602
+ },
603
+ "128075": {
604
+ "content": "<|reserved_special_token_67|>",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": true
610
+ },
611
+ "128076": {
612
+ "content": "<|reserved_special_token_68|>",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": true
618
+ },
619
+ "128077": {
620
+ "content": "<|reserved_special_token_69|>",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": true
626
+ },
627
+ "128078": {
628
+ "content": "<|reserved_special_token_70|>",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": true
634
+ },
635
+ "128079": {
636
+ "content": "<|reserved_special_token_71|>",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": true
642
+ },
643
+ "128080": {
644
+ "content": "<|reserved_special_token_72|>",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": true
650
+ },
651
+ "128081": {
652
+ "content": "<|reserved_special_token_73|>",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": true
658
+ },
659
+ "128082": {
660
+ "content": "<|reserved_special_token_74|>",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": true
666
+ },
667
+ "128083": {
668
+ "content": "<|reserved_special_token_75|>",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": true
674
+ },
675
+ "128084": {
676
+ "content": "<|reserved_special_token_76|>",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": true
682
+ },
683
+ "128085": {
684
+ "content": "<|reserved_special_token_77|>",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": true
690
+ },
691
+ "128086": {
692
+ "content": "<|reserved_special_token_78|>",
693
+ "lstrip": false,
694
+ "normalized": false,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": true
698
+ },
699
+ "128087": {
700
+ "content": "<|reserved_special_token_79|>",
701
+ "lstrip": false,
702
+ "normalized": false,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": true
706
+ },
707
+ "128088": {
708
+ "content": "<|reserved_special_token_80|>",
709
+ "lstrip": false,
710
+ "normalized": false,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": true
714
+ },
715
+ "128089": {
716
+ "content": "<|reserved_special_token_81|>",
717
+ "lstrip": false,
718
+ "normalized": false,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": true
722
+ },
723
+ "128090": {
724
+ "content": "<|reserved_special_token_82|>",
725
+ "lstrip": false,
726
+ "normalized": false,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": true
730
+ },
731
+ "128091": {
732
+ "content": "<|reserved_special_token_83|>",
733
+ "lstrip": false,
734
+ "normalized": false,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": true
738
+ },
739
+ "128092": {
740
+ "content": "<|reserved_special_token_84|>",
741
+ "lstrip": false,
742
+ "normalized": false,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": true
746
+ },
747
+ "128093": {
748
+ "content": "<|reserved_special_token_85|>",
749
+ "lstrip": false,
750
+ "normalized": false,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": true
754
+ },
755
+ "128094": {
756
+ "content": "<|reserved_special_token_86|>",
757
+ "lstrip": false,
758
+ "normalized": false,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": true
762
+ },
763
+ "128095": {
764
+ "content": "<|reserved_special_token_87|>",
765
+ "lstrip": false,
766
+ "normalized": false,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": true
770
+ },
771
+ "128096": {
772
+ "content": "<|reserved_special_token_88|>",
773
+ "lstrip": false,
774
+ "normalized": false,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": true
778
+ },
779
+ "128097": {
780
+ "content": "<|reserved_special_token_89|>",
781
+ "lstrip": false,
782
+ "normalized": false,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": true
786
+ },
787
+ "128098": {
788
+ "content": "<|reserved_special_token_90|>",
789
+ "lstrip": false,
790
+ "normalized": false,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": true
794
+ },
795
+ "128099": {
796
+ "content": "<|reserved_special_token_91|>",
797
+ "lstrip": false,
798
+ "normalized": false,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": true
802
+ },
803
+ "128100": {
804
+ "content": "<|reserved_special_token_92|>",
805
+ "lstrip": false,
806
+ "normalized": false,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": true
810
+ },
811
+ "128101": {
812
+ "content": "<|reserved_special_token_93|>",
813
+ "lstrip": false,
814
+ "normalized": false,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": true
818
+ },
819
+ "128102": {
820
+ "content": "<|reserved_special_token_94|>",
821
+ "lstrip": false,
822
+ "normalized": false,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": true
826
+ },
827
+ "128103": {
828
+ "content": "<|reserved_special_token_95|>",
829
+ "lstrip": false,
830
+ "normalized": false,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": true
834
+ },
835
+ "128104": {
836
+ "content": "<|reserved_special_token_96|>",
837
+ "lstrip": false,
838
+ "normalized": false,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": true
842
+ },
843
+ "128105": {
844
+ "content": "<|reserved_special_token_97|>",
845
+ "lstrip": false,
846
+ "normalized": false,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": true
850
+ },
851
+ "128106": {
852
+ "content": "<|reserved_special_token_98|>",
853
+ "lstrip": false,
854
+ "normalized": false,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": true
858
+ },
859
+ "128107": {
860
+ "content": "<|reserved_special_token_99|>",
861
+ "lstrip": false,
862
+ "normalized": false,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": true
866
+ },
867
+ "128108": {
868
+ "content": "<|reserved_special_token_100|>",
869
+ "lstrip": false,
870
+ "normalized": false,
871
+ "rstrip": false,
872
+ "single_word": false,
873
+ "special": true
874
+ },
875
+ "128109": {
876
+ "content": "<|reserved_special_token_101|>",
877
+ "lstrip": false,
878
+ "normalized": false,
879
+ "rstrip": false,
880
+ "single_word": false,
881
+ "special": true
882
+ },
883
+ "128110": {
884
+ "content": "<|reserved_special_token_102|>",
885
+ "lstrip": false,
886
+ "normalized": false,
887
+ "rstrip": false,
888
+ "single_word": false,
889
+ "special": true
890
+ },
891
+ "128111": {
892
+ "content": "<|reserved_special_token_103|>",
893
+ "lstrip": false,
894
+ "normalized": false,
895
+ "rstrip": false,
896
+ "single_word": false,
897
+ "special": true
898
+ },
899
+ "128112": {
900
+ "content": "<|reserved_special_token_104|>",
901
+ "lstrip": false,
902
+ "normalized": false,
903
+ "rstrip": false,
904
+ "single_word": false,
905
+ "special": true
906
+ },
907
+ "128113": {
908
+ "content": "<|reserved_special_token_105|>",
909
+ "lstrip": false,
910
+ "normalized": false,
911
+ "rstrip": false,
912
+ "single_word": false,
913
+ "special": true
914
+ },
915
+ "128114": {
916
+ "content": "<|reserved_special_token_106|>",
917
+ "lstrip": false,
918
+ "normalized": false,
919
+ "rstrip": false,
920
+ "single_word": false,
921
+ "special": true
922
+ },
923
+ "128115": {
924
+ "content": "<|reserved_special_token_107|>",
925
+ "lstrip": false,
926
+ "normalized": false,
927
+ "rstrip": false,
928
+ "single_word": false,
929
+ "special": true
930
+ },
931
+ "128116": {
932
+ "content": "<|reserved_special_token_108|>",
933
+ "lstrip": false,
934
+ "normalized": false,
935
+ "rstrip": false,
936
+ "single_word": false,
937
+ "special": true
938
+ },
939
+ "128117": {
940
+ "content": "<|reserved_special_token_109|>",
941
+ "lstrip": false,
942
+ "normalized": false,
943
+ "rstrip": false,
944
+ "single_word": false,
945
+ "special": true
946
+ },
947
+ "128118": {
948
+ "content": "<|reserved_special_token_110|>",
949
+ "lstrip": false,
950
+ "normalized": false,
951
+ "rstrip": false,
952
+ "single_word": false,
953
+ "special": true
954
+ },
955
+ "128119": {
956
+ "content": "<|reserved_special_token_111|>",
957
+ "lstrip": false,
958
+ "normalized": false,
959
+ "rstrip": false,
960
+ "single_word": false,
961
+ "special": true
962
+ },
963
+ "128120": {
964
+ "content": "<|reserved_special_token_112|>",
965
+ "lstrip": false,
966
+ "normalized": false,
967
+ "rstrip": false,
968
+ "single_word": false,
969
+ "special": true
970
+ },
971
+ "128121": {
972
+ "content": "<|reserved_special_token_113|>",
973
+ "lstrip": false,
974
+ "normalized": false,
975
+ "rstrip": false,
976
+ "single_word": false,
977
+ "special": true
978
+ },
979
+ "128122": {
980
+ "content": "<|reserved_special_token_114|>",
981
+ "lstrip": false,
982
+ "normalized": false,
983
+ "rstrip": false,
984
+ "single_word": false,
985
+ "special": true
986
+ },
987
+ "128123": {
988
+ "content": "<|reserved_special_token_115|>",
989
+ "lstrip": false,
990
+ "normalized": false,
991
+ "rstrip": false,
992
+ "single_word": false,
993
+ "special": true
994
+ },
995
+ "128124": {
996
+ "content": "<|reserved_special_token_116|>",
997
+ "lstrip": false,
998
+ "normalized": false,
999
+ "rstrip": false,
1000
+ "single_word": false,
1001
+ "special": true
1002
+ },
1003
+ "128125": {
1004
+ "content": "<|reserved_special_token_117|>",
1005
+ "lstrip": false,
1006
+ "normalized": false,
1007
+ "rstrip": false,
1008
+ "single_word": false,
1009
+ "special": true
1010
+ },
1011
+ "128126": {
1012
+ "content": "<|reserved_special_token_118|>",
1013
+ "lstrip": false,
1014
+ "normalized": false,
1015
+ "rstrip": false,
1016
+ "single_word": false,
1017
+ "special": true
1018
+ },
1019
+ "128127": {
1020
+ "content": "<|reserved_special_token_119|>",
1021
+ "lstrip": false,
1022
+ "normalized": false,
1023
+ "rstrip": false,
1024
+ "single_word": false,
1025
+ "special": true
1026
+ },
1027
+ "128128": {
1028
+ "content": "<|reserved_special_token_120|>",
1029
+ "lstrip": false,
1030
+ "normalized": false,
1031
+ "rstrip": false,
1032
+ "single_word": false,
1033
+ "special": true
1034
+ },
1035
+ "128129": {
1036
+ "content": "<|reserved_special_token_121|>",
1037
+ "lstrip": false,
1038
+ "normalized": false,
1039
+ "rstrip": false,
1040
+ "single_word": false,
1041
+ "special": true
1042
+ },
1043
+ "128130": {
1044
+ "content": "<|reserved_special_token_122|>",
1045
+ "lstrip": false,
1046
+ "normalized": false,
1047
+ "rstrip": false,
1048
+ "single_word": false,
1049
+ "special": true
1050
+ },
1051
+ "128131": {
1052
+ "content": "<|reserved_special_token_123|>",
1053
+ "lstrip": false,
1054
+ "normalized": false,
1055
+ "rstrip": false,
1056
+ "single_word": false,
1057
+ "special": true
1058
+ },
1059
+ "128132": {
1060
+ "content": "<|reserved_special_token_124|>",
1061
+ "lstrip": false,
1062
+ "normalized": false,
1063
+ "rstrip": false,
1064
+ "single_word": false,
1065
+ "special": true
1066
+ },
1067
+ "128133": {
1068
+ "content": "<|reserved_special_token_125|>",
1069
+ "lstrip": false,
1070
+ "normalized": false,
1071
+ "rstrip": false,
1072
+ "single_word": false,
1073
+ "special": true
1074
+ },
1075
+ "128134": {
1076
+ "content": "<|reserved_special_token_126|>",
1077
+ "lstrip": false,
1078
+ "normalized": false,
1079
+ "rstrip": false,
1080
+ "single_word": false,
1081
+ "special": true
1082
+ },
1083
+ "128135": {
1084
+ "content": "<|reserved_special_token_127|>",
1085
+ "lstrip": false,
1086
+ "normalized": false,
1087
+ "rstrip": false,
1088
+ "single_word": false,
1089
+ "special": true
1090
+ },
1091
+ "128136": {
1092
+ "content": "<|reserved_special_token_128|>",
1093
+ "lstrip": false,
1094
+ "normalized": false,
1095
+ "rstrip": false,
1096
+ "single_word": false,
1097
+ "special": true
1098
+ },
1099
+ "128137": {
1100
+ "content": "<|reserved_special_token_129|>",
1101
+ "lstrip": false,
1102
+ "normalized": false,
1103
+ "rstrip": false,
1104
+ "single_word": false,
1105
+ "special": true
1106
+ },
1107
+ "128138": {
1108
+ "content": "<|reserved_special_token_130|>",
1109
+ "lstrip": false,
1110
+ "normalized": false,
1111
+ "rstrip": false,
1112
+ "single_word": false,
1113
+ "special": true
1114
+ },
1115
+ "128139": {
1116
+ "content": "<|reserved_special_token_131|>",
1117
+ "lstrip": false,
1118
+ "normalized": false,
1119
+ "rstrip": false,
1120
+ "single_word": false,
1121
+ "special": true
1122
+ },
1123
+ "128140": {
1124
+ "content": "<|reserved_special_token_132|>",
1125
+ "lstrip": false,
1126
+ "normalized": false,
1127
+ "rstrip": false,
1128
+ "single_word": false,
1129
+ "special": true
1130
+ },
1131
+ "128141": {
1132
+ "content": "<|reserved_special_token_133|>",
1133
+ "lstrip": false,
1134
+ "normalized": false,
1135
+ "rstrip": false,
1136
+ "single_word": false,
1137
+ "special": true
1138
+ },
1139
+ "128142": {
1140
+ "content": "<|reserved_special_token_134|>",
1141
+ "lstrip": false,
1142
+ "normalized": false,
1143
+ "rstrip": false,
1144
+ "single_word": false,
1145
+ "special": true
1146
+ },
1147
+ "128143": {
1148
+ "content": "<|reserved_special_token_135|>",
1149
+ "lstrip": false,
1150
+ "normalized": false,
1151
+ "rstrip": false,
1152
+ "single_word": false,
1153
+ "special": true
1154
+ },
1155
+ "128144": {
1156
+ "content": "<|reserved_special_token_136|>",
1157
+ "lstrip": false,
1158
+ "normalized": false,
1159
+ "rstrip": false,
1160
+ "single_word": false,
1161
+ "special": true
1162
+ },
1163
+ "128145": {
1164
+ "content": "<|reserved_special_token_137|>",
1165
+ "lstrip": false,
1166
+ "normalized": false,
1167
+ "rstrip": false,
1168
+ "single_word": false,
1169
+ "special": true
1170
+ },
1171
+ "128146": {
1172
+ "content": "<|reserved_special_token_138|>",
1173
+ "lstrip": false,
1174
+ "normalized": false,
1175
+ "rstrip": false,
1176
+ "single_word": false,
1177
+ "special": true
1178
+ },
1179
+ "128147": {
1180
+ "content": "<|reserved_special_token_139|>",
1181
+ "lstrip": false,
1182
+ "normalized": false,
1183
+ "rstrip": false,
1184
+ "single_word": false,
1185
+ "special": true
1186
+ },
1187
+ "128148": {
1188
+ "content": "<|reserved_special_token_140|>",
1189
+ "lstrip": false,
1190
+ "normalized": false,
1191
+ "rstrip": false,
1192
+ "single_word": false,
1193
+ "special": true
1194
+ },
1195
+ "128149": {
1196
+ "content": "<|reserved_special_token_141|>",
1197
+ "lstrip": false,
1198
+ "normalized": false,
1199
+ "rstrip": false,
1200
+ "single_word": false,
1201
+ "special": true
1202
+ },
1203
+ "128150": {
1204
+ "content": "<|reserved_special_token_142|>",
1205
+ "lstrip": false,
1206
+ "normalized": false,
1207
+ "rstrip": false,
1208
+ "single_word": false,
1209
+ "special": true
1210
+ },
1211
+ "128151": {
1212
+ "content": "<|reserved_special_token_143|>",
1213
+ "lstrip": false,
1214
+ "normalized": false,
1215
+ "rstrip": false,
1216
+ "single_word": false,
1217
+ "special": true
1218
+ },
1219
+ "128152": {
1220
+ "content": "<|reserved_special_token_144|>",
1221
+ "lstrip": false,
1222
+ "normalized": false,
1223
+ "rstrip": false,
1224
+ "single_word": false,
1225
+ "special": true
1226
+ },
1227
+ "128153": {
1228
+ "content": "<|reserved_special_token_145|>",
1229
+ "lstrip": false,
1230
+ "normalized": false,
1231
+ "rstrip": false,
1232
+ "single_word": false,
1233
+ "special": true
1234
+ },
1235
+ "128154": {
1236
+ "content": "<|reserved_special_token_146|>",
1237
+ "lstrip": false,
1238
+ "normalized": false,
1239
+ "rstrip": false,
1240
+ "single_word": false,
1241
+ "special": true
1242
+ },
1243
+ "128155": {
1244
+ "content": "<|reserved_special_token_147|>",
1245
+ "lstrip": false,
1246
+ "normalized": false,
1247
+ "rstrip": false,
1248
+ "single_word": false,
1249
+ "special": true
1250
+ },
1251
+ "128156": {
1252
+ "content": "<|reserved_special_token_148|>",
1253
+ "lstrip": false,
1254
+ "normalized": false,
1255
+ "rstrip": false,
1256
+ "single_word": false,
1257
+ "special": true
1258
+ },
1259
+ "128157": {
1260
+ "content": "<|reserved_special_token_149|>",
1261
+ "lstrip": false,
1262
+ "normalized": false,
1263
+ "rstrip": false,
1264
+ "single_word": false,
1265
+ "special": true
1266
+ },
1267
+ "128158": {
1268
+ "content": "<|reserved_special_token_150|>",
1269
+ "lstrip": false,
1270
+ "normalized": false,
1271
+ "rstrip": false,
1272
+ "single_word": false,
1273
+ "special": true
1274
+ },
1275
+ "128159": {
1276
+ "content": "<|reserved_special_token_151|>",
1277
+ "lstrip": false,
1278
+ "normalized": false,
1279
+ "rstrip": false,
1280
+ "single_word": false,
1281
+ "special": true
1282
+ },
1283
+ "128160": {
1284
+ "content": "<|reserved_special_token_152|>",
1285
+ "lstrip": false,
1286
+ "normalized": false,
1287
+ "rstrip": false,
1288
+ "single_word": false,
1289
+ "special": true
1290
+ },
1291
+ "128161": {
1292
+ "content": "<|reserved_special_token_153|>",
1293
+ "lstrip": false,
1294
+ "normalized": false,
1295
+ "rstrip": false,
1296
+ "single_word": false,
1297
+ "special": true
1298
+ },
1299
+ "128162": {
1300
+ "content": "<|reserved_special_token_154|>",
1301
+ "lstrip": false,
1302
+ "normalized": false,
1303
+ "rstrip": false,
1304
+ "single_word": false,
1305
+ "special": true
1306
+ },
1307
+ "128163": {
1308
+ "content": "<|reserved_special_token_155|>",
1309
+ "lstrip": false,
1310
+ "normalized": false,
1311
+ "rstrip": false,
1312
+ "single_word": false,
1313
+ "special": true
1314
+ },
1315
+ "128164": {
1316
+ "content": "<|reserved_special_token_156|>",
1317
+ "lstrip": false,
1318
+ "normalized": false,
1319
+ "rstrip": false,
1320
+ "single_word": false,
1321
+ "special": true
1322
+ },
1323
+ "128165": {
1324
+ "content": "<|reserved_special_token_157|>",
1325
+ "lstrip": false,
1326
+ "normalized": false,
1327
+ "rstrip": false,
1328
+ "single_word": false,
1329
+ "special": true
1330
+ },
1331
+ "128166": {
1332
+ "content": "<|reserved_special_token_158|>",
1333
+ "lstrip": false,
1334
+ "normalized": false,
1335
+ "rstrip": false,
1336
+ "single_word": false,
1337
+ "special": true
1338
+ },
1339
+ "128167": {
1340
+ "content": "<|reserved_special_token_159|>",
1341
+ "lstrip": false,
1342
+ "normalized": false,
1343
+ "rstrip": false,
1344
+ "single_word": false,
1345
+ "special": true
1346
+ },
1347
+ "128168": {
1348
+ "content": "<|reserved_special_token_160|>",
1349
+ "lstrip": false,
1350
+ "normalized": false,
1351
+ "rstrip": false,
1352
+ "single_word": false,
1353
+ "special": true
1354
+ },
1355
+ "128169": {
1356
+ "content": "<|reserved_special_token_161|>",
1357
+ "lstrip": false,
1358
+ "normalized": false,
1359
+ "rstrip": false,
1360
+ "single_word": false,
1361
+ "special": true
1362
+ },
1363
+ "128170": {
1364
+ "content": "<|reserved_special_token_162|>",
1365
+ "lstrip": false,
1366
+ "normalized": false,
1367
+ "rstrip": false,
1368
+ "single_word": false,
1369
+ "special": true
1370
+ },
1371
+ "128171": {
1372
+ "content": "<|reserved_special_token_163|>",
1373
+ "lstrip": false,
1374
+ "normalized": false,
1375
+ "rstrip": false,
1376
+ "single_word": false,
1377
+ "special": true
1378
+ },
1379
+ "128172": {
1380
+ "content": "<|reserved_special_token_164|>",
1381
+ "lstrip": false,
1382
+ "normalized": false,
1383
+ "rstrip": false,
1384
+ "single_word": false,
1385
+ "special": true
1386
+ },
1387
+ "128173": {
1388
+ "content": "<|reserved_special_token_165|>",
1389
+ "lstrip": false,
1390
+ "normalized": false,
1391
+ "rstrip": false,
1392
+ "single_word": false,
1393
+ "special": true
1394
+ },
1395
+ "128174": {
1396
+ "content": "<|reserved_special_token_166|>",
1397
+ "lstrip": false,
1398
+ "normalized": false,
1399
+ "rstrip": false,
1400
+ "single_word": false,
1401
+ "special": true
1402
+ },
1403
+ "128175": {
1404
+ "content": "<|reserved_special_token_167|>",
1405
+ "lstrip": false,
1406
+ "normalized": false,
1407
+ "rstrip": false,
1408
+ "single_word": false,
1409
+ "special": true
1410
+ },
1411
+ "128176": {
1412
+ "content": "<|reserved_special_token_168|>",
1413
+ "lstrip": false,
1414
+ "normalized": false,
1415
+ "rstrip": false,
1416
+ "single_word": false,
1417
+ "special": true
1418
+ },
1419
+ "128177": {
1420
+ "content": "<|reserved_special_token_169|>",
1421
+ "lstrip": false,
1422
+ "normalized": false,
1423
+ "rstrip": false,
1424
+ "single_word": false,
1425
+ "special": true
1426
+ },
1427
+ "128178": {
1428
+ "content": "<|reserved_special_token_170|>",
1429
+ "lstrip": false,
1430
+ "normalized": false,
1431
+ "rstrip": false,
1432
+ "single_word": false,
1433
+ "special": true
1434
+ },
1435
+ "128179": {
1436
+ "content": "<|reserved_special_token_171|>",
1437
+ "lstrip": false,
1438
+ "normalized": false,
1439
+ "rstrip": false,
1440
+ "single_word": false,
1441
+ "special": true
1442
+ },
1443
+ "128180": {
1444
+ "content": "<|reserved_special_token_172|>",
1445
+ "lstrip": false,
1446
+ "normalized": false,
1447
+ "rstrip": false,
1448
+ "single_word": false,
1449
+ "special": true
1450
+ },
1451
+ "128181": {
1452
+ "content": "<|reserved_special_token_173|>",
1453
+ "lstrip": false,
1454
+ "normalized": false,
1455
+ "rstrip": false,
1456
+ "single_word": false,
1457
+ "special": true
1458
+ },
1459
+ "128182": {
1460
+ "content": "<|reserved_special_token_174|>",
1461
+ "lstrip": false,
1462
+ "normalized": false,
1463
+ "rstrip": false,
1464
+ "single_word": false,
1465
+ "special": true
1466
+ },
1467
+ "128183": {
1468
+ "content": "<|reserved_special_token_175|>",
1469
+ "lstrip": false,
1470
+ "normalized": false,
1471
+ "rstrip": false,
1472
+ "single_word": false,
1473
+ "special": true
1474
+ },
1475
+ "128184": {
1476
+ "content": "<|reserved_special_token_176|>",
1477
+ "lstrip": false,
1478
+ "normalized": false,
1479
+ "rstrip": false,
1480
+ "single_word": false,
1481
+ "special": true
1482
+ },
1483
+ "128185": {
1484
+ "content": "<|reserved_special_token_177|>",
1485
+ "lstrip": false,
1486
+ "normalized": false,
1487
+ "rstrip": false,
1488
+ "single_word": false,
1489
+ "special": true
1490
+ },
1491
+ "128186": {
1492
+ "content": "<|reserved_special_token_178|>",
1493
+ "lstrip": false,
1494
+ "normalized": false,
1495
+ "rstrip": false,
1496
+ "single_word": false,
1497
+ "special": true
1498
+ },
1499
+ "128187": {
1500
+ "content": "<|reserved_special_token_179|>",
1501
+ "lstrip": false,
1502
+ "normalized": false,
1503
+ "rstrip": false,
1504
+ "single_word": false,
1505
+ "special": true
1506
+ },
1507
+ "128188": {
1508
+ "content": "<|reserved_special_token_180|>",
1509
+ "lstrip": false,
1510
+ "normalized": false,
1511
+ "rstrip": false,
1512
+ "single_word": false,
1513
+ "special": true
1514
+ },
1515
+ "128189": {
1516
+ "content": "<|reserved_special_token_181|>",
1517
+ "lstrip": false,
1518
+ "normalized": false,
1519
+ "rstrip": false,
1520
+ "single_word": false,
1521
+ "special": true
1522
+ },
1523
+ "128190": {
1524
+ "content": "<|reserved_special_token_182|>",
1525
+ "lstrip": false,
1526
+ "normalized": false,
1527
+ "rstrip": false,
1528
+ "single_word": false,
1529
+ "special": true
1530
+ },
1531
+ "128191": {
1532
+ "content": "<|reserved_special_token_183|>",
1533
+ "lstrip": false,
1534
+ "normalized": false,
1535
+ "rstrip": false,
1536
+ "single_word": false,
1537
+ "special": true
1538
+ },
1539
+ "128192": {
1540
+ "content": "<|reserved_special_token_184|>",
1541
+ "lstrip": false,
1542
+ "normalized": false,
1543
+ "rstrip": false,
1544
+ "single_word": false,
1545
+ "special": true
1546
+ },
1547
+ "128193": {
1548
+ "content": "<|reserved_special_token_185|>",
1549
+ "lstrip": false,
1550
+ "normalized": false,
1551
+ "rstrip": false,
1552
+ "single_word": false,
1553
+ "special": true
1554
+ },
1555
+ "128194": {
1556
+ "content": "<|reserved_special_token_186|>",
1557
+ "lstrip": false,
1558
+ "normalized": false,
1559
+ "rstrip": false,
1560
+ "single_word": false,
1561
+ "special": true
1562
+ },
1563
+ "128195": {
1564
+ "content": "<|reserved_special_token_187|>",
1565
+ "lstrip": false,
1566
+ "normalized": false,
1567
+ "rstrip": false,
1568
+ "single_word": false,
1569
+ "special": true
1570
+ },
1571
+ "128196": {
1572
+ "content": "<|reserved_special_token_188|>",
1573
+ "lstrip": false,
1574
+ "normalized": false,
1575
+ "rstrip": false,
1576
+ "single_word": false,
1577
+ "special": true
1578
+ },
1579
+ "128197": {
1580
+ "content": "<|reserved_special_token_189|>",
1581
+ "lstrip": false,
1582
+ "normalized": false,
1583
+ "rstrip": false,
1584
+ "single_word": false,
1585
+ "special": true
1586
+ },
1587
+ "128198": {
1588
+ "content": "<|reserved_special_token_190|>",
1589
+ "lstrip": false,
1590
+ "normalized": false,
1591
+ "rstrip": false,
1592
+ "single_word": false,
1593
+ "special": true
1594
+ },
1595
+ "128199": {
1596
+ "content": "<|reserved_special_token_191|>",
1597
+ "lstrip": false,
1598
+ "normalized": false,
1599
+ "rstrip": false,
1600
+ "single_word": false,
1601
+ "special": true
1602
+ },
1603
+ "128200": {
1604
+ "content": "<|reserved_special_token_192|>",
1605
+ "lstrip": false,
1606
+ "normalized": false,
1607
+ "rstrip": false,
1608
+ "single_word": false,
1609
+ "special": true
1610
+ },
1611
+ "128201": {
1612
+ "content": "<|reserved_special_token_193|>",
1613
+ "lstrip": false,
1614
+ "normalized": false,
1615
+ "rstrip": false,
1616
+ "single_word": false,
1617
+ "special": true
1618
+ },
1619
+ "128202": {
1620
+ "content": "<|reserved_special_token_194|>",
1621
+ "lstrip": false,
1622
+ "normalized": false,
1623
+ "rstrip": false,
1624
+ "single_word": false,
1625
+ "special": true
1626
+ },
1627
+ "128203": {
1628
+ "content": "<|reserved_special_token_195|>",
1629
+ "lstrip": false,
1630
+ "normalized": false,
1631
+ "rstrip": false,
1632
+ "single_word": false,
1633
+ "special": true
1634
+ },
1635
+ "128204": {
1636
+ "content": "<|reserved_special_token_196|>",
1637
+ "lstrip": false,
1638
+ "normalized": false,
1639
+ "rstrip": false,
1640
+ "single_word": false,
1641
+ "special": true
1642
+ },
1643
+ "128205": {
1644
+ "content": "<|reserved_special_token_197|>",
1645
+ "lstrip": false,
1646
+ "normalized": false,
1647
+ "rstrip": false,
1648
+ "single_word": false,
1649
+ "special": true
1650
+ },
1651
+ "128206": {
1652
+ "content": "<|reserved_special_token_198|>",
1653
+ "lstrip": false,
1654
+ "normalized": false,
1655
+ "rstrip": false,
1656
+ "single_word": false,
1657
+ "special": true
1658
+ },
1659
+ "128207": {
1660
+ "content": "<|reserved_special_token_199|>",
1661
+ "lstrip": false,
1662
+ "normalized": false,
1663
+ "rstrip": false,
1664
+ "single_word": false,
1665
+ "special": true
1666
+ },
1667
+ "128208": {
1668
+ "content": "<|reserved_special_token_200|>",
1669
+ "lstrip": false,
1670
+ "normalized": false,
1671
+ "rstrip": false,
1672
+ "single_word": false,
1673
+ "special": true
1674
+ },
1675
+ "128209": {
1676
+ "content": "<|reserved_special_token_201|>",
1677
+ "lstrip": false,
1678
+ "normalized": false,
1679
+ "rstrip": false,
1680
+ "single_word": false,
1681
+ "special": true
1682
+ },
1683
+ "128210": {
1684
+ "content": "<|reserved_special_token_202|>",
1685
+ "lstrip": false,
1686
+ "normalized": false,
1687
+ "rstrip": false,
1688
+ "single_word": false,
1689
+ "special": true
1690
+ },
1691
+ "128211": {
1692
+ "content": "<|reserved_special_token_203|>",
1693
+ "lstrip": false,
1694
+ "normalized": false,
1695
+ "rstrip": false,
1696
+ "single_word": false,
1697
+ "special": true
1698
+ },
1699
+ "128212": {
1700
+ "content": "<|reserved_special_token_204|>",
1701
+ "lstrip": false,
1702
+ "normalized": false,
1703
+ "rstrip": false,
1704
+ "single_word": false,
1705
+ "special": true
1706
+ },
1707
+ "128213": {
1708
+ "content": "<|reserved_special_token_205|>",
1709
+ "lstrip": false,
1710
+ "normalized": false,
1711
+ "rstrip": false,
1712
+ "single_word": false,
1713
+ "special": true
1714
+ },
1715
+ "128214": {
1716
+ "content": "<|reserved_special_token_206|>",
1717
+ "lstrip": false,
1718
+ "normalized": false,
1719
+ "rstrip": false,
1720
+ "single_word": false,
1721
+ "special": true
1722
+ },
1723
+ "128215": {
1724
+ "content": "<|reserved_special_token_207|>",
1725
+ "lstrip": false,
1726
+ "normalized": false,
1727
+ "rstrip": false,
1728
+ "single_word": false,
1729
+ "special": true
1730
+ },
1731
+ "128216": {
1732
+ "content": "<|reserved_special_token_208|>",
1733
+ "lstrip": false,
1734
+ "normalized": false,
1735
+ "rstrip": false,
1736
+ "single_word": false,
1737
+ "special": true
1738
+ },
1739
+ "128217": {
1740
+ "content": "<|reserved_special_token_209|>",
1741
+ "lstrip": false,
1742
+ "normalized": false,
1743
+ "rstrip": false,
1744
+ "single_word": false,
1745
+ "special": true
1746
+ },
1747
+ "128218": {
1748
+ "content": "<|reserved_special_token_210|>",
1749
+ "lstrip": false,
1750
+ "normalized": false,
1751
+ "rstrip": false,
1752
+ "single_word": false,
1753
+ "special": true
1754
+ },
1755
+ "128219": {
1756
+ "content": "<|reserved_special_token_211|>",
1757
+ "lstrip": false,
1758
+ "normalized": false,
1759
+ "rstrip": false,
1760
+ "single_word": false,
1761
+ "special": true
1762
+ },
1763
+ "128220": {
1764
+ "content": "<|reserved_special_token_212|>",
1765
+ "lstrip": false,
1766
+ "normalized": false,
1767
+ "rstrip": false,
1768
+ "single_word": false,
1769
+ "special": true
1770
+ },
1771
+ "128221": {
1772
+ "content": "<|reserved_special_token_213|>",
1773
+ "lstrip": false,
1774
+ "normalized": false,
1775
+ "rstrip": false,
1776
+ "single_word": false,
1777
+ "special": true
1778
+ },
1779
+ "128222": {
1780
+ "content": "<|reserved_special_token_214|>",
1781
+ "lstrip": false,
1782
+ "normalized": false,
1783
+ "rstrip": false,
1784
+ "single_word": false,
1785
+ "special": true
1786
+ },
1787
+ "128223": {
1788
+ "content": "<|reserved_special_token_215|>",
1789
+ "lstrip": false,
1790
+ "normalized": false,
1791
+ "rstrip": false,
1792
+ "single_word": false,
1793
+ "special": true
1794
+ },
1795
+ "128224": {
1796
+ "content": "<|reserved_special_token_216|>",
1797
+ "lstrip": false,
1798
+ "normalized": false,
1799
+ "rstrip": false,
1800
+ "single_word": false,
1801
+ "special": true
1802
+ },
1803
+ "128225": {
1804
+ "content": "<|reserved_special_token_217|>",
1805
+ "lstrip": false,
1806
+ "normalized": false,
1807
+ "rstrip": false,
1808
+ "single_word": false,
1809
+ "special": true
1810
+ },
1811
+ "128226": {
1812
+ "content": "<|reserved_special_token_218|>",
1813
+ "lstrip": false,
1814
+ "normalized": false,
1815
+ "rstrip": false,
1816
+ "single_word": false,
1817
+ "special": true
1818
+ },
1819
+ "128227": {
1820
+ "content": "<|reserved_special_token_219|>",
1821
+ "lstrip": false,
1822
+ "normalized": false,
1823
+ "rstrip": false,
1824
+ "single_word": false,
1825
+ "special": true
1826
+ },
1827
+ "128228": {
1828
+ "content": "<|reserved_special_token_220|>",
1829
+ "lstrip": false,
1830
+ "normalized": false,
1831
+ "rstrip": false,
1832
+ "single_word": false,
1833
+ "special": true
1834
+ },
1835
+ "128229": {
1836
+ "content": "<|reserved_special_token_221|>",
1837
+ "lstrip": false,
1838
+ "normalized": false,
1839
+ "rstrip": false,
1840
+ "single_word": false,
1841
+ "special": true
1842
+ },
1843
+ "128230": {
1844
+ "content": "<|reserved_special_token_222|>",
1845
+ "lstrip": false,
1846
+ "normalized": false,
1847
+ "rstrip": false,
1848
+ "single_word": false,
1849
+ "special": true
1850
+ },
1851
+ "128231": {
1852
+ "content": "<|reserved_special_token_223|>",
1853
+ "lstrip": false,
1854
+ "normalized": false,
1855
+ "rstrip": false,
1856
+ "single_word": false,
1857
+ "special": true
1858
+ },
1859
+ "128232": {
1860
+ "content": "<|reserved_special_token_224|>",
1861
+ "lstrip": false,
1862
+ "normalized": false,
1863
+ "rstrip": false,
1864
+ "single_word": false,
1865
+ "special": true
1866
+ },
1867
+ "128233": {
1868
+ "content": "<|reserved_special_token_225|>",
1869
+ "lstrip": false,
1870
+ "normalized": false,
1871
+ "rstrip": false,
1872
+ "single_word": false,
1873
+ "special": true
1874
+ },
1875
+ "128234": {
1876
+ "content": "<|reserved_special_token_226|>",
1877
+ "lstrip": false,
1878
+ "normalized": false,
1879
+ "rstrip": false,
1880
+ "single_word": false,
1881
+ "special": true
1882
+ },
1883
+ "128235": {
1884
+ "content": "<|reserved_special_token_227|>",
1885
+ "lstrip": false,
1886
+ "normalized": false,
1887
+ "rstrip": false,
1888
+ "single_word": false,
1889
+ "special": true
1890
+ },
1891
+ "128236": {
1892
+ "content": "<|reserved_special_token_228|>",
1893
+ "lstrip": false,
1894
+ "normalized": false,
1895
+ "rstrip": false,
1896
+ "single_word": false,
1897
+ "special": true
1898
+ },
1899
+ "128237": {
1900
+ "content": "<|reserved_special_token_229|>",
1901
+ "lstrip": false,
1902
+ "normalized": false,
1903
+ "rstrip": false,
1904
+ "single_word": false,
1905
+ "special": true
1906
+ },
1907
+ "128238": {
1908
+ "content": "<|reserved_special_token_230|>",
1909
+ "lstrip": false,
1910
+ "normalized": false,
1911
+ "rstrip": false,
1912
+ "single_word": false,
1913
+ "special": true
1914
+ },
1915
+ "128239": {
1916
+ "content": "<|reserved_special_token_231|>",
1917
+ "lstrip": false,
1918
+ "normalized": false,
1919
+ "rstrip": false,
1920
+ "single_word": false,
1921
+ "special": true
1922
+ },
1923
+ "128240": {
1924
+ "content": "<|reserved_special_token_232|>",
1925
+ "lstrip": false,
1926
+ "normalized": false,
1927
+ "rstrip": false,
1928
+ "single_word": false,
1929
+ "special": true
1930
+ },
1931
+ "128241": {
1932
+ "content": "<|reserved_special_token_233|>",
1933
+ "lstrip": false,
1934
+ "normalized": false,
1935
+ "rstrip": false,
1936
+ "single_word": false,
1937
+ "special": true
1938
+ },
1939
+ "128242": {
1940
+ "content": "<|reserved_special_token_234|>",
1941
+ "lstrip": false,
1942
+ "normalized": false,
1943
+ "rstrip": false,
1944
+ "single_word": false,
1945
+ "special": true
1946
+ },
1947
+ "128243": {
1948
+ "content": "<|reserved_special_token_235|>",
1949
+ "lstrip": false,
1950
+ "normalized": false,
1951
+ "rstrip": false,
1952
+ "single_word": false,
1953
+ "special": true
1954
+ },
1955
+ "128244": {
1956
+ "content": "<|reserved_special_token_236|>",
1957
+ "lstrip": false,
1958
+ "normalized": false,
1959
+ "rstrip": false,
1960
+ "single_word": false,
1961
+ "special": true
1962
+ },
1963
+ "128245": {
1964
+ "content": "<|reserved_special_token_237|>",
1965
+ "lstrip": false,
1966
+ "normalized": false,
1967
+ "rstrip": false,
1968
+ "single_word": false,
1969
+ "special": true
1970
+ },
1971
+ "128246": {
1972
+ "content": "<|reserved_special_token_238|>",
1973
+ "lstrip": false,
1974
+ "normalized": false,
1975
+ "rstrip": false,
1976
+ "single_word": false,
1977
+ "special": true
1978
+ },
1979
+ "128247": {
1980
+ "content": "<|reserved_special_token_239|>",
1981
+ "lstrip": false,
1982
+ "normalized": false,
1983
+ "rstrip": false,
1984
+ "single_word": false,
1985
+ "special": true
1986
+ },
1987
+ "128248": {
1988
+ "content": "<|reserved_special_token_240|>",
1989
+ "lstrip": false,
1990
+ "normalized": false,
1991
+ "rstrip": false,
1992
+ "single_word": false,
1993
+ "special": true
1994
+ },
1995
+ "128249": {
1996
+ "content": "<|reserved_special_token_241|>",
1997
+ "lstrip": false,
1998
+ "normalized": false,
1999
+ "rstrip": false,
2000
+ "single_word": false,
2001
+ "special": true
2002
+ },
2003
+ "128250": {
2004
+ "content": "<|reserved_special_token_242|>",
2005
+ "lstrip": false,
2006
+ "normalized": false,
2007
+ "rstrip": false,
2008
+ "single_word": false,
2009
+ "special": true
2010
+ },
2011
+ "128251": {
2012
+ "content": "<|reserved_special_token_243|>",
2013
+ "lstrip": false,
2014
+ "normalized": false,
2015
+ "rstrip": false,
2016
+ "single_word": false,
2017
+ "special": true
2018
+ },
2019
+ "128252": {
2020
+ "content": "<|reserved_special_token_244|>",
2021
+ "lstrip": false,
2022
+ "normalized": false,
2023
+ "rstrip": false,
2024
+ "single_word": false,
2025
+ "special": true
2026
+ },
2027
+ "128253": {
2028
+ "content": "<|reserved_special_token_245|>",
2029
+ "lstrip": false,
2030
+ "normalized": false,
2031
+ "rstrip": false,
2032
+ "single_word": false,
2033
+ "special": true
2034
+ },
2035
+ "128254": {
2036
+ "content": "<|reserved_special_token_246|>",
2037
+ "lstrip": false,
2038
+ "normalized": false,
2039
+ "rstrip": false,
2040
+ "single_word": false,
2041
+ "special": true
2042
+ },
2043
+ "128255": {
2044
+ "content": "<|reserved_special_token_247|>",
2045
+ "lstrip": false,
2046
+ "normalized": false,
2047
+ "rstrip": false,
2048
+ "single_word": false,
2049
+ "special": true
2050
+ }
2051
+ },
2052
+ "bos_token": "<|begin_of_text|>",
2053
+ "chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message #}\n{{- \"<|start_header_id|>system<|end_header_id|>\\n\\n\" }}\n{%- if tools is not none %}\n {{- \"Environment: ipython\\n\" }}\n{%- endif %}\n{{- \"Cutting Knowledge Date: December 2023\\n\" }}\n{{- \"Today Date: \" + date_string + \"\\n\\n\" }}\n{%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n{%- endif %}\n{{- system_message }}\n{{- \"<|eot_id|>\" }}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|start_header_id|>user<|end_header_id|>\\n\\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\\n\\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot_id|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\\n\\n'+ message['content'] | trim + '<|eot_id|>' }}\n {%- elif 'tool_calls' in message %}\n {%- if not message.tool_calls|length == 1 %}\n {{- raise_exception(\"This model only supports single tool-calls at once!\") }}\n {%- endif %}\n {%- set tool_call = message.tool_calls[0].function %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {{- \"<|eot_id|>\" }}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|start_header_id|>ipython<|end_header_id|>\\n\\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' }}\n{%- endif %}\n",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|eot_id|>",
2063
+ "tokenizer_class": "PreTrainedTokenizerFast"
2064
+ }
checkpoint-14400/trainer_state.json ADDED
@@ -0,0 +1,1426 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.24999565979757296,
5
+ "eval_steps": 1000,
6
+ "global_step": 14400,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 1.736080970816479e-05,
13
+ "grad_norm": 10.5625,
14
+ "learning_rate": 2e-06,
15
+ "loss": 1.0,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.001736080970816479,
20
+ "grad_norm": 0.1513671875,
21
+ "learning_rate": 0.0002,
22
+ "loss": 0.3311,
23
+ "step": 100
24
+ },
25
+ {
26
+ "epoch": 0.003472161941632958,
27
+ "grad_norm": 0.16796875,
28
+ "learning_rate": 0.0004,
29
+ "loss": 0.2169,
30
+ "step": 200
31
+ },
32
+ {
33
+ "epoch": 0.005208242912449436,
34
+ "grad_norm": 0.10400390625,
35
+ "learning_rate": 0.0006,
36
+ "loss": 0.2032,
37
+ "step": 300
38
+ },
39
+ {
40
+ "epoch": 0.006944323883265916,
41
+ "grad_norm": 0.11279296875,
42
+ "learning_rate": 0.0008,
43
+ "loss": 0.188,
44
+ "step": 400
45
+ },
46
+ {
47
+ "epoch": 0.008680404854082394,
48
+ "grad_norm": 0.10107421875,
49
+ "learning_rate": 0.001,
50
+ "loss": 0.1758,
51
+ "step": 500
52
+ },
53
+ {
54
+ "epoch": 0.010416485824898873,
55
+ "grad_norm": 0.09521484375,
56
+ "learning_rate": 0.0012,
57
+ "loss": 0.1637,
58
+ "step": 600
59
+ },
60
+ {
61
+ "epoch": 0.012152566795715351,
62
+ "grad_norm": 0.08154296875,
63
+ "learning_rate": 0.0014,
64
+ "loss": 0.1518,
65
+ "step": 700
66
+ },
67
+ {
68
+ "epoch": 0.013888647766531832,
69
+ "grad_norm": 0.08642578125,
70
+ "learning_rate": 0.0016,
71
+ "loss": 0.1485,
72
+ "step": 800
73
+ },
74
+ {
75
+ "epoch": 0.01562472873734831,
76
+ "grad_norm": 0.1044921875,
77
+ "learning_rate": 0.0018000000000000002,
78
+ "loss": 0.1433,
79
+ "step": 900
80
+ },
81
+ {
82
+ "epoch": 0.01736080970816479,
83
+ "grad_norm": 0.05419921875,
84
+ "learning_rate": 0.002,
85
+ "loss": 0.139,
86
+ "step": 1000
87
+ },
88
+ {
89
+ "epoch": 0.01736080970816479,
90
+ "eval_covost2-en-de_loss": 1.896493673324585,
91
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
92
+ "eval_covost2-en-de_runtime": 9.8697,
93
+ "eval_covost2-en-de_samples_per_second": 6.485,
94
+ "eval_covost2-en-de_steps_per_second": 0.811,
95
+ "step": 1000
96
+ },
97
+ {
98
+ "epoch": 0.01736080970816479,
99
+ "eval_covost2-zh-en_loss": 3.1452860832214355,
100
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
101
+ "eval_covost2-zh-en_runtime": 8.3732,
102
+ "eval_covost2-zh-en_samples_per_second": 7.643,
103
+ "eval_covost2-zh-en_steps_per_second": 0.955,
104
+ "step": 1000
105
+ },
106
+ {
107
+ "epoch": 0.01736080970816479,
108
+ "eval_peoplespeech-clean-transcription_loss": 3.2206106185913086,
109
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
110
+ "eval_peoplespeech-clean-transcription_runtime": 9.6941,
111
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.602,
112
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.825,
113
+ "step": 1000
114
+ },
115
+ {
116
+ "epoch": 0.01909689067898127,
117
+ "grad_norm": 0.059814453125,
118
+ "learning_rate": 0.001999725185109816,
119
+ "loss": 0.1334,
120
+ "step": 1100
121
+ },
122
+ {
123
+ "epoch": 0.020832971649797746,
124
+ "grad_norm": 0.07373046875,
125
+ "learning_rate": 0.0019989008914857113,
126
+ "loss": 0.1288,
127
+ "step": 1200
128
+ },
129
+ {
130
+ "epoch": 0.022569052620614226,
131
+ "grad_norm": 0.049560546875,
132
+ "learning_rate": 0.00199752757218401,
133
+ "loss": 0.1262,
134
+ "step": 1300
135
+ },
136
+ {
137
+ "epoch": 0.024305133591430703,
138
+ "grad_norm": 0.0517578125,
139
+ "learning_rate": 0.001995605982021898,
140
+ "loss": 0.1222,
141
+ "step": 1400
142
+ },
143
+ {
144
+ "epoch": 0.026041214562247183,
145
+ "grad_norm": 0.058349609375,
146
+ "learning_rate": 0.0019931371771625545,
147
+ "loss": 0.1193,
148
+ "step": 1500
149
+ },
150
+ {
151
+ "epoch": 0.027777295533063663,
152
+ "grad_norm": 0.0498046875,
153
+ "learning_rate": 0.001990122514534651,
154
+ "loss": 0.1196,
155
+ "step": 1600
156
+ },
157
+ {
158
+ "epoch": 0.02951337650388014,
159
+ "grad_norm": 0.05517578125,
160
+ "learning_rate": 0.0019865636510865464,
161
+ "loss": 0.115,
162
+ "step": 1700
163
+ },
164
+ {
165
+ "epoch": 0.03124945747469662,
166
+ "grad_norm": 0.044677734375,
167
+ "learning_rate": 0.001982462542875576,
168
+ "loss": 0.115,
169
+ "step": 1800
170
+ },
171
+ {
172
+ "epoch": 0.0329855384455131,
173
+ "grad_norm": 0.05419921875,
174
+ "learning_rate": 0.001977821443992945,
175
+ "loss": 0.1125,
176
+ "step": 1900
177
+ },
178
+ {
179
+ "epoch": 0.03472161941632958,
180
+ "grad_norm": 0.047119140625,
181
+ "learning_rate": 0.001972642905324813,
182
+ "loss": 0.1094,
183
+ "step": 2000
184
+ },
185
+ {
186
+ "epoch": 0.03472161941632958,
187
+ "eval_covost2-en-de_loss": 1.6700351238250732,
188
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
189
+ "eval_covost2-en-de_runtime": 8.1279,
190
+ "eval_covost2-en-de_samples_per_second": 7.874,
191
+ "eval_covost2-en-de_steps_per_second": 0.984,
192
+ "step": 2000
193
+ },
194
+ {
195
+ "epoch": 0.03472161941632958,
196
+ "eval_covost2-zh-en_loss": 3.093877077102661,
197
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
198
+ "eval_covost2-zh-en_runtime": 8.1488,
199
+ "eval_covost2-zh-en_samples_per_second": 7.854,
200
+ "eval_covost2-zh-en_steps_per_second": 0.982,
201
+ "step": 2000
202
+ },
203
+ {
204
+ "epoch": 0.03472161941632958,
205
+ "eval_peoplespeech-clean-transcription_loss": 2.478968620300293,
206
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
207
+ "eval_peoplespeech-clean-transcription_runtime": 9.5507,
208
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.701,
209
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.838,
210
+ "step": 2000
211
+ },
212
+ {
213
+ "epoch": 0.036457700387146054,
214
+ "grad_norm": 0.048583984375,
215
+ "learning_rate": 0.0019669297731502505,
216
+ "loss": 0.1077,
217
+ "step": 2100
218
+ },
219
+ {
220
+ "epoch": 0.03819378135796254,
221
+ "grad_norm": 0.054443359375,
222
+ "learning_rate": 0.00196068518757684,
223
+ "loss": 0.1069,
224
+ "step": 2200
225
+ },
226
+ {
227
+ "epoch": 0.039929862328779014,
228
+ "grad_norm": 0.047119140625,
229
+ "learning_rate": 0.001953912580814779,
230
+ "loss": 0.1043,
231
+ "step": 2300
232
+ },
233
+ {
234
+ "epoch": 0.04166594329959549,
235
+ "grad_norm": 0.044921875,
236
+ "learning_rate": 0.0019466156752904343,
237
+ "loss": 0.1035,
238
+ "step": 2400
239
+ },
240
+ {
241
+ "epoch": 0.043402024270411975,
242
+ "grad_norm": 0.050537109375,
243
+ "learning_rate": 0.0019387984816003866,
244
+ "loss": 0.1033,
245
+ "step": 2500
246
+ },
247
+ {
248
+ "epoch": 0.04513810524122845,
249
+ "grad_norm": 0.056396484375,
250
+ "learning_rate": 0.0019304652963070869,
251
+ "loss": 0.102,
252
+ "step": 2600
253
+ },
254
+ {
255
+ "epoch": 0.04687418621204493,
256
+ "grad_norm": 0.046875,
257
+ "learning_rate": 0.0019216206995773372,
258
+ "loss": 0.0998,
259
+ "step": 2700
260
+ },
261
+ {
262
+ "epoch": 0.048610267182861405,
263
+ "grad_norm": 0.042236328125,
264
+ "learning_rate": 0.0019122695526648968,
265
+ "loss": 0.1002,
266
+ "step": 2800
267
+ },
268
+ {
269
+ "epoch": 0.05034634815367789,
270
+ "grad_norm": 0.04638671875,
271
+ "learning_rate": 0.0019024169952385887,
272
+ "loss": 0.0978,
273
+ "step": 2900
274
+ },
275
+ {
276
+ "epoch": 0.052082429124494366,
277
+ "grad_norm": 0.05126953125,
278
+ "learning_rate": 0.0018920684425573864,
279
+ "loss": 0.097,
280
+ "step": 3000
281
+ },
282
+ {
283
+ "epoch": 0.052082429124494366,
284
+ "eval_covost2-en-de_loss": 1.749150276184082,
285
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
286
+ "eval_covost2-en-de_runtime": 8.1948,
287
+ "eval_covost2-en-de_samples_per_second": 7.81,
288
+ "eval_covost2-en-de_steps_per_second": 0.976,
289
+ "step": 3000
290
+ },
291
+ {
292
+ "epoch": 0.052082429124494366,
293
+ "eval_covost2-zh-en_loss": 3.198117971420288,
294
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
295
+ "eval_covost2-zh-en_runtime": 8.1979,
296
+ "eval_covost2-zh-en_samples_per_second": 7.807,
297
+ "eval_covost2-zh-en_steps_per_second": 0.976,
298
+ "step": 3000
299
+ },
300
+ {
301
+ "epoch": 0.052082429124494366,
302
+ "eval_peoplespeech-clean-transcription_loss": 2.345036506652832,
303
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
304
+ "eval_peoplespeech-clean-transcription_runtime": 11.4402,
305
+ "eval_peoplespeech-clean-transcription_samples_per_second": 5.594,
306
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.699,
307
+ "step": 3000
308
+ },
309
+ {
310
+ "epoch": 0.05381851009531084,
311
+ "grad_norm": 0.06494140625,
312
+ "learning_rate": 0.0018812295824940284,
313
+ "loss": 0.0955,
314
+ "step": 3100
315
+ },
316
+ {
317
+ "epoch": 0.055554591066127326,
318
+ "grad_norm": 0.044677734375,
319
+ "learning_rate": 0.0018699063724087904,
320
+ "loss": 0.0951,
321
+ "step": 3200
322
+ },
323
+ {
324
+ "epoch": 0.0572906720369438,
325
+ "grad_norm": 0.0390625,
326
+ "learning_rate": 0.0018581050358751443,
327
+ "loss": 0.0947,
328
+ "step": 3300
329
+ },
330
+ {
331
+ "epoch": 0.05902675300776028,
332
+ "grad_norm": 0.056396484375,
333
+ "learning_rate": 0.0018458320592590974,
334
+ "loss": 0.0939,
335
+ "step": 3400
336
+ },
337
+ {
338
+ "epoch": 0.060762833978576763,
339
+ "grad_norm": 0.047119140625,
340
+ "learning_rate": 0.0018330941881540914,
341
+ "loss": 0.0941,
342
+ "step": 3500
343
+ },
344
+ {
345
+ "epoch": 0.06249891494939324,
346
+ "grad_norm": 0.046630859375,
347
+ "learning_rate": 0.0018198984236734246,
348
+ "loss": 0.0927,
349
+ "step": 3600
350
+ },
351
+ {
352
+ "epoch": 0.06423499592020972,
353
+ "grad_norm": 0.055419921875,
354
+ "learning_rate": 0.0018062520186022297,
355
+ "loss": 0.0948,
356
+ "step": 3700
357
+ },
358
+ {
359
+ "epoch": 0.0659710768910262,
360
+ "grad_norm": 0.046142578125,
361
+ "learning_rate": 0.0017921624734111292,
362
+ "loss": 0.09,
363
+ "step": 3800
364
+ },
365
+ {
366
+ "epoch": 0.06770715786184267,
367
+ "grad_norm": 0.04736328125,
368
+ "learning_rate": 0.001777637532133752,
369
+ "loss": 0.0926,
370
+ "step": 3900
371
+ },
372
+ {
373
+ "epoch": 0.06944323883265915,
374
+ "grad_norm": 0.048828125,
375
+ "learning_rate": 0.0017626851781103819,
376
+ "loss": 0.0906,
377
+ "step": 4000
378
+ },
379
+ {
380
+ "epoch": 0.06944323883265915,
381
+ "eval_covost2-en-de_loss": 1.7936017513275146,
382
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
383
+ "eval_covost2-en-de_runtime": 8.0356,
384
+ "eval_covost2-en-de_samples_per_second": 7.965,
385
+ "eval_covost2-en-de_steps_per_second": 0.996,
386
+ "step": 4000
387
+ },
388
+ {
389
+ "epoch": 0.06944323883265915,
390
+ "eval_covost2-zh-en_loss": 3.2699265480041504,
391
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
392
+ "eval_covost2-zh-en_runtime": 9.5779,
393
+ "eval_covost2-zh-en_samples_per_second": 6.682,
394
+ "eval_covost2-zh-en_steps_per_second": 0.835,
395
+ "step": 4000
396
+ },
397
+ {
398
+ "epoch": 0.06944323883265915,
399
+ "eval_peoplespeech-clean-transcription_loss": 2.3380110263824463,
400
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
401
+ "eval_peoplespeech-clean-transcription_runtime": 9.5943,
402
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.671,
403
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.834,
404
+ "step": 4000
405
+ },
406
+ {
407
+ "epoch": 0.07117931980347564,
408
+ "grad_norm": 0.041259765625,
409
+ "learning_rate": 0.001747313629600077,
410
+ "loss": 0.0926,
411
+ "step": 4100
412
+ },
413
+ {
414
+ "epoch": 0.07291540077429211,
415
+ "grad_norm": 0.05322265625,
416
+ "learning_rate": 0.001731531335263669,
417
+ "loss": 0.0907,
418
+ "step": 4200
419
+ },
420
+ {
421
+ "epoch": 0.07465148174510859,
422
+ "grad_norm": 0.05126953125,
423
+ "learning_rate": 0.0017153469695201276,
424
+ "loss": 0.0898,
425
+ "step": 4300
426
+ },
427
+ {
428
+ "epoch": 0.07638756271592508,
429
+ "grad_norm": 0.061767578125,
430
+ "learning_rate": 0.0016987694277788418,
431
+ "loss": 0.0876,
432
+ "step": 4400
433
+ },
434
+ {
435
+ "epoch": 0.07812364368674155,
436
+ "grad_norm": 0.042724609375,
437
+ "learning_rate": 0.001681807821550438,
438
+ "loss": 0.0874,
439
+ "step": 4500
440
+ },
441
+ {
442
+ "epoch": 0.07985972465755803,
443
+ "grad_norm": 0.05126953125,
444
+ "learning_rate": 0.0016644714734388218,
445
+ "loss": 0.0865,
446
+ "step": 4600
447
+ },
448
+ {
449
+ "epoch": 0.08159580562837451,
450
+ "grad_norm": 0.042724609375,
451
+ "learning_rate": 0.0016467699120171987,
452
+ "loss": 0.0866,
453
+ "step": 4700
454
+ },
455
+ {
456
+ "epoch": 0.08333188659919098,
457
+ "grad_norm": 0.0419921875,
458
+ "learning_rate": 0.001628712866590885,
459
+ "loss": 0.0864,
460
+ "step": 4800
461
+ },
462
+ {
463
+ "epoch": 0.08506796757000747,
464
+ "grad_norm": 0.051513671875,
465
+ "learning_rate": 0.0016103102618497923,
466
+ "loss": 0.0862,
467
+ "step": 4900
468
+ },
469
+ {
470
+ "epoch": 0.08680404854082395,
471
+ "grad_norm": 0.052734375,
472
+ "learning_rate": 0.0015915722124135226,
473
+ "loss": 0.0855,
474
+ "step": 5000
475
+ },
476
+ {
477
+ "epoch": 0.08680404854082395,
478
+ "eval_covost2-en-de_loss": 1.7862941026687622,
479
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
480
+ "eval_covost2-en-de_runtime": 8.2861,
481
+ "eval_covost2-en-de_samples_per_second": 7.724,
482
+ "eval_covost2-en-de_steps_per_second": 0.965,
483
+ "step": 5000
484
+ },
485
+ {
486
+ "epoch": 0.08680404854082395,
487
+ "eval_covost2-zh-en_loss": 3.33290433883667,
488
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
489
+ "eval_covost2-zh-en_runtime": 8.4063,
490
+ "eval_covost2-zh-en_samples_per_second": 7.613,
491
+ "eval_covost2-zh-en_steps_per_second": 0.952,
492
+ "step": 5000
493
+ },
494
+ {
495
+ "epoch": 0.08680404854082395,
496
+ "eval_peoplespeech-clean-transcription_loss": 2.2601113319396973,
497
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
498
+ "eval_peoplespeech-clean-transcription_runtime": 9.4946,
499
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.741,
500
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.843,
501
+ "step": 5000
502
+ },
503
+ {
504
+ "epoch": 0.08854012951164042,
505
+ "grad_norm": 0.053466796875,
506
+ "learning_rate": 0.001572509017272072,
507
+ "loss": 0.0872,
508
+ "step": 5100
509
+ },
510
+ {
511
+ "epoch": 0.0902762104824569,
512
+ "grad_norm": 0.044189453125,
513
+ "learning_rate": 0.0015531311541251993,
514
+ "loss": 0.0859,
515
+ "step": 5200
516
+ },
517
+ {
518
+ "epoch": 0.09201229145327339,
519
+ "grad_norm": 0.052978515625,
520
+ "learning_rate": 0.0015334492736235703,
521
+ "loss": 0.085,
522
+ "step": 5300
523
+ },
524
+ {
525
+ "epoch": 0.09374837242408986,
526
+ "grad_norm": 0.04833984375,
527
+ "learning_rate": 0.0015134741935148419,
528
+ "loss": 0.0844,
529
+ "step": 5400
530
+ },
531
+ {
532
+ "epoch": 0.09548445339490634,
533
+ "grad_norm": 0.047119140625,
534
+ "learning_rate": 0.0014932168926979072,
535
+ "loss": 0.0844,
536
+ "step": 5500
537
+ },
538
+ {
539
+ "epoch": 0.09722053436572281,
540
+ "grad_norm": 0.05029296875,
541
+ "learning_rate": 0.0014726885051885652,
542
+ "loss": 0.0856,
543
+ "step": 5600
544
+ },
545
+ {
546
+ "epoch": 0.0989566153365393,
547
+ "grad_norm": 0.049560546875,
548
+ "learning_rate": 0.0014519003139999338,
549
+ "loss": 0.0841,
550
+ "step": 5700
551
+ },
552
+ {
553
+ "epoch": 0.10069269630735578,
554
+ "grad_norm": 0.056884765625,
555
+ "learning_rate": 0.0014308637449409706,
556
+ "loss": 0.0841,
557
+ "step": 5800
558
+ },
559
+ {
560
+ "epoch": 0.10242877727817225,
561
+ "grad_norm": 0.041015625,
562
+ "learning_rate": 0.0014095903603365066,
563
+ "loss": 0.0825,
564
+ "step": 5900
565
+ },
566
+ {
567
+ "epoch": 0.10416485824898873,
568
+ "grad_norm": 0.048583984375,
569
+ "learning_rate": 0.0013880918526722496,
570
+ "loss": 0.0828,
571
+ "step": 6000
572
+ },
573
+ {
574
+ "epoch": 0.10416485824898873,
575
+ "eval_covost2-en-de_loss": 1.8097732067108154,
576
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
577
+ "eval_covost2-en-de_runtime": 8.2052,
578
+ "eval_covost2-en-de_samples_per_second": 7.8,
579
+ "eval_covost2-en-de_steps_per_second": 0.975,
580
+ "step": 6000
581
+ },
582
+ {
583
+ "epoch": 0.10416485824898873,
584
+ "eval_covost2-zh-en_loss": 3.331326961517334,
585
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
586
+ "eval_covost2-zh-en_runtime": 8.2653,
587
+ "eval_covost2-zh-en_samples_per_second": 7.743,
588
+ "eval_covost2-zh-en_steps_per_second": 0.968,
589
+ "step": 6000
590
+ },
591
+ {
592
+ "epoch": 0.10416485824898873,
593
+ "eval_peoplespeech-clean-transcription_loss": 2.250232219696045,
594
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
595
+ "eval_peoplespeech-clean-transcription_runtime": 9.4708,
596
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.758,
597
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.845,
598
+ "step": 6000
599
+ },
600
+ {
601
+ "epoch": 0.10590093921980522,
602
+ "grad_norm": 0.04443359375,
603
+ "learning_rate": 0.0013663800381682463,
604
+ "loss": 0.0819,
605
+ "step": 6100
606
+ },
607
+ {
608
+ "epoch": 0.10763702019062169,
609
+ "grad_norm": 0.05419921875,
610
+ "learning_rate": 0.0013444668502843329,
611
+ "loss": 0.08,
612
+ "step": 6200
613
+ },
614
+ {
615
+ "epoch": 0.10937310116143817,
616
+ "grad_norm": 0.0478515625,
617
+ "learning_rate": 0.0013223643331611537,
618
+ "loss": 0.0805,
619
+ "step": 6300
620
+ },
621
+ {
622
+ "epoch": 0.11110918213225465,
623
+ "grad_norm": 0.051513671875,
624
+ "learning_rate": 0.001300084635000341,
625
+ "loss": 0.0799,
626
+ "step": 6400
627
+ },
628
+ {
629
+ "epoch": 0.11284526310307112,
630
+ "grad_norm": 0.0498046875,
631
+ "learning_rate": 0.0012776400013875004,
632
+ "loss": 0.0807,
633
+ "step": 6500
634
+ },
635
+ {
636
+ "epoch": 0.1145813440738876,
637
+ "grad_norm": 0.050537109375,
638
+ "learning_rate": 0.0012550427685616766,
639
+ "loss": 0.0799,
640
+ "step": 6600
641
+ },
642
+ {
643
+ "epoch": 0.11631742504470409,
644
+ "grad_norm": 0.05029296875,
645
+ "learning_rate": 0.0012323053566349834,
646
+ "loss": 0.0802,
647
+ "step": 6700
648
+ },
649
+ {
650
+ "epoch": 0.11805350601552056,
651
+ "grad_norm": 0.047119140625,
652
+ "learning_rate": 0.0012094402627661448,
653
+ "loss": 0.0796,
654
+ "step": 6800
655
+ },
656
+ {
657
+ "epoch": 0.11978958698633704,
658
+ "grad_norm": 0.044677734375,
659
+ "learning_rate": 0.0011864600542916813,
660
+ "loss": 0.0784,
661
+ "step": 6900
662
+ },
663
+ {
664
+ "epoch": 0.12152566795715353,
665
+ "grad_norm": 0.0478515625,
666
+ "learning_rate": 0.0011633773618185302,
667
+ "loss": 0.0808,
668
+ "step": 7000
669
+ },
670
+ {
671
+ "epoch": 0.12152566795715353,
672
+ "eval_covost2-en-de_loss": 1.7786378860473633,
673
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
674
+ "eval_covost2-en-de_runtime": 8.0291,
675
+ "eval_covost2-en-de_samples_per_second": 7.971,
676
+ "eval_covost2-en-de_steps_per_second": 0.996,
677
+ "step": 7000
678
+ },
679
+ {
680
+ "epoch": 0.12152566795715353,
681
+ "eval_covost2-zh-en_loss": 3.273571252822876,
682
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
683
+ "eval_covost2-zh-en_runtime": 8.3234,
684
+ "eval_covost2-zh-en_samples_per_second": 7.689,
685
+ "eval_covost2-zh-en_steps_per_second": 0.961,
686
+ "step": 7000
687
+ },
688
+ {
689
+ "epoch": 0.12152566795715353,
690
+ "eval_peoplespeech-clean-transcription_loss": 2.2290830612182617,
691
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
692
+ "eval_peoplespeech-clean-transcription_runtime": 9.7693,
693
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.551,
694
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.819,
695
+ "step": 7000
696
+ },
697
+ {
698
+ "epoch": 0.12326174892797,
699
+ "grad_norm": 0.0478515625,
700
+ "learning_rate": 0.0011402048722818862,
701
+ "loss": 0.0786,
702
+ "step": 7100
703
+ },
704
+ {
705
+ "epoch": 0.12499782989878648,
706
+ "grad_norm": 0.049560546875,
707
+ "learning_rate": 0.0011169553219720827,
708
+ "loss": 0.0795,
709
+ "step": 7200
710
+ },
711
+ {
712
+ "epoch": 0.12673391086960295,
713
+ "grad_norm": 0.04736328125,
714
+ "learning_rate": 0.001093641489534351,
715
+ "loss": 0.0787,
716
+ "step": 7300
717
+ },
718
+ {
719
+ "epoch": 0.12846999184041943,
720
+ "grad_norm": 0.054931640625,
721
+ "learning_rate": 0.001070276188945293,
722
+ "loss": 0.0784,
723
+ "step": 7400
724
+ },
725
+ {
726
+ "epoch": 0.13020607281123592,
727
+ "grad_norm": 0.0478515625,
728
+ "learning_rate": 0.00104687226246994,
729
+ "loss": 0.0787,
730
+ "step": 7500
731
+ },
732
+ {
733
+ "epoch": 0.1319421537820524,
734
+ "grad_norm": 0.048828125,
735
+ "learning_rate": 0.0010234425736032607,
736
+ "loss": 0.0788,
737
+ "step": 7600
738
+ },
739
+ {
740
+ "epoch": 0.13367823475286889,
741
+ "grad_norm": 0.058837890625,
742
+ "learning_rate": 0.001,
743
+ "loss": 0.0769,
744
+ "step": 7700
745
+ },
746
+ {
747
+ "epoch": 0.13541431572368534,
748
+ "grad_norm": 0.055908203125,
749
+ "learning_rate": 0.0009765574263967396,
750
+ "loss": 0.077,
751
+ "step": 7800
752
+ },
753
+ {
754
+ "epoch": 0.13715039669450182,
755
+ "grad_norm": 0.05322265625,
756
+ "learning_rate": 0.0009531277375300599,
757
+ "loss": 0.0764,
758
+ "step": 7900
759
+ },
760
+ {
761
+ "epoch": 0.1388864776653183,
762
+ "grad_norm": 0.04833984375,
763
+ "learning_rate": 0.0009297238110547074,
764
+ "loss": 0.0764,
765
+ "step": 8000
766
+ },
767
+ {
768
+ "epoch": 0.1388864776653183,
769
+ "eval_covost2-en-de_loss": 1.7951624393463135,
770
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
771
+ "eval_covost2-en-de_runtime": 8.1477,
772
+ "eval_covost2-en-de_samples_per_second": 7.855,
773
+ "eval_covost2-en-de_steps_per_second": 0.982,
774
+ "step": 8000
775
+ },
776
+ {
777
+ "epoch": 0.1388864776653183,
778
+ "eval_covost2-zh-en_loss": 3.301699161529541,
779
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
780
+ "eval_covost2-zh-en_runtime": 8.8691,
781
+ "eval_covost2-zh-en_samples_per_second": 7.216,
782
+ "eval_covost2-zh-en_steps_per_second": 0.902,
783
+ "step": 8000
784
+ },
785
+ {
786
+ "epoch": 0.1388864776653183,
787
+ "eval_peoplespeech-clean-transcription_loss": 2.1518499851226807,
788
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
789
+ "eval_peoplespeech-clean-transcription_runtime": 9.5239,
790
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.72,
791
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.84,
792
+ "step": 8000
793
+ },
794
+ {
795
+ "epoch": 0.1406225586361348,
796
+ "grad_norm": 0.053955078125,
797
+ "learning_rate": 0.0009063585104656494,
798
+ "loss": 0.0762,
799
+ "step": 8100
800
+ },
801
+ {
802
+ "epoch": 0.14235863960695128,
803
+ "grad_norm": 0.0654296875,
804
+ "learning_rate": 0.0008830446780279176,
805
+ "loss": 0.0769,
806
+ "step": 8200
807
+ },
808
+ {
809
+ "epoch": 0.14409472057776776,
810
+ "grad_norm": 0.046875,
811
+ "learning_rate": 0.0008597951277181142,
812
+ "loss": 0.0751,
813
+ "step": 8300
814
+ },
815
+ {
816
+ "epoch": 0.14583080154858422,
817
+ "grad_norm": 0.054443359375,
818
+ "learning_rate": 0.0008366226381814697,
819
+ "loss": 0.0765,
820
+ "step": 8400
821
+ },
822
+ {
823
+ "epoch": 0.1475668825194007,
824
+ "grad_norm": 0.052490234375,
825
+ "learning_rate": 0.000813539945708319,
826
+ "loss": 0.0763,
827
+ "step": 8500
828
+ },
829
+ {
830
+ "epoch": 0.14930296349021718,
831
+ "grad_norm": 0.068359375,
832
+ "learning_rate": 0.0007905597372338558,
833
+ "loss": 0.0744,
834
+ "step": 8600
835
+ },
836
+ {
837
+ "epoch": 0.15103904446103367,
838
+ "grad_norm": 0.055908203125,
839
+ "learning_rate": 0.0007676946433650169,
840
+ "loss": 0.0737,
841
+ "step": 8700
842
+ },
843
+ {
844
+ "epoch": 0.15277512543185015,
845
+ "grad_norm": 0.055908203125,
846
+ "learning_rate": 0.0007449572314383236,
847
+ "loss": 0.0758,
848
+ "step": 8800
849
+ },
850
+ {
851
+ "epoch": 0.1545112064026666,
852
+ "grad_norm": 0.051513671875,
853
+ "learning_rate": 0.0007223599986124993,
854
+ "loss": 0.0753,
855
+ "step": 8900
856
+ },
857
+ {
858
+ "epoch": 0.1562472873734831,
859
+ "grad_norm": 0.05517578125,
860
+ "learning_rate": 0.0006999153649996595,
861
+ "loss": 0.0736,
862
+ "step": 9000
863
+ },
864
+ {
865
+ "epoch": 0.1562472873734831,
866
+ "eval_covost2-en-de_loss": 1.7736568450927734,
867
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
868
+ "eval_covost2-en-de_runtime": 8.2798,
869
+ "eval_covost2-en-de_samples_per_second": 7.73,
870
+ "eval_covost2-en-de_steps_per_second": 0.966,
871
+ "step": 9000
872
+ },
873
+ {
874
+ "epoch": 0.1562472873734831,
875
+ "eval_covost2-zh-en_loss": 3.2736916542053223,
876
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
877
+ "eval_covost2-zh-en_runtime": 8.6328,
878
+ "eval_covost2-zh-en_samples_per_second": 7.414,
879
+ "eval_covost2-zh-en_steps_per_second": 0.927,
880
+ "step": 9000
881
+ },
882
+ {
883
+ "epoch": 0.1562472873734831,
884
+ "eval_peoplespeech-clean-transcription_loss": 2.169971227645874,
885
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
886
+ "eval_peoplespeech-clean-transcription_runtime": 10.7684,
887
+ "eval_peoplespeech-clean-transcription_samples_per_second": 5.943,
888
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.743,
889
+ "step": 9000
890
+ },
891
+ {
892
+ "epoch": 0.15798336834429957,
893
+ "grad_norm": 0.06201171875,
894
+ "learning_rate": 0.0006776356668388464,
895
+ "loss": 0.073,
896
+ "step": 9100
897
+ },
898
+ {
899
+ "epoch": 0.15971944931511606,
900
+ "grad_norm": 0.0654296875,
901
+ "learning_rate": 0.0006555331497156671,
902
+ "loss": 0.0753,
903
+ "step": 9200
904
+ },
905
+ {
906
+ "epoch": 0.16145553028593254,
907
+ "grad_norm": 0.056640625,
908
+ "learning_rate": 0.0006336199618317538,
909
+ "loss": 0.0754,
910
+ "step": 9300
911
+ },
912
+ {
913
+ "epoch": 0.16319161125674903,
914
+ "grad_norm": 0.06005859375,
915
+ "learning_rate": 0.0006119081473277501,
916
+ "loss": 0.0736,
917
+ "step": 9400
918
+ },
919
+ {
920
+ "epoch": 0.16492769222756548,
921
+ "grad_norm": 0.059326171875,
922
+ "learning_rate": 0.0005904096396634935,
923
+ "loss": 0.0721,
924
+ "step": 9500
925
+ },
926
+ {
927
+ "epoch": 0.16666377319838196,
928
+ "grad_norm": 0.06201171875,
929
+ "learning_rate": 0.0005691362550590297,
930
+ "loss": 0.0717,
931
+ "step": 9600
932
+ },
933
+ {
934
+ "epoch": 0.16839985416919845,
935
+ "grad_norm": 0.051025390625,
936
+ "learning_rate": 0.0005480996860000663,
937
+ "loss": 0.0738,
938
+ "step": 9700
939
+ },
940
+ {
941
+ "epoch": 0.17013593514001493,
942
+ "grad_norm": 0.06494140625,
943
+ "learning_rate": 0.0005273114948114346,
944
+ "loss": 0.0737,
945
+ "step": 9800
946
+ },
947
+ {
948
+ "epoch": 0.17187201611083142,
949
+ "grad_norm": 0.058837890625,
950
+ "learning_rate": 0.0005067831073020928,
951
+ "loss": 0.0711,
952
+ "step": 9900
953
+ },
954
+ {
955
+ "epoch": 0.1736080970816479,
956
+ "grad_norm": 0.050537109375,
957
+ "learning_rate": 0.00048652580648515787,
958
+ "loss": 0.0722,
959
+ "step": 10000
960
+ },
961
+ {
962
+ "epoch": 0.1736080970816479,
963
+ "eval_covost2-en-de_loss": 1.768043875694275,
964
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
965
+ "eval_covost2-en-de_runtime": 8.2025,
966
+ "eval_covost2-en-de_samples_per_second": 7.802,
967
+ "eval_covost2-en-de_steps_per_second": 0.975,
968
+ "step": 10000
969
+ },
970
+ {
971
+ "epoch": 0.1736080970816479,
972
+ "eval_covost2-zh-en_loss": 3.288457155227661,
973
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
974
+ "eval_covost2-zh-en_runtime": 8.5315,
975
+ "eval_covost2-zh-en_samples_per_second": 7.502,
976
+ "eval_covost2-zh-en_steps_per_second": 0.938,
977
+ "step": 10000
978
+ },
979
+ {
980
+ "epoch": 0.1736080970816479,
981
+ "eval_peoplespeech-clean-transcription_loss": 2.099651336669922,
982
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
983
+ "eval_peoplespeech-clean-transcription_runtime": 9.7081,
984
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.592,
985
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.824,
986
+ "step": 10000
987
+ },
988
+ {
989
+ "epoch": 0.17534417805246436,
990
+ "grad_norm": 0.059326171875,
991
+ "learning_rate": 0.0004665507263764299,
992
+ "loss": 0.0717,
993
+ "step": 10100
994
+ },
995
+ {
996
+ "epoch": 0.17708025902328084,
997
+ "grad_norm": 0.06103515625,
998
+ "learning_rate": 0.0004468688458748006,
999
+ "loss": 0.0729,
1000
+ "step": 10200
1001
+ },
1002
+ {
1003
+ "epoch": 0.17881633999409732,
1004
+ "grad_norm": 0.051513671875,
1005
+ "learning_rate": 0.0004274909827279283,
1006
+ "loss": 0.0711,
1007
+ "step": 10300
1008
+ },
1009
+ {
1010
+ "epoch": 0.1805524209649138,
1011
+ "grad_norm": 0.059326171875,
1012
+ "learning_rate": 0.0004084277875864776,
1013
+ "loss": 0.0712,
1014
+ "step": 10400
1015
+ },
1016
+ {
1017
+ "epoch": 0.1822885019357303,
1018
+ "grad_norm": 0.062255859375,
1019
+ "learning_rate": 0.00038968973815020803,
1020
+ "loss": 0.0708,
1021
+ "step": 10500
1022
+ },
1023
+ {
1024
+ "epoch": 0.18402458290654677,
1025
+ "grad_norm": 0.06640625,
1026
+ "learning_rate": 0.00037128713340911534,
1027
+ "loss": 0.0716,
1028
+ "step": 10600
1029
+ },
1030
+ {
1031
+ "epoch": 0.18576066387736323,
1032
+ "grad_norm": 0.0517578125,
1033
+ "learning_rate": 0.00035323008798280133,
1034
+ "loss": 0.0728,
1035
+ "step": 10700
1036
+ },
1037
+ {
1038
+ "epoch": 0.1874967448481797,
1039
+ "grad_norm": 0.076171875,
1040
+ "learning_rate": 0.00033552852656117837,
1041
+ "loss": 0.0711,
1042
+ "step": 10800
1043
+ },
1044
+ {
1045
+ "epoch": 0.1892328258189962,
1046
+ "grad_norm": 0.06494140625,
1047
+ "learning_rate": 0.00031819217844956217,
1048
+ "loss": 0.0701,
1049
+ "step": 10900
1050
+ },
1051
+ {
1052
+ "epoch": 0.19096890678981268,
1053
+ "grad_norm": 0.054443359375,
1054
+ "learning_rate": 0.00030123057222115836,
1055
+ "loss": 0.0705,
1056
+ "step": 11000
1057
+ },
1058
+ {
1059
+ "epoch": 0.19096890678981268,
1060
+ "eval_covost2-en-de_loss": 1.7685788869857788,
1061
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
1062
+ "eval_covost2-en-de_runtime": 8.4174,
1063
+ "eval_covost2-en-de_samples_per_second": 7.603,
1064
+ "eval_covost2-en-de_steps_per_second": 0.95,
1065
+ "step": 11000
1066
+ },
1067
+ {
1068
+ "epoch": 0.19096890678981268,
1069
+ "eval_covost2-zh-en_loss": 3.286205530166626,
1070
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
1071
+ "eval_covost2-zh-en_runtime": 11.2405,
1072
+ "eval_covost2-zh-en_samples_per_second": 5.694,
1073
+ "eval_covost2-zh-en_steps_per_second": 0.712,
1074
+ "step": 11000
1075
+ },
1076
+ {
1077
+ "epoch": 0.19096890678981268,
1078
+ "eval_peoplespeech-clean-transcription_loss": 2.1252198219299316,
1079
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
1080
+ "eval_peoplespeech-clean-transcription_runtime": 9.3932,
1081
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.813,
1082
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.852,
1083
+ "step": 11000
1084
+ },
1085
+ {
1086
+ "epoch": 0.19270498776062917,
1087
+ "grad_norm": 0.076171875,
1088
+ "learning_rate": 0.0002846530304798727,
1089
+ "loss": 0.0709,
1090
+ "step": 11100
1091
+ },
1092
+ {
1093
+ "epoch": 0.19444106873144562,
1094
+ "grad_norm": 0.07275390625,
1095
+ "learning_rate": 0.00026846866473633125,
1096
+ "loss": 0.0717,
1097
+ "step": 11200
1098
+ },
1099
+ {
1100
+ "epoch": 0.1961771497022621,
1101
+ "grad_norm": 0.0498046875,
1102
+ "learning_rate": 0.00025268637039992293,
1103
+ "loss": 0.0699,
1104
+ "step": 11300
1105
+ },
1106
+ {
1107
+ "epoch": 0.1979132306730786,
1108
+ "grad_norm": 0.046875,
1109
+ "learning_rate": 0.00023731482188961818,
1110
+ "loss": 0.0712,
1111
+ "step": 11400
1112
+ },
1113
+ {
1114
+ "epoch": 0.19964931164389507,
1115
+ "grad_norm": 0.050048828125,
1116
+ "learning_rate": 0.00022236246786624792,
1117
+ "loss": 0.0714,
1118
+ "step": 11500
1119
+ },
1120
+ {
1121
+ "epoch": 0.20138539261471156,
1122
+ "grad_norm": 0.04931640625,
1123
+ "learning_rate": 0.00020783752658887068,
1124
+ "loss": 0.071,
1125
+ "step": 11600
1126
+ },
1127
+ {
1128
+ "epoch": 0.20312147358552804,
1129
+ "grad_norm": 0.06298828125,
1130
+ "learning_rate": 0.0001937479813977703,
1131
+ "loss": 0.0706,
1132
+ "step": 11700
1133
+ },
1134
+ {
1135
+ "epoch": 0.2048575545563445,
1136
+ "grad_norm": 0.05712890625,
1137
+ "learning_rate": 0.00018010157632657541,
1138
+ "loss": 0.07,
1139
+ "step": 11800
1140
+ },
1141
+ {
1142
+ "epoch": 0.20659363552716098,
1143
+ "grad_norm": 0.068359375,
1144
+ "learning_rate": 0.00016690581184590858,
1145
+ "loss": 0.0708,
1146
+ "step": 11900
1147
+ },
1148
+ {
1149
+ "epoch": 0.20832971649797746,
1150
+ "grad_norm": 0.05908203125,
1151
+ "learning_rate": 0.00015416794074090258,
1152
+ "loss": 0.069,
1153
+ "step": 12000
1154
+ },
1155
+ {
1156
+ "epoch": 0.20832971649797746,
1157
+ "eval_covost2-en-de_loss": 1.7618954181671143,
1158
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
1159
+ "eval_covost2-en-de_runtime": 8.2954,
1160
+ "eval_covost2-en-de_samples_per_second": 7.715,
1161
+ "eval_covost2-en-de_steps_per_second": 0.964,
1162
+ "step": 12000
1163
+ },
1164
+ {
1165
+ "epoch": 0.20832971649797746,
1166
+ "eval_covost2-zh-en_loss": 3.287311553955078,
1167
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
1168
+ "eval_covost2-zh-en_runtime": 8.0269,
1169
+ "eval_covost2-zh-en_samples_per_second": 7.973,
1170
+ "eval_covost2-zh-en_steps_per_second": 0.997,
1171
+ "step": 12000
1172
+ },
1173
+ {
1174
+ "epoch": 0.20832971649797746,
1175
+ "eval_peoplespeech-clean-transcription_loss": 2.119732141494751,
1176
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
1177
+ "eval_peoplespeech-clean-transcription_runtime": 9.4528,
1178
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.77,
1179
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.846,
1180
+ "step": 12000
1181
+ },
1182
+ {
1183
+ "epoch": 0.21006579746879395,
1184
+ "grad_norm": 0.059814453125,
1185
+ "learning_rate": 0.00014189496412485593,
1186
+ "loss": 0.0703,
1187
+ "step": 12100
1188
+ },
1189
+ {
1190
+ "epoch": 0.21180187843961043,
1191
+ "grad_norm": 0.053466796875,
1192
+ "learning_rate": 0.00013009362759120978,
1193
+ "loss": 0.0713,
1194
+ "step": 12200
1195
+ },
1196
+ {
1197
+ "epoch": 0.21353795941042691,
1198
+ "grad_norm": 0.0673828125,
1199
+ "learning_rate": 0.00011877041750597173,
1200
+ "loss": 0.0694,
1201
+ "step": 12300
1202
+ },
1203
+ {
1204
+ "epoch": 0.21527404038124337,
1205
+ "grad_norm": 0.060302734375,
1206
+ "learning_rate": 0.00010793155744261352,
1207
+ "loss": 0.07,
1208
+ "step": 12400
1209
+ },
1210
+ {
1211
+ "epoch": 0.21701012135205985,
1212
+ "grad_norm": 0.0390625,
1213
+ "learning_rate": 9.758300476141169e-05,
1214
+ "loss": 0.0675,
1215
+ "step": 12500
1216
+ },
1217
+ {
1218
+ "epoch": 0.21874620232287634,
1219
+ "grad_norm": 0.058349609375,
1220
+ "learning_rate": 8.773044733510338e-05,
1221
+ "loss": 0.0699,
1222
+ "step": 12600
1223
+ },
1224
+ {
1225
+ "epoch": 0.22048228329369282,
1226
+ "grad_norm": 0.04931640625,
1227
+ "learning_rate": 7.837930042266262e-05,
1228
+ "loss": 0.0708,
1229
+ "step": 12700
1230
+ },
1231
+ {
1232
+ "epoch": 0.2222183642645093,
1233
+ "grad_norm": 0.054931640625,
1234
+ "learning_rate": 6.953470369291348e-05,
1235
+ "loss": 0.0701,
1236
+ "step": 12800
1237
+ },
1238
+ {
1239
+ "epoch": 0.2239544452353258,
1240
+ "grad_norm": 0.0556640625,
1241
+ "learning_rate": 6.120151839961363e-05,
1242
+ "loss": 0.0703,
1243
+ "step": 12900
1244
+ },
1245
+ {
1246
+ "epoch": 0.22569052620614224,
1247
+ "grad_norm": 0.0654296875,
1248
+ "learning_rate": 5.338432470956589e-05,
1249
+ "loss": 0.0707,
1250
+ "step": 13000
1251
+ },
1252
+ {
1253
+ "epoch": 0.22569052620614224,
1254
+ "eval_covost2-en-de_loss": 1.7618814706802368,
1255
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
1256
+ "eval_covost2-en-de_runtime": 8.2896,
1257
+ "eval_covost2-en-de_samples_per_second": 7.721,
1258
+ "eval_covost2-en-de_steps_per_second": 0.965,
1259
+ "step": 13000
1260
+ },
1261
+ {
1262
+ "epoch": 0.22569052620614224,
1263
+ "eval_covost2-zh-en_loss": 3.287533760070801,
1264
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
1265
+ "eval_covost2-zh-en_runtime": 8.1323,
1266
+ "eval_covost2-zh-en_samples_per_second": 7.87,
1267
+ "eval_covost2-zh-en_steps_per_second": 0.984,
1268
+ "step": 13000
1269
+ },
1270
+ {
1271
+ "epoch": 0.22569052620614224,
1272
+ "eval_peoplespeech-clean-transcription_loss": 2.1182146072387695,
1273
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
1274
+ "eval_peoplespeech-clean-transcription_runtime": 9.6791,
1275
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.612,
1276
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.827,
1277
+ "step": 13000
1278
+ },
1279
+ {
1280
+ "epoch": 0.22742660717695873,
1281
+ "grad_norm": 0.056396484375,
1282
+ "learning_rate": 4.6087419185220966e-05,
1283
+ "loss": 0.0698,
1284
+ "step": 13100
1285
+ },
1286
+ {
1287
+ "epoch": 0.2291626881477752,
1288
+ "grad_norm": 0.0634765625,
1289
+ "learning_rate": 3.931481242315993e-05,
1290
+ "loss": 0.0709,
1291
+ "step": 13200
1292
+ },
1293
+ {
1294
+ "epoch": 0.2308987691185917,
1295
+ "grad_norm": 0.0625,
1296
+ "learning_rate": 3.307022684974936e-05,
1297
+ "loss": 0.071,
1298
+ "step": 13300
1299
+ },
1300
+ {
1301
+ "epoch": 0.23263485008940818,
1302
+ "grad_norm": 0.05712890625,
1303
+ "learning_rate": 2.7357094675186987e-05,
1304
+ "loss": 0.0704,
1305
+ "step": 13400
1306
+ },
1307
+ {
1308
+ "epoch": 0.23437093106022464,
1309
+ "grad_norm": 0.068359375,
1310
+ "learning_rate": 2.2178556007054874e-05,
1311
+ "loss": 0.0704,
1312
+ "step": 13500
1313
+ },
1314
+ {
1315
+ "epoch": 0.23610701203104112,
1316
+ "grad_norm": 0.05615234375,
1317
+ "learning_rate": 1.7537457124423894e-05,
1318
+ "loss": 0.0712,
1319
+ "step": 13600
1320
+ },
1321
+ {
1322
+ "epoch": 0.2378430930018576,
1323
+ "grad_norm": 0.07275390625,
1324
+ "learning_rate": 1.3436348913453578e-05,
1325
+ "loss": 0.0709,
1326
+ "step": 13700
1327
+ },
1328
+ {
1329
+ "epoch": 0.2395791739726741,
1330
+ "grad_norm": 0.05078125,
1331
+ "learning_rate": 9.877485465349056e-06,
1332
+ "loss": 0.0701,
1333
+ "step": 13800
1334
+ },
1335
+ {
1336
+ "epoch": 0.24131525494349057,
1337
+ "grad_norm": 0.053955078125,
1338
+ "learning_rate": 6.862822837445881e-06,
1339
+ "loss": 0.0708,
1340
+ "step": 13900
1341
+ },
1342
+ {
1343
+ "epoch": 0.24305133591430705,
1344
+ "grad_norm": 0.07275390625,
1345
+ "learning_rate": 4.394017978101905e-06,
1346
+ "loss": 0.0711,
1347
+ "step": 14000
1348
+ },
1349
+ {
1350
+ "epoch": 0.24305133591430705,
1351
+ "eval_covost2-en-de_loss": 1.762545108795166,
1352
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
1353
+ "eval_covost2-en-de_runtime": 7.89,
1354
+ "eval_covost2-en-de_samples_per_second": 8.111,
1355
+ "eval_covost2-en-de_steps_per_second": 1.014,
1356
+ "step": 14000
1357
+ },
1358
+ {
1359
+ "epoch": 0.24305133591430705,
1360
+ "eval_covost2-zh-en_loss": 3.2872180938720703,
1361
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
1362
+ "eval_covost2-zh-en_runtime": 8.1851,
1363
+ "eval_covost2-zh-en_samples_per_second": 7.819,
1364
+ "eval_covost2-zh-en_steps_per_second": 0.977,
1365
+ "step": 14000
1366
+ },
1367
+ {
1368
+ "epoch": 0.24305133591430705,
1369
+ "eval_peoplespeech-clean-transcription_loss": 2.116088628768921,
1370
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
1371
+ "eval_peoplespeech-clean-transcription_runtime": 9.4366,
1372
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.782,
1373
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.848,
1374
+ "step": 14000
1375
+ },
1376
+ {
1377
+ "epoch": 0.2447874168851235,
1378
+ "grad_norm": 0.059326171875,
1379
+ "learning_rate": 2.472427815989886e-06,
1380
+ "loss": 0.0705,
1381
+ "step": 14100
1382
+ },
1383
+ {
1384
+ "epoch": 0.24652349785594,
1385
+ "grad_norm": 0.03955078125,
1386
+ "learning_rate": 1.099108514288627e-06,
1387
+ "loss": 0.0703,
1388
+ "step": 14200
1389
+ },
1390
+ {
1391
+ "epoch": 0.24825957882675648,
1392
+ "grad_norm": 0.07763671875,
1393
+ "learning_rate": 2.748148901841052e-07,
1394
+ "loss": 0.0714,
1395
+ "step": 14300
1396
+ },
1397
+ {
1398
+ "epoch": 0.24999565979757296,
1399
+ "grad_norm": 0.0625,
1400
+ "learning_rate": 0.0,
1401
+ "loss": 0.0704,
1402
+ "step": 14400
1403
+ }
1404
+ ],
1405
+ "logging_steps": 100,
1406
+ "max_steps": 14400,
1407
+ "num_input_tokens_seen": 0,
1408
+ "num_train_epochs": 1,
1409
+ "save_steps": 3600,
1410
+ "stateful_callbacks": {
1411
+ "TrainerControl": {
1412
+ "args": {
1413
+ "should_epoch_stop": false,
1414
+ "should_evaluate": false,
1415
+ "should_log": false,
1416
+ "should_save": true,
1417
+ "should_training_stop": true
1418
+ },
1419
+ "attributes": {}
1420
+ }
1421
+ },
1422
+ "total_flos": 6.620180878885847e+17,
1423
+ "train_batch_size": 24,
1424
+ "trial_name": null,
1425
+ "trial_params": null
1426
+ }
checkpoint-14400/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c1fd9b1621955a41f9e58d5a3e2b2d6a70bd41f5404ebfa5cb0ca999c290090
3
+ size 5688
checkpoint-14400/ultravox_config.py ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dataclasses
2
+ from enum import Enum
3
+ from typing import Any, Dict, List, Optional
4
+
5
+ import transformers
6
+
7
+
8
+ @dataclasses.dataclass
9
+ class LoraConfigSimplified:
10
+ """
11
+ Low Rank Approximation (LoRA) configuration.
12
+
13
+ Used for language and audio models separately.
14
+ """
15
+
16
+ # The rank of the approximation
17
+ r: int = 0
18
+ lora_alpha: float = 8
19
+ target_modules: Optional[List[str]] = dataclasses.field(
20
+ default_factory=lambda: ["k_proj", "q_proj", "linear_k", "linear_q"]
21
+ )
22
+
23
+
24
+ class LossFunction(str, Enum):
25
+ CrossEntropy = "ce"
26
+ KL_Divergence = "kl"
27
+
28
+
29
+ @dataclasses.dataclass
30
+ class LossConfig:
31
+ loss_function: LossFunction = LossFunction.KL_Divergence
32
+ kl_temperature: float = 2.0
33
+
34
+ @property
35
+ def requires_alt_fields(self):
36
+ return self.loss_function == LossFunction.KL_Divergence
37
+
38
+
39
+ class UltravoxConfig(transformers.PretrainedConfig):
40
+ r"""
41
+ This is the configuration class to store the configuration of a [`UltravoxForConditionalGeneration`]. It is used to instantiate an
42
+ Ultravox model according to the specified arguments, defining the model architecture.
43
+
44
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
45
+ documentation from [`PretrainedConfig`] for more information.
46
+
47
+ Args:
48
+ audio_config (`Wav2Vec2Config`, *optional*):
49
+ Custom audio config or dict
50
+ text_config (`Union[AutoConfig, dict]`, *optional*):
51
+ The config object of the text backbone. Can be any of `LlamaConfig` or `MistralConfig`.
52
+ ignore_index (`int`, *optional*, defaults to -100):
53
+ The ignore index for the loss function.
54
+ audio_token_index (`int`, *optional*, defaults to 32000):
55
+ The audio token index to encode the audio prompt.
56
+ stack_factor (`int`, *optional*, defaults to 8):
57
+ Audio downsampling factor for the multimodal projector.
58
+ norm_init (`float`, *optional*, defaults to 0.4):
59
+ The initialization value for the layer normalization.
60
+ projector_act (`str`, *optional*, defaults to `"swiglu"`):
61
+ The activation function used by the multimodal projector.
62
+ text_model_lora_config (`LoraConfigSimplified`, *optional*):
63
+ The LoRA configuration for finetuning the text model.
64
+ audio_model_lora_config (`LoraConfigSimplified`, *optional*):
65
+ The LoRA configuration for finetuning the audio model.
66
+ audio_latency_block_size (`int`, *optional*, defaults to `None`):
67
+ The latency block size for simulating audio streaming.
68
+
69
+
70
+ Example:
71
+
72
+ ```python
73
+ >>> from transformers import UltravoxForConditionalGeneration, Wav2Vec2Config, UltravoxConfig, LlamaConfig
74
+
75
+ >>> # Initializing an audio encoder config
76
+ >>> audio_config = Wav2Vec2Config()
77
+
78
+ >>> # Initializing a Llama config
79
+ >>> text_config = LlamaConfig()
80
+
81
+ >>> # Initializing a default configuration
82
+ >>> configuration = UltravoxConfig(audio_config, text_config)
83
+
84
+ >>> # Initializing a completely untrained model from the configuration
85
+ >>> model = UltravoxForConditionalGeneration(configuration)
86
+
87
+ >>> # Accessing the model configuration
88
+ >>> configuration = model.config
89
+
90
+ >>> # Initialize a model from pretrained checkpoints and random projector weights
91
+ >>> config = UltravoxConfig(audio_model_id="facebook/wav2vec2-base-960h", text_model_id="meta-llama/Llama-2-7b-chat-hf")
92
+ ```"""
93
+
94
+ model_type = "ultravox"
95
+ is_composition = False
96
+
97
+ def __init__(
98
+ self,
99
+ audio_config: Optional[Dict[str, Any]] = None,
100
+ text_config: Optional[Dict[str, Any]] = None,
101
+ audio_model_id: Optional[str] = None,
102
+ text_model_id: Optional[str] = None,
103
+ ignore_index: int = -100,
104
+ hidden_size: int = 4096,
105
+ stack_factor: int = 8,
106
+ norm_init: float = 0.4,
107
+ projector_act: str = "swiglu",
108
+ text_model_lora_config: Optional[LoraConfigSimplified] = None,
109
+ audio_model_lora_config: Optional[LoraConfigSimplified] = None,
110
+ audio_latency_block_size: Optional[int] = None,
111
+ **kwargs,
112
+ ):
113
+ self.ignore_index = ignore_index
114
+
115
+ self.audio_model_id = audio_model_id
116
+ self.text_model_id = text_model_id
117
+
118
+ self.hidden_size = hidden_size
119
+ self.stack_factor = stack_factor
120
+ self.norm_init = norm_init
121
+ self.projector_act = projector_act
122
+
123
+ if text_model_id is not None:
124
+ self.text_config: transformers.LlamaConfig = (
125
+ transformers.AutoConfig.from_pretrained(text_model_id)
126
+ )
127
+ else:
128
+ text_config = text_config or {}
129
+ self.text_config = transformers.CONFIG_MAPPING[
130
+ text_config.get("model_type", "llama")
131
+ ](**text_config)
132
+
133
+ if audio_model_id is not None:
134
+ self.audio_config: transformers.PretrainedConfig = (
135
+ transformers.AutoConfig.from_pretrained(audio_model_id)
136
+ )
137
+ else:
138
+ audio_config = audio_config or {}
139
+ self.audio_config = transformers.CONFIG_MAPPING[
140
+ audio_config.get("model_type", "wav2vec2")
141
+ ](**audio_config)
142
+
143
+ self.text_model_lora_config = (
144
+ text_model_lora_config
145
+ if isinstance(text_model_lora_config, dict)
146
+ else dataclasses.asdict(text_model_lora_config or LoraConfigSimplified())
147
+ )
148
+ self.audio_model_lora_config = (
149
+ audio_model_lora_config
150
+ if isinstance(audio_model_lora_config, dict)
151
+ else dataclasses.asdict(audio_model_lora_config or LoraConfigSimplified())
152
+ )
153
+ self.audio_latency_block_size = audio_latency_block_size
154
+
155
+ self.vocab_size = self.text_config.vocab_size
156
+
157
+ self.initializer_range = self.text_config.initializer_range
158
+
159
+ super().__init__(**kwargs)
160
+
161
+ def to_diff_dict(self) -> Dict[str, Any]:
162
+ diff_dict = super().to_diff_dict()
163
+
164
+ # remove text_config and audio_config if text_model_id and audio_model_id are present
165
+ if self.text_model_id is not None:
166
+ diff_dict.pop("text_config", None)
167
+ if self.audio_model_id is not None:
168
+ diff_dict.pop("audio_config", None)
169
+
170
+ return diff_dict
checkpoint-14400/ultravox_model.py ADDED
@@ -0,0 +1,723 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ from typing import Any, Dict, Optional, Set, Tuple, Union
3
+
4
+ import peft
5
+ import torch
6
+ import torch.nn as nn
7
+ import torch.nn.functional as F
8
+ import transformers
9
+ import transformers.activations
10
+ import transformers.modeling_outputs
11
+ import transformers.models
12
+ from transformers.models.whisper import modeling_whisper as whisper
13
+
14
+ # We must use relative import in this directory to allow uploading to HF Hub
15
+ # Even "from . import X" pattern doesn't work (undocumented and unclear why)
16
+ from .ultravox_config import LossConfig
17
+ from .ultravox_config import LossFunction
18
+ from .ultravox_config import UltravoxConfig
19
+
20
+
21
+ class UltravoxModel(transformers.LlamaPreTrainedModel):
22
+ """
23
+ The Ultravox model which consists of an audio encoder and a language model.
24
+
25
+ Audio input is processed by the audio encoder, then every `stack_factor` frames are stacked together and
26
+ projected to the language model's embedding space using a few linear layers.
27
+ The text is embedded by the language model as usual and then the audio and text embeddings are merged together.
28
+
29
+ A special token `<|audio|>` is used to indicate the start of the audio embeddings in the merged embeddings.
30
+
31
+ Parameters:
32
+ config: Model configuration class with all the parameters of the model.
33
+ """
34
+
35
+ config_class = UltravoxConfig
36
+ config: UltravoxConfig # for type hinting
37
+ # Usually we load encoder and LLM weights from a pretrained model separately, so they are allowed to be missing
38
+ _keys_to_ignore_on_load_missing = ["audio_tower.*", "language_model.*"]
39
+
40
+ def __init__(self, config: UltravoxConfig):
41
+ super().__init__(config)
42
+ self._register_load_state_dict_pre_hook(self._pre_load_state_dict_hook)
43
+
44
+ self.keep_params: Set[str] = set()
45
+ self.vocab_size = config.vocab_size
46
+
47
+ self.audio_tower = self._create_audio_tower(config)
48
+ self.multi_modal_projector = self._create_multi_modal_projector(config)
49
+ self.language_model = self._create_language_model(config)
50
+
51
+ # Determine no_split_modules dynamically to use with FSDP auto_wrap policy.
52
+ # FSDP throws an error if some of the layer types are not found in the model.
53
+ # This would be something like ["LlamaDecoderLayer", "WhisperEncoderLayer"]
54
+ self._no_split_modules = (self.language_model._no_split_modules or []) + (
55
+ self.audio_tower._no_split_modules or []
56
+ )
57
+
58
+ self.loss_config = LossConfig()
59
+ self.post_init()
60
+
61
+ def get_input_embeddings(self):
62
+ return self.language_model.get_input_embeddings()
63
+
64
+ def set_input_embeddings(self, value):
65
+ self.language_model.set_input_embeddings(value)
66
+
67
+ def get_output_embeddings(self):
68
+ return self.language_model.get_output_embeddings()
69
+
70
+ def set_output_embeddings(self, new_embeddings):
71
+ self.language_model.set_output_embeddings(new_embeddings)
72
+
73
+ def set_decoder(self, decoder):
74
+ self.language_model.set_decoder(decoder)
75
+
76
+ def get_decoder(self):
77
+ return self.language_model.get_decoder()
78
+
79
+ def tie_weights(self):
80
+ return self.language_model.tie_weights()
81
+
82
+ def set_loss_config(self, loss_config: LossConfig):
83
+ self.loss_config = loss_config
84
+
85
+ def _setup_cache(
86
+ self, cache_cls, max_batch_size: int, max_cache_len: Optional[int] = None
87
+ ):
88
+ self.language_model._setup_cache(cache_cls, max_batch_size, max_cache_len)
89
+
90
+ def _reorder_cache(self, past_key_values, beam_idx):
91
+ return self.language_model._reorder_cache(past_key_values, beam_idx)
92
+
93
+ def resize_token_embeddings(
94
+ self,
95
+ new_num_tokens: Optional[int] = None,
96
+ pad_to_multiple_of: Optional[int] = None,
97
+ ) -> nn.Embedding:
98
+ model_embeds = self.language_model.resize_token_embeddings(
99
+ new_num_tokens, pad_to_multiple_of
100
+ )
101
+ # update vocab size
102
+ self.config.text_config.vocab_size = model_embeds.num_embeddings
103
+ self.config.vocab_size = model_embeds.num_embeddings
104
+ self.vocab_size = model_embeds.num_embeddings
105
+ return model_embeds
106
+
107
+ def _compute_kl_loss(
108
+ self,
109
+ lm_output: transformers.modeling_outputs.CausalLMOutputWithPast,
110
+ labels: Optional[torch.Tensor] = None,
111
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
112
+ alt_input_ids: Optional[torch.Tensor] = None,
113
+ alt_attention_mask: Optional[torch.Tensor] = None,
114
+ alt_labels: Optional[torch.Tensor] = None,
115
+ **kwargs,
116
+ ):
117
+ # disable gradient computation for the teacher model
118
+ with torch.no_grad():
119
+ # compute the teacher (text-only) model's distribution
120
+ alt_inputs_embeds = self.get_input_embeddings().forward(alt_input_ids)
121
+ alt_lm_output = self.language_model.forward(
122
+ inputs_embeds=alt_inputs_embeds,
123
+ labels=alt_labels,
124
+ attention_mask=alt_attention_mask,
125
+ past_key_values=past_key_values,
126
+ **kwargs,
127
+ )
128
+ # compute the KL divergence loss between the two models
129
+ kl_loss = F.kl_div(
130
+ F.log_softmax(
131
+ lm_output.logits[labels != -100] / self.loss_config.kl_temperature,
132
+ dim=-1,
133
+ ),
134
+ F.softmax(
135
+ alt_lm_output.logits[alt_labels != -100]
136
+ / self.loss_config.kl_temperature,
137
+ dim=-1,
138
+ ),
139
+ reduction="batchmean",
140
+ )
141
+ return {"loss": kl_loss}
142
+
143
+ def forward(
144
+ self,
145
+ input_ids: torch.Tensor,
146
+ audio_values: Optional[torch.FloatTensor] = None,
147
+ inputs_embeds: Optional[torch.FloatTensor] = None,
148
+ labels: Optional[torch.Tensor] = None,
149
+ attention_mask: Optional[torch.Tensor] = None,
150
+ audio_token_start_idx: Optional[torch.Tensor] = None,
151
+ audio_len: Optional[torch.Tensor] = None,
152
+ audio_token_len: Optional[torch.Tensor] = None,
153
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
154
+ # the alt_* fields are needed for KL divergence loss
155
+ alt_input_ids: Optional[torch.Tensor] = None,
156
+ alt_attention_mask: Optional[torch.Tensor] = None,
157
+ alt_labels: Optional[torch.Tensor] = None,
158
+ **kwargs,
159
+ ) -> Union[Tuple, transformers.modeling_outputs.CausalLMOutputWithPast]:
160
+ """
161
+ Forward pass for the Ultravox model.
162
+
163
+ `input_ids` are the tokenized text input. They are embedded by the language model as usual.
164
+ `audio_values` are processed by the audio encoder and then every `stack_factor` frames are stacked together and
165
+ projected to the language model's embedding space using a few linear layers.
166
+ The audio and text embeddings are merged together. A special token `<|audio|>` is used to indicate the start
167
+ of the audio embeddings in the merged embeddings.
168
+
169
+ Args:
170
+ input_ids: The tokenized text input.
171
+ audio_values: The processed audio values.
172
+ inputs_embeds: The embeddings for the input tokens.
173
+ labels: The tokenized text labels.
174
+ attention_mask: The attention mask for the input.
175
+ position_ids: The position ids for the input.
176
+ past_key_values: The past key value cache for the language model attention layers.
177
+ **kwargs: Additional keyword arguments. Passed directly to the language model.
178
+ """
179
+ if inputs_embeds is None:
180
+ # B x T -> B x T x D
181
+ inputs_embeds = self.get_input_embeddings().forward(input_ids)
182
+
183
+ if audio_values is not None:
184
+ assert (
185
+ audio_token_start_idx is not None and audio_token_len is not None
186
+ ), "audio_token_start_idx and audio_token_len must be provided if audio_values are provided."
187
+ assert (
188
+ len(audio_token_start_idx) == len(audio_token_len) == len(audio_values)
189
+ ), "audio_token_start_idx, audio_token_len, and audio_values must have the same batch size."
190
+
191
+ # B x A/3200 x D
192
+ audio_tower_output = self.audio_tower.forward(
193
+ audio_values.to(self.audio_tower.dtype),
194
+ audio_len=audio_len,
195
+ ).last_hidden_state
196
+ audio_tower_output = audio_tower_output.to(inputs_embeds.dtype)
197
+
198
+ audio_embeds = self.multi_modal_projector.forward(audio_tower_output)
199
+
200
+ # combine audio and text embeddings
201
+ for i, (audio, start, length) in enumerate(
202
+ zip(audio_embeds, audio_token_start_idx, audio_token_len)
203
+ ):
204
+ length = min(length, audio.shape[0])
205
+ inputs_embeds[i, start : start + length] = audio[:length]
206
+
207
+ lm_output = self.language_model.forward(
208
+ inputs_embeds=inputs_embeds,
209
+ labels=labels,
210
+ attention_mask=attention_mask,
211
+ past_key_values=past_key_values,
212
+ **kwargs,
213
+ )
214
+ if self.training:
215
+ if self.loss_config.loss_function == LossFunction.CrossEntropy:
216
+ return lm_output
217
+ elif self.loss_config.loss_function == LossFunction.KL_Divergence:
218
+ return self._compute_kl_loss(
219
+ lm_output=lm_output,
220
+ labels=labels,
221
+ past_key_values=past_key_values,
222
+ alt_input_ids=alt_input_ids,
223
+ alt_attention_mask=alt_attention_mask,
224
+ alt_labels=alt_labels,
225
+ **kwargs,
226
+ )
227
+ else:
228
+ raise ValueError(
229
+ f"Unsupported loss function: {self.loss_config.loss_function}"
230
+ )
231
+ else:
232
+ return lm_output
233
+
234
+ def prepare_inputs_for_generation(
235
+ self,
236
+ input_ids: torch.Tensor,
237
+ audio_values: Optional[torch.FloatTensor] = None,
238
+ audio_token_start_idx: Optional[torch.Tensor] = None,
239
+ audio_token_len: Optional[torch.Tensor] = None,
240
+ audio_len: Optional[torch.Tensor] = None,
241
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
242
+ attention_mask: Optional[torch.Tensor] = None,
243
+ inputs_embeds: Optional[torch.Tensor] = None,
244
+ cache_position: Optional[torch.Tensor] = None,
245
+ **kwargs,
246
+ ) -> Dict[str, Any]:
247
+ model_input = self.language_model.prepare_inputs_for_generation(
248
+ input_ids=input_ids,
249
+ past_key_values=past_key_values,
250
+ attention_mask=attention_mask,
251
+ inputs_embeds=inputs_embeds,
252
+ cache_position=cache_position,
253
+ **kwargs,
254
+ )
255
+
256
+ # include audio information in model_input only when it is needed during prefilling
257
+ # audio_token_start_idx should always be relative to the current cache position
258
+ prefill_start_idx = 0 if cache_position is None else cache_position[0]
259
+ if (
260
+ audio_values is not None
261
+ and audio_token_start_idx is not None
262
+ and prefill_start_idx <= torch.max(audio_token_start_idx)
263
+ ):
264
+ model_input["audio_values"] = audio_values
265
+ model_input["audio_token_start_idx"] = (
266
+ audio_token_start_idx - prefill_start_idx
267
+ )
268
+ model_input["audio_token_len"] = audio_token_len
269
+ model_input["audio_len"] = audio_len
270
+
271
+ return model_input
272
+
273
+ @classmethod
274
+ def _create_multi_modal_projector(
275
+ cls, config: UltravoxConfig
276
+ ) -> "UltravoxProjector":
277
+ projector = UltravoxProjector(config)
278
+ projector.to(config.torch_dtype)
279
+ return projector
280
+
281
+ @classmethod
282
+ def _create_audio_tower(
283
+ cls, config: UltravoxConfig
284
+ ) -> Union[transformers.Wav2Vec2Model, "ModifiedWhisperEncoder"]:
285
+ if config.audio_model_id is not None:
286
+ if "whisper" in config.audio_model_id is not None:
287
+ audio_tower = ModifiedWhisperEncoder.from_pretrained(
288
+ config.audio_model_id, torch_dtype=config.torch_dtype
289
+ )
290
+ audio_tower.init_latency_mask(
291
+ config.audio_latency_block_size, dtype=config.torch_dtype
292
+ )
293
+ else:
294
+ assert config.audio_latency_block_size in (
295
+ None,
296
+ 0,
297
+ ), "only whisper audio tower supports audio latency masking, got non-zero value for 'audio_latency_block_size'"
298
+ audio_tower = transformers.AutoModel.from_pretrained(
299
+ config.audio_model_id, torch_dtype=config.torch_dtype
300
+ )
301
+ else:
302
+ if "whisper" in config.audio_config._name_or_path:
303
+ audio_tower = ModifiedWhisperEncoder(config.audio_config)
304
+ audio_tower.init_latency_mask(
305
+ config.audio_latency_block_size, dtype=config.torch_dtype
306
+ )
307
+ else:
308
+ assert config.audio_latency_block_size in (
309
+ None,
310
+ 0,
311
+ ), "only whisper audio tower supports audio latency masking, got non-zero value for 'audio_latency_block_size'"
312
+ with transformers.modeling_utils.no_init_weights():
313
+ # we only ever use from_config if the weights are retrained, hence initializing is not
314
+ # required. This makes the model quite creation faster since init on CPU is quite slow.
315
+ audio_tower = transformers.AutoModel.from_config(
316
+ config.audio_config
317
+ )
318
+
319
+ if isinstance(
320
+ audio_tower,
321
+ (transformers.Wav2Vec2BertModel, transformers.WhisperModel),
322
+ ):
323
+ # For these models we only need the encoder part
324
+ # Wav2Vec2BertModel -> Wav2Vec2BertEncoder
325
+ # WhisperModel -> WhisperEncoder
326
+ audio_tower = audio_tower.encoder
327
+
328
+ audio_tower = apply_lora(audio_tower, config.audio_model_lora_config)
329
+ return audio_tower
330
+
331
+ @classmethod
332
+ def _create_language_model(
333
+ cls, config: UltravoxConfig
334
+ ) -> transformers.LlamaForCausalLM:
335
+ if config.text_model_id is not None:
336
+ language_model = transformers.AutoModelForCausalLM.from_pretrained(
337
+ config.text_model_id,
338
+ attn_implementation=config._attn_implementation,
339
+ torch_dtype=config.torch_dtype,
340
+ )
341
+ else:
342
+ with transformers.modeling_utils.no_init_weights():
343
+ # we only ever use from_config if the weights are retrained, hence initializing is not
344
+ # required. This makes the model quite creation faster since init on CPU is quite slow.
345
+ language_model = transformers.AutoModelForCausalLM.from_config(
346
+ config.text_config,
347
+ attn_implementation=config._attn_implementation,
348
+ torch_dtype=config.torch_dtype,
349
+ )
350
+
351
+ language_model = apply_lora(language_model, config.text_model_lora_config)
352
+ return language_model
353
+
354
+ def merge_and_unload(self):
355
+ if isinstance(self.language_model, peft.PeftModel):
356
+ self.language_model = self.language_model.merge_and_unload()
357
+ # no need to download base language model weights anymore, so we can remove the id
358
+ self.config.text_model_id = None
359
+ self.keep_params.update(
360
+ set(
361
+ [
362
+ f"language_model.{name}"
363
+ for name, _ in self.language_model.named_parameters()
364
+ ]
365
+ )
366
+ )
367
+
368
+ if isinstance(self.audio_tower, peft.PeftModel):
369
+ self.audio_tower = self.audio_tower.merge_and_unload()
370
+ # no need to download base audio model weights anymore, so we can remove the id
371
+ self.config.audio_model_id = None
372
+ self.keep_params.update(
373
+ set(
374
+ [
375
+ f"audio_tower.{name}"
376
+ for name, _ in self.audio_tower.named_parameters()
377
+ ]
378
+ )
379
+ )
380
+
381
+ for param in ["text_model_lora_config", "audio_model_lora_config"]:
382
+ if hasattr(self.config, param):
383
+ delattr(self.config, param)
384
+
385
+ def push_to_hub(self, *args, **kwargs):
386
+ self.merge_and_unload()
387
+ self.to(self.language_model.dtype)
388
+ return super().push_to_hub(*args, **kwargs)
389
+
390
+ def save_pretrained(
391
+ self, *args, state_dict: Optional[Dict[str, Any]] = None, **kwargs
392
+ ):
393
+ if state_dict is None:
394
+ state_dict = super().state_dict()
395
+
396
+ named_params = dict(self.named_parameters())
397
+
398
+ state_dict = {
399
+ k: v
400
+ for k, v in state_dict.items()
401
+ if k in self.keep_params
402
+ or (k in named_params and named_params[k].requires_grad)
403
+ }
404
+
405
+ super().save_pretrained(*args, state_dict=state_dict, **kwargs)
406
+
407
+ def _pre_load_state_dict_hook(self, state_dict: Dict[str, Any], *args, **kwargs):
408
+ self.keep_params.update(set(state_dict.keys()))
409
+
410
+ def print_trainable_parameters(self):
411
+ """
412
+ Prints the number of trainable parameters in the model (reuses Peft model's method)
413
+ """
414
+ count_params = peft.peft_model.PeftModel.get_nb_trainable_parameters
415
+
416
+ trainable_params, all_param = count_params(self)
417
+
418
+ logging.info(
419
+ f"trainable params: {trainable_params:,d} || all params: {all_param:,d}"
420
+ f" || trainable%: {100 * trainable_params / all_param:.1f}%"
421
+ )
422
+
423
+ lm_trainable_params, lm_all_params = count_params(self.language_model)
424
+ audio_trainable_params, audio_all_params = count_params(self.audio_tower)
425
+
426
+ projector_trainable_params = (
427
+ trainable_params - lm_trainable_params - audio_trainable_params
428
+ )
429
+ projector_all_params = all_param - lm_all_params - audio_all_params
430
+
431
+ logging.info(
432
+ f"Trainable%: "
433
+ f" LLM: {100 * lm_trainable_params / lm_all_params:.1f}%"
434
+ f" || Audio Encoder: {100 * audio_trainable_params / audio_all_params:.1f}%"
435
+ f" || Projector: {100 * projector_trainable_params / projector_all_params:.1f}%"
436
+ )
437
+
438
+
439
+ def is_cache_empty(
440
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]]
441
+ ) -> bool:
442
+ """
443
+ Check if the cache is empty.
444
+ """
445
+ if past_key_values is None:
446
+ return True
447
+ if isinstance(past_key_values, tuple):
448
+ return all(len(c) == 0 for c in past_key_values)
449
+ return past_key_values.get_seq_length() == 0
450
+
451
+
452
+ def apply_lora(model: torch.nn.Module, lora_config: dict) -> torch.nn.Module:
453
+ """
454
+ Applies LoRA finetuning to the model. If the `r` parameter is set to 0, the model is frozen instead.
455
+ """
456
+ lora_config = peft.LoraConfig(**lora_config or {})
457
+
458
+ if lora_config.r == 0:
459
+ # freeze the model entirely
460
+ for param in model.parameters():
461
+ param.requires_grad = False
462
+ else:
463
+ model = peft.get_peft_model(model, lora_config)
464
+
465
+ return model
466
+
467
+
468
+ class StackAudioFrames(nn.Module):
469
+ """
470
+ Stack the audio embedding frames to reduce the sequence length by a factor of `stack_factor`.
471
+
472
+ The number of output frames will be `ceil(T / stack_factor) + 1` where `T` is the number of input frames.
473
+ NOTE: the extra +1 is intentional: in case the number of audio tokens are over-estimated by the processor,
474
+ we want to make sure `processor.audio_token_replacement` (i.e. EOS) doesn't get leaked into the middle of embeddings.
475
+ In most cases this extra padding will get removed in the model's forward function so it has no effect.
476
+ """
477
+
478
+ def __init__(self, stack_factor: int = 8):
479
+ super().__init__()
480
+ self.stack_factor = stack_factor
481
+
482
+ def forward(self, audio_embeds: torch.Tensor) -> torch.Tensor:
483
+ B, T, C = audio_embeds.shape
484
+ T_pad = (T + self.stack_factor - 1) // self.stack_factor * self.stack_factor
485
+ audio_embeds = F.pad(audio_embeds, (0, 0, 0, T_pad - T + self.stack_factor))
486
+ B, T, C = audio_embeds.shape
487
+ audio_embeds = audio_embeds.view(
488
+ B, T // self.stack_factor, C * self.stack_factor
489
+ )
490
+ return audio_embeds
491
+
492
+
493
+ class RMSNorm(transformers.models.llama.modeling_llama.LlamaRMSNorm):
494
+ def __init__(self, hidden_size: int, init: float = 1, eps: float = 1e-6):
495
+ super().__init__(hidden_size=hidden_size, eps=eps)
496
+ self.weight.data.fill_(init)
497
+
498
+
499
+ class SwiGLU(nn.Module):
500
+ def forward(self, x):
501
+ x, gate = x.chunk(2, dim=-1)
502
+ return F.silu(gate) * x
503
+
504
+
505
+ class UltravoxProjector(nn.Sequential):
506
+ def __init__(self, config: UltravoxConfig):
507
+ super().__init__()
508
+ self.hidden_dim = config.hidden_size
509
+ self._pad_and_stack = StackAudioFrames(config.stack_factor)
510
+ dim = config.audio_config.hidden_size * config.stack_factor
511
+ self.ln_pre = RMSNorm(dim, init=config.norm_init)
512
+ self.linear_1 = nn.Linear(dim, self.hidden_dim, bias=False)
513
+ dim = self.hidden_dim
514
+ self.act = transformers.activations.get_activation(config.projector_act)
515
+ dim = dim // 2 if config.projector_act == "swiglu" else dim
516
+ self.linear_2 = nn.Linear(dim, config.text_config.hidden_size, bias=False)
517
+ self.ln_post = RMSNorm(config.text_config.hidden_size, init=config.norm_init)
518
+
519
+ def forward(self, audio_features: torch.Tensor) -> torch.Tensor:
520
+ audio_features = self._pad_and_stack(audio_features)
521
+ audio_features = self.ln_pre(audio_features)
522
+ hidden_states = self.linear_1(audio_features)
523
+ hidden_states = self.act(hidden_states)
524
+ hidden_states = self.linear_2(hidden_states)
525
+ hidden_states = self.ln_post(hidden_states)
526
+ return hidden_states
527
+
528
+
529
+ class ModifiedWhisperEncoder(
530
+ whisper.WhisperEncoder, transformers.modeling_utils.ModuleUtilsMixin
531
+ ):
532
+ """
533
+ Encoder portion of OpenAI's Whisper model.
534
+
535
+ This implementation is a slightly modified version of HF Transformers' Whisper Encoder, with only a few fixes:
536
+ 1. base_model_prefix updated to allow for doing `.from_pretrained` directly on the encoder
537
+ 2. allow less than 30 second of audio padding to be passed in:
538
+ - relaxed ValueError check for `input_features` length to be less than or equal to `expected_seq_length` instead of strictly equal
539
+ - embed_pos is now sliced to match the length of `inputs_embeds`
540
+
541
+ Original: https://github.com/huggingface/transformers/blob/main/src/transformers/models/whisper/modeling_whisper.py
542
+ """
543
+
544
+ base_model_prefix = "model.encoder"
545
+ _no_split_modules = ["WhisperEncoderLayer"]
546
+
547
+ def init_latency_mask(self, audio_latency_block_size: int, dtype: torch.dtype):
548
+ if audio_latency_block_size is None:
549
+ self.audio_streaming_mask = None
550
+ return
551
+
552
+ # maximum sequence length
553
+ max_seqlen = (
554
+ self.config.max_source_positions
555
+ * self.conv1.stride[0]
556
+ * self.conv2.stride[0]
557
+ )
558
+ assert (
559
+ max_seqlen > 0
560
+ ), f"maximum sequence length must be positive, got {max_seqlen}"
561
+ assert (
562
+ max_seqlen % audio_latency_block_size == 0
563
+ ), f"audio_latency_block_size {audio_latency_block_size} must divide {max_seqlen} evenly."
564
+ # Given the block size, we calculate number of blocks.
565
+ audio_latency_nblocks = max_seqlen // audio_latency_block_size
566
+ audio_streaming_mask = (
567
+ torch.tril(
568
+ torch.ones(audio_latency_nblocks, audio_latency_nblocks),
569
+ diagonal=0,
570
+ )
571
+ .repeat_interleave(audio_latency_block_size, dim=0)
572
+ .repeat_interleave(audio_latency_block_size, dim=1)
573
+ )
574
+ audio_streaming_mask = (1.0 - audio_streaming_mask) * torch.finfo(dtype).min
575
+ audio_streaming_mask = audio_streaming_mask[None, None, :, :]
576
+ self.register_buffer(
577
+ "audio_streaming_mask", audio_streaming_mask, persistent=False
578
+ )
579
+
580
+ def forward(
581
+ self,
582
+ input_features,
583
+ audio_len=None,
584
+ head_mask=None,
585
+ output_attentions=None,
586
+ output_hidden_states=None,
587
+ return_dict=None,
588
+ ):
589
+ expected_seq_length = (
590
+ self.config.max_source_positions
591
+ * self.conv1.stride[0]
592
+ * self.conv2.stride[0]
593
+ )
594
+ if input_features.shape[-1] > expected_seq_length:
595
+ raise ValueError(
596
+ f"Whisper expects the mel input features to be of length {expected_seq_length} or less, but found {input_features.shape[-1]}. Make sure to pad the input mel features to {expected_seq_length}."
597
+ )
598
+
599
+ output_attentions = (
600
+ output_attentions
601
+ if output_attentions is not None
602
+ else self.config.output_attentions
603
+ )
604
+ output_hidden_states = (
605
+ output_hidden_states
606
+ if output_hidden_states is not None
607
+ else self.config.output_hidden_states
608
+ )
609
+ return_dict = (
610
+ return_dict if return_dict is not None else self.config.use_return_dict
611
+ )
612
+ inputs_embeds = nn.functional.gelu(self.conv1(input_features))
613
+ inputs_embeds = nn.functional.gelu(self.conv2(inputs_embeds))
614
+
615
+ inputs_embeds = inputs_embeds.permute(0, 2, 1)
616
+ embed_pos = self.embed_positions.weight[: inputs_embeds.size(-2)]
617
+
618
+ hidden_states = inputs_embeds + embed_pos
619
+ hidden_states = nn.functional.dropout(
620
+ hidden_states, p=self.dropout, training=self.training
621
+ )
622
+
623
+ encoder_states = () if output_hidden_states else None
624
+ all_attentions = () if output_attentions else None
625
+
626
+ # Create attention mask based on audio lengths to mask out padding tokens
627
+ # For each sample in batch:
628
+ # - Convert raw audio length to feature length after convolutions
629
+ # - Create boolean mask that is True for valid positions and False for padding
630
+ # - Convert to extended attention mask format expected by transformer layers
631
+ # (1.0 for positions to attend to, large negative for positions to ignore)
632
+ # This masking ensures consistent behavior between training and inference
633
+ # by preventing the model from attending to padding tokens in both cases
634
+ attention_mask = None
635
+ if audio_len != None:
636
+ audio_feature_len = self._get_feat_extract_output_lengths(audio_len)
637
+ max_seq_len = hidden_states.shape[1]
638
+ attention_mask = torch.arange(max_seq_len, device=hidden_states.device)[
639
+ None, :
640
+ ].lt(audio_feature_len.view(-1, 1))
641
+ attention_mask = self.get_extended_attention_mask(
642
+ attention_mask,
643
+ None,
644
+ device=hidden_states.device,
645
+ dtype=hidden_states.dtype,
646
+ )
647
+
648
+ if self.audio_streaming_mask is not None:
649
+ seqlen = hidden_states.size(-2)
650
+ if attention_mask is not None:
651
+ attention_mask = torch.minimum(
652
+ self.audio_streaming_mask[:, :, :seqlen, :seqlen], attention_mask
653
+ ) # merge
654
+ else:
655
+ attention_mask = self.audio_streaming_mask[:, :, :seqlen, :seqlen]
656
+ attention_mask = attention_mask.to(hidden_states.dtype)
657
+
658
+ # check if head_mask has a correct number of layers specified if desired
659
+ if head_mask is not None:
660
+ assert head_mask.size()[0] == (
661
+ len(self.layers)
662
+ ), f"The head_mask should be specified for {len(self.layers)} layers, but it is for {head_mask.size()[0]}."
663
+
664
+ for idx, encoder_layer in enumerate(self.layers):
665
+ if output_hidden_states:
666
+ encoder_states = encoder_states + (hidden_states,)
667
+ # add LayerDrop (see https://arxiv.org/abs/1909.11556 for description)
668
+ to_drop = False
669
+ if self.training:
670
+ dropout_probability = torch.rand([])
671
+ if dropout_probability < self.layerdrop: # skip the layer
672
+ to_drop = True
673
+
674
+ if to_drop:
675
+ layer_outputs = (None, None)
676
+ else:
677
+ if self.gradient_checkpointing and self.training:
678
+ layer_outputs = self._gradient_checkpointing_func(
679
+ encoder_layer.__call__,
680
+ hidden_states,
681
+ attention_mask,
682
+ (head_mask[idx] if head_mask is not None else None),
683
+ output_attentions,
684
+ )
685
+ else:
686
+ layer_outputs = encoder_layer(
687
+ hidden_states,
688
+ attention_mask,
689
+ layer_head_mask=(
690
+ head_mask[idx] if head_mask is not None else None
691
+ ),
692
+ output_attentions=output_attentions,
693
+ )
694
+
695
+ hidden_states = layer_outputs[0]
696
+
697
+ if output_attentions:
698
+ all_attentions = all_attentions + (layer_outputs[1],)
699
+
700
+ hidden_states = self.layer_norm(hidden_states)
701
+ if output_hidden_states:
702
+ encoder_states = encoder_states + (hidden_states,)
703
+
704
+ if not return_dict:
705
+ return tuple(
706
+ v
707
+ for v in [hidden_states, encoder_states, all_attentions]
708
+ if v is not None
709
+ )
710
+ return transformers.modeling_outputs.BaseModelOutput(
711
+ last_hidden_state=hidden_states,
712
+ hidden_states=encoder_states,
713
+ attentions=all_attentions,
714
+ )
715
+
716
+
717
+ UltravoxConfig.register_for_auto_class()
718
+ UltravoxModel.register_for_auto_class()
719
+
720
+ transformers.AutoConfig.register("ultravox", UltravoxConfig)
721
+ transformers.AutoModel.register(UltravoxConfig, UltravoxModel)
722
+
723
+ transformers.activations.ACT2FN["swiglu"] = SwiGLU
checkpoint-3600/config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "UltravoxModel"
4
+ ],
5
+ "audio_latency_block_size": null,
6
+ "audio_model_id": "openai/whisper-large-v3-turbo",
7
+ "audio_model_lora_config": {
8
+ "lora_alpha": 8,
9
+ "r": 0,
10
+ "target_modules": [
11
+ "k_proj",
12
+ "q_proj",
13
+ "linear_k",
14
+ "linear_q"
15
+ ]
16
+ },
17
+ "auto_map": {
18
+ "AutoConfig": "ultravox_config.UltravoxConfig",
19
+ "AutoModel": "ultravox_model.UltravoxModel"
20
+ },
21
+ "hidden_size": 4096,
22
+ "ignore_index": -100,
23
+ "initializer_range": 0.02,
24
+ "model_type": "ultravox",
25
+ "norm_init": 0.4,
26
+ "pad_token_id": 128009,
27
+ "projector_act": "swiglu",
28
+ "stack_factor": 8,
29
+ "text_model_id": "meta-llama/Llama-3.2-1B-Instruct",
30
+ "text_model_lora_config": {
31
+ "lora_alpha": 8,
32
+ "r": 0,
33
+ "target_modules": [
34
+ "k_proj",
35
+ "q_proj",
36
+ "linear_k",
37
+ "linear_q"
38
+ ]
39
+ },
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.47.0",
42
+ "vocab_size": 128256
43
+ }
checkpoint-3600/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 128000,
4
+ "eos_token_id": [
5
+ 128001,
6
+ 128008,
7
+ 128009
8
+ ],
9
+ "pad_token_id": 128009,
10
+ "transformers_version": "4.47.0"
11
+ }
checkpoint-3600/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a836f112ba9058dd435211b09c64746a2be44030acdd82292dd98c7bd9acc71
3
+ size 92299736
checkpoint-3600/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d136891ef5201ca20b5fd3ead330b04f58e73151d0b226ff89df32e1ee665388
3
+ size 184602962
checkpoint-3600/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b8f9f335a085578e86e02f0fc1eb48e60e3e89e3098e3c6cce66c291fc8ee61
3
+ size 14244
checkpoint-3600/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04d44c72cd3a348b42894fd1f0aa67e10dd8fbbcc70558ee71674069905052af
3
+ size 1064
checkpoint-3600/special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|eot_id|>"
17
+ }
checkpoint-3600/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-3600/tokenizer_config.json ADDED
@@ -0,0 +1,2064 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "128000": {
4
+ "content": "<|begin_of_text|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "128001": {
12
+ "content": "<|end_of_text|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "128002": {
20
+ "content": "<|reserved_special_token_0|>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "128003": {
28
+ "content": "<|reserved_special_token_1|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "128004": {
36
+ "content": "<|finetune_right_pad_id|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "128005": {
44
+ "content": "<|reserved_special_token_2|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "128006": {
52
+ "content": "<|start_header_id|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "128007": {
60
+ "content": "<|end_header_id|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "128008": {
68
+ "content": "<|eom_id|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "128009": {
76
+ "content": "<|eot_id|>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "128010": {
84
+ "content": "<|python_tag|>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "128011": {
92
+ "content": "<|reserved_special_token_3|>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "128012": {
100
+ "content": "<|reserved_special_token_4|>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "128013": {
108
+ "content": "<|reserved_special_token_5|>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "128014": {
116
+ "content": "<|reserved_special_token_6|>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "128015": {
124
+ "content": "<|reserved_special_token_7|>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "128016": {
132
+ "content": "<|reserved_special_token_8|>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "128017": {
140
+ "content": "<|reserved_special_token_9|>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "128018": {
148
+ "content": "<|reserved_special_token_10|>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "128019": {
156
+ "content": "<|reserved_special_token_11|>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "128020": {
164
+ "content": "<|reserved_special_token_12|>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "128021": {
172
+ "content": "<|reserved_special_token_13|>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": true
178
+ },
179
+ "128022": {
180
+ "content": "<|reserved_special_token_14|>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": true
186
+ },
187
+ "128023": {
188
+ "content": "<|reserved_special_token_15|>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": true
194
+ },
195
+ "128024": {
196
+ "content": "<|reserved_special_token_16|>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": true
202
+ },
203
+ "128025": {
204
+ "content": "<|reserved_special_token_17|>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": true
210
+ },
211
+ "128026": {
212
+ "content": "<|reserved_special_token_18|>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": true
218
+ },
219
+ "128027": {
220
+ "content": "<|reserved_special_token_19|>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "128028": {
228
+ "content": "<|reserved_special_token_20|>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "128029": {
236
+ "content": "<|reserved_special_token_21|>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "128030": {
244
+ "content": "<|reserved_special_token_22|>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "128031": {
252
+ "content": "<|reserved_special_token_23|>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "128032": {
260
+ "content": "<|reserved_special_token_24|>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "128033": {
268
+ "content": "<|reserved_special_token_25|>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": true
274
+ },
275
+ "128034": {
276
+ "content": "<|reserved_special_token_26|>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": true
282
+ },
283
+ "128035": {
284
+ "content": "<|reserved_special_token_27|>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": true
290
+ },
291
+ "128036": {
292
+ "content": "<|reserved_special_token_28|>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": true
298
+ },
299
+ "128037": {
300
+ "content": "<|reserved_special_token_29|>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": true
306
+ },
307
+ "128038": {
308
+ "content": "<|reserved_special_token_30|>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": true
314
+ },
315
+ "128039": {
316
+ "content": "<|reserved_special_token_31|>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": true
322
+ },
323
+ "128040": {
324
+ "content": "<|reserved_special_token_32|>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": true
330
+ },
331
+ "128041": {
332
+ "content": "<|reserved_special_token_33|>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": true
338
+ },
339
+ "128042": {
340
+ "content": "<|reserved_special_token_34|>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": true
346
+ },
347
+ "128043": {
348
+ "content": "<|reserved_special_token_35|>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": true
354
+ },
355
+ "128044": {
356
+ "content": "<|reserved_special_token_36|>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": true
362
+ },
363
+ "128045": {
364
+ "content": "<|reserved_special_token_37|>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": true
370
+ },
371
+ "128046": {
372
+ "content": "<|reserved_special_token_38|>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": true
378
+ },
379
+ "128047": {
380
+ "content": "<|reserved_special_token_39|>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": true
386
+ },
387
+ "128048": {
388
+ "content": "<|reserved_special_token_40|>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": true
394
+ },
395
+ "128049": {
396
+ "content": "<|reserved_special_token_41|>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": true
402
+ },
403
+ "128050": {
404
+ "content": "<|reserved_special_token_42|>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": true
410
+ },
411
+ "128051": {
412
+ "content": "<|reserved_special_token_43|>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": true
418
+ },
419
+ "128052": {
420
+ "content": "<|reserved_special_token_44|>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": true
426
+ },
427
+ "128053": {
428
+ "content": "<|reserved_special_token_45|>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": true
434
+ },
435
+ "128054": {
436
+ "content": "<|reserved_special_token_46|>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": true
442
+ },
443
+ "128055": {
444
+ "content": "<|reserved_special_token_47|>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": true
450
+ },
451
+ "128056": {
452
+ "content": "<|reserved_special_token_48|>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": true
458
+ },
459
+ "128057": {
460
+ "content": "<|reserved_special_token_49|>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": true
466
+ },
467
+ "128058": {
468
+ "content": "<|reserved_special_token_50|>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": true
474
+ },
475
+ "128059": {
476
+ "content": "<|reserved_special_token_51|>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": true
482
+ },
483
+ "128060": {
484
+ "content": "<|reserved_special_token_52|>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": true
490
+ },
491
+ "128061": {
492
+ "content": "<|reserved_special_token_53|>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": true
498
+ },
499
+ "128062": {
500
+ "content": "<|reserved_special_token_54|>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": true
506
+ },
507
+ "128063": {
508
+ "content": "<|reserved_special_token_55|>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": true
514
+ },
515
+ "128064": {
516
+ "content": "<|reserved_special_token_56|>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": true
522
+ },
523
+ "128065": {
524
+ "content": "<|reserved_special_token_57|>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": true
530
+ },
531
+ "128066": {
532
+ "content": "<|reserved_special_token_58|>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": true
538
+ },
539
+ "128067": {
540
+ "content": "<|reserved_special_token_59|>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": true
546
+ },
547
+ "128068": {
548
+ "content": "<|reserved_special_token_60|>",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": true
554
+ },
555
+ "128069": {
556
+ "content": "<|reserved_special_token_61|>",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": true
562
+ },
563
+ "128070": {
564
+ "content": "<|reserved_special_token_62|>",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": true
570
+ },
571
+ "128071": {
572
+ "content": "<|reserved_special_token_63|>",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": true
578
+ },
579
+ "128072": {
580
+ "content": "<|reserved_special_token_64|>",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": true
586
+ },
587
+ "128073": {
588
+ "content": "<|reserved_special_token_65|>",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": true
594
+ },
595
+ "128074": {
596
+ "content": "<|reserved_special_token_66|>",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": true
602
+ },
603
+ "128075": {
604
+ "content": "<|reserved_special_token_67|>",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": true
610
+ },
611
+ "128076": {
612
+ "content": "<|reserved_special_token_68|>",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": true
618
+ },
619
+ "128077": {
620
+ "content": "<|reserved_special_token_69|>",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": true
626
+ },
627
+ "128078": {
628
+ "content": "<|reserved_special_token_70|>",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": true
634
+ },
635
+ "128079": {
636
+ "content": "<|reserved_special_token_71|>",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": true
642
+ },
643
+ "128080": {
644
+ "content": "<|reserved_special_token_72|>",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": true
650
+ },
651
+ "128081": {
652
+ "content": "<|reserved_special_token_73|>",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": true
658
+ },
659
+ "128082": {
660
+ "content": "<|reserved_special_token_74|>",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": true
666
+ },
667
+ "128083": {
668
+ "content": "<|reserved_special_token_75|>",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": true
674
+ },
675
+ "128084": {
676
+ "content": "<|reserved_special_token_76|>",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": true
682
+ },
683
+ "128085": {
684
+ "content": "<|reserved_special_token_77|>",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": true
690
+ },
691
+ "128086": {
692
+ "content": "<|reserved_special_token_78|>",
693
+ "lstrip": false,
694
+ "normalized": false,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": true
698
+ },
699
+ "128087": {
700
+ "content": "<|reserved_special_token_79|>",
701
+ "lstrip": false,
702
+ "normalized": false,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": true
706
+ },
707
+ "128088": {
708
+ "content": "<|reserved_special_token_80|>",
709
+ "lstrip": false,
710
+ "normalized": false,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": true
714
+ },
715
+ "128089": {
716
+ "content": "<|reserved_special_token_81|>",
717
+ "lstrip": false,
718
+ "normalized": false,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": true
722
+ },
723
+ "128090": {
724
+ "content": "<|reserved_special_token_82|>",
725
+ "lstrip": false,
726
+ "normalized": false,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": true
730
+ },
731
+ "128091": {
732
+ "content": "<|reserved_special_token_83|>",
733
+ "lstrip": false,
734
+ "normalized": false,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": true
738
+ },
739
+ "128092": {
740
+ "content": "<|reserved_special_token_84|>",
741
+ "lstrip": false,
742
+ "normalized": false,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": true
746
+ },
747
+ "128093": {
748
+ "content": "<|reserved_special_token_85|>",
749
+ "lstrip": false,
750
+ "normalized": false,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": true
754
+ },
755
+ "128094": {
756
+ "content": "<|reserved_special_token_86|>",
757
+ "lstrip": false,
758
+ "normalized": false,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": true
762
+ },
763
+ "128095": {
764
+ "content": "<|reserved_special_token_87|>",
765
+ "lstrip": false,
766
+ "normalized": false,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": true
770
+ },
771
+ "128096": {
772
+ "content": "<|reserved_special_token_88|>",
773
+ "lstrip": false,
774
+ "normalized": false,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": true
778
+ },
779
+ "128097": {
780
+ "content": "<|reserved_special_token_89|>",
781
+ "lstrip": false,
782
+ "normalized": false,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": true
786
+ },
787
+ "128098": {
788
+ "content": "<|reserved_special_token_90|>",
789
+ "lstrip": false,
790
+ "normalized": false,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": true
794
+ },
795
+ "128099": {
796
+ "content": "<|reserved_special_token_91|>",
797
+ "lstrip": false,
798
+ "normalized": false,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": true
802
+ },
803
+ "128100": {
804
+ "content": "<|reserved_special_token_92|>",
805
+ "lstrip": false,
806
+ "normalized": false,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": true
810
+ },
811
+ "128101": {
812
+ "content": "<|reserved_special_token_93|>",
813
+ "lstrip": false,
814
+ "normalized": false,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": true
818
+ },
819
+ "128102": {
820
+ "content": "<|reserved_special_token_94|>",
821
+ "lstrip": false,
822
+ "normalized": false,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": true
826
+ },
827
+ "128103": {
828
+ "content": "<|reserved_special_token_95|>",
829
+ "lstrip": false,
830
+ "normalized": false,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": true
834
+ },
835
+ "128104": {
836
+ "content": "<|reserved_special_token_96|>",
837
+ "lstrip": false,
838
+ "normalized": false,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": true
842
+ },
843
+ "128105": {
844
+ "content": "<|reserved_special_token_97|>",
845
+ "lstrip": false,
846
+ "normalized": false,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": true
850
+ },
851
+ "128106": {
852
+ "content": "<|reserved_special_token_98|>",
853
+ "lstrip": false,
854
+ "normalized": false,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": true
858
+ },
859
+ "128107": {
860
+ "content": "<|reserved_special_token_99|>",
861
+ "lstrip": false,
862
+ "normalized": false,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": true
866
+ },
867
+ "128108": {
868
+ "content": "<|reserved_special_token_100|>",
869
+ "lstrip": false,
870
+ "normalized": false,
871
+ "rstrip": false,
872
+ "single_word": false,
873
+ "special": true
874
+ },
875
+ "128109": {
876
+ "content": "<|reserved_special_token_101|>",
877
+ "lstrip": false,
878
+ "normalized": false,
879
+ "rstrip": false,
880
+ "single_word": false,
881
+ "special": true
882
+ },
883
+ "128110": {
884
+ "content": "<|reserved_special_token_102|>",
885
+ "lstrip": false,
886
+ "normalized": false,
887
+ "rstrip": false,
888
+ "single_word": false,
889
+ "special": true
890
+ },
891
+ "128111": {
892
+ "content": "<|reserved_special_token_103|>",
893
+ "lstrip": false,
894
+ "normalized": false,
895
+ "rstrip": false,
896
+ "single_word": false,
897
+ "special": true
898
+ },
899
+ "128112": {
900
+ "content": "<|reserved_special_token_104|>",
901
+ "lstrip": false,
902
+ "normalized": false,
903
+ "rstrip": false,
904
+ "single_word": false,
905
+ "special": true
906
+ },
907
+ "128113": {
908
+ "content": "<|reserved_special_token_105|>",
909
+ "lstrip": false,
910
+ "normalized": false,
911
+ "rstrip": false,
912
+ "single_word": false,
913
+ "special": true
914
+ },
915
+ "128114": {
916
+ "content": "<|reserved_special_token_106|>",
917
+ "lstrip": false,
918
+ "normalized": false,
919
+ "rstrip": false,
920
+ "single_word": false,
921
+ "special": true
922
+ },
923
+ "128115": {
924
+ "content": "<|reserved_special_token_107|>",
925
+ "lstrip": false,
926
+ "normalized": false,
927
+ "rstrip": false,
928
+ "single_word": false,
929
+ "special": true
930
+ },
931
+ "128116": {
932
+ "content": "<|reserved_special_token_108|>",
933
+ "lstrip": false,
934
+ "normalized": false,
935
+ "rstrip": false,
936
+ "single_word": false,
937
+ "special": true
938
+ },
939
+ "128117": {
940
+ "content": "<|reserved_special_token_109|>",
941
+ "lstrip": false,
942
+ "normalized": false,
943
+ "rstrip": false,
944
+ "single_word": false,
945
+ "special": true
946
+ },
947
+ "128118": {
948
+ "content": "<|reserved_special_token_110|>",
949
+ "lstrip": false,
950
+ "normalized": false,
951
+ "rstrip": false,
952
+ "single_word": false,
953
+ "special": true
954
+ },
955
+ "128119": {
956
+ "content": "<|reserved_special_token_111|>",
957
+ "lstrip": false,
958
+ "normalized": false,
959
+ "rstrip": false,
960
+ "single_word": false,
961
+ "special": true
962
+ },
963
+ "128120": {
964
+ "content": "<|reserved_special_token_112|>",
965
+ "lstrip": false,
966
+ "normalized": false,
967
+ "rstrip": false,
968
+ "single_word": false,
969
+ "special": true
970
+ },
971
+ "128121": {
972
+ "content": "<|reserved_special_token_113|>",
973
+ "lstrip": false,
974
+ "normalized": false,
975
+ "rstrip": false,
976
+ "single_word": false,
977
+ "special": true
978
+ },
979
+ "128122": {
980
+ "content": "<|reserved_special_token_114|>",
981
+ "lstrip": false,
982
+ "normalized": false,
983
+ "rstrip": false,
984
+ "single_word": false,
985
+ "special": true
986
+ },
987
+ "128123": {
988
+ "content": "<|reserved_special_token_115|>",
989
+ "lstrip": false,
990
+ "normalized": false,
991
+ "rstrip": false,
992
+ "single_word": false,
993
+ "special": true
994
+ },
995
+ "128124": {
996
+ "content": "<|reserved_special_token_116|>",
997
+ "lstrip": false,
998
+ "normalized": false,
999
+ "rstrip": false,
1000
+ "single_word": false,
1001
+ "special": true
1002
+ },
1003
+ "128125": {
1004
+ "content": "<|reserved_special_token_117|>",
1005
+ "lstrip": false,
1006
+ "normalized": false,
1007
+ "rstrip": false,
1008
+ "single_word": false,
1009
+ "special": true
1010
+ },
1011
+ "128126": {
1012
+ "content": "<|reserved_special_token_118|>",
1013
+ "lstrip": false,
1014
+ "normalized": false,
1015
+ "rstrip": false,
1016
+ "single_word": false,
1017
+ "special": true
1018
+ },
1019
+ "128127": {
1020
+ "content": "<|reserved_special_token_119|>",
1021
+ "lstrip": false,
1022
+ "normalized": false,
1023
+ "rstrip": false,
1024
+ "single_word": false,
1025
+ "special": true
1026
+ },
1027
+ "128128": {
1028
+ "content": "<|reserved_special_token_120|>",
1029
+ "lstrip": false,
1030
+ "normalized": false,
1031
+ "rstrip": false,
1032
+ "single_word": false,
1033
+ "special": true
1034
+ },
1035
+ "128129": {
1036
+ "content": "<|reserved_special_token_121|>",
1037
+ "lstrip": false,
1038
+ "normalized": false,
1039
+ "rstrip": false,
1040
+ "single_word": false,
1041
+ "special": true
1042
+ },
1043
+ "128130": {
1044
+ "content": "<|reserved_special_token_122|>",
1045
+ "lstrip": false,
1046
+ "normalized": false,
1047
+ "rstrip": false,
1048
+ "single_word": false,
1049
+ "special": true
1050
+ },
1051
+ "128131": {
1052
+ "content": "<|reserved_special_token_123|>",
1053
+ "lstrip": false,
1054
+ "normalized": false,
1055
+ "rstrip": false,
1056
+ "single_word": false,
1057
+ "special": true
1058
+ },
1059
+ "128132": {
1060
+ "content": "<|reserved_special_token_124|>",
1061
+ "lstrip": false,
1062
+ "normalized": false,
1063
+ "rstrip": false,
1064
+ "single_word": false,
1065
+ "special": true
1066
+ },
1067
+ "128133": {
1068
+ "content": "<|reserved_special_token_125|>",
1069
+ "lstrip": false,
1070
+ "normalized": false,
1071
+ "rstrip": false,
1072
+ "single_word": false,
1073
+ "special": true
1074
+ },
1075
+ "128134": {
1076
+ "content": "<|reserved_special_token_126|>",
1077
+ "lstrip": false,
1078
+ "normalized": false,
1079
+ "rstrip": false,
1080
+ "single_word": false,
1081
+ "special": true
1082
+ },
1083
+ "128135": {
1084
+ "content": "<|reserved_special_token_127|>",
1085
+ "lstrip": false,
1086
+ "normalized": false,
1087
+ "rstrip": false,
1088
+ "single_word": false,
1089
+ "special": true
1090
+ },
1091
+ "128136": {
1092
+ "content": "<|reserved_special_token_128|>",
1093
+ "lstrip": false,
1094
+ "normalized": false,
1095
+ "rstrip": false,
1096
+ "single_word": false,
1097
+ "special": true
1098
+ },
1099
+ "128137": {
1100
+ "content": "<|reserved_special_token_129|>",
1101
+ "lstrip": false,
1102
+ "normalized": false,
1103
+ "rstrip": false,
1104
+ "single_word": false,
1105
+ "special": true
1106
+ },
1107
+ "128138": {
1108
+ "content": "<|reserved_special_token_130|>",
1109
+ "lstrip": false,
1110
+ "normalized": false,
1111
+ "rstrip": false,
1112
+ "single_word": false,
1113
+ "special": true
1114
+ },
1115
+ "128139": {
1116
+ "content": "<|reserved_special_token_131|>",
1117
+ "lstrip": false,
1118
+ "normalized": false,
1119
+ "rstrip": false,
1120
+ "single_word": false,
1121
+ "special": true
1122
+ },
1123
+ "128140": {
1124
+ "content": "<|reserved_special_token_132|>",
1125
+ "lstrip": false,
1126
+ "normalized": false,
1127
+ "rstrip": false,
1128
+ "single_word": false,
1129
+ "special": true
1130
+ },
1131
+ "128141": {
1132
+ "content": "<|reserved_special_token_133|>",
1133
+ "lstrip": false,
1134
+ "normalized": false,
1135
+ "rstrip": false,
1136
+ "single_word": false,
1137
+ "special": true
1138
+ },
1139
+ "128142": {
1140
+ "content": "<|reserved_special_token_134|>",
1141
+ "lstrip": false,
1142
+ "normalized": false,
1143
+ "rstrip": false,
1144
+ "single_word": false,
1145
+ "special": true
1146
+ },
1147
+ "128143": {
1148
+ "content": "<|reserved_special_token_135|>",
1149
+ "lstrip": false,
1150
+ "normalized": false,
1151
+ "rstrip": false,
1152
+ "single_word": false,
1153
+ "special": true
1154
+ },
1155
+ "128144": {
1156
+ "content": "<|reserved_special_token_136|>",
1157
+ "lstrip": false,
1158
+ "normalized": false,
1159
+ "rstrip": false,
1160
+ "single_word": false,
1161
+ "special": true
1162
+ },
1163
+ "128145": {
1164
+ "content": "<|reserved_special_token_137|>",
1165
+ "lstrip": false,
1166
+ "normalized": false,
1167
+ "rstrip": false,
1168
+ "single_word": false,
1169
+ "special": true
1170
+ },
1171
+ "128146": {
1172
+ "content": "<|reserved_special_token_138|>",
1173
+ "lstrip": false,
1174
+ "normalized": false,
1175
+ "rstrip": false,
1176
+ "single_word": false,
1177
+ "special": true
1178
+ },
1179
+ "128147": {
1180
+ "content": "<|reserved_special_token_139|>",
1181
+ "lstrip": false,
1182
+ "normalized": false,
1183
+ "rstrip": false,
1184
+ "single_word": false,
1185
+ "special": true
1186
+ },
1187
+ "128148": {
1188
+ "content": "<|reserved_special_token_140|>",
1189
+ "lstrip": false,
1190
+ "normalized": false,
1191
+ "rstrip": false,
1192
+ "single_word": false,
1193
+ "special": true
1194
+ },
1195
+ "128149": {
1196
+ "content": "<|reserved_special_token_141|>",
1197
+ "lstrip": false,
1198
+ "normalized": false,
1199
+ "rstrip": false,
1200
+ "single_word": false,
1201
+ "special": true
1202
+ },
1203
+ "128150": {
1204
+ "content": "<|reserved_special_token_142|>",
1205
+ "lstrip": false,
1206
+ "normalized": false,
1207
+ "rstrip": false,
1208
+ "single_word": false,
1209
+ "special": true
1210
+ },
1211
+ "128151": {
1212
+ "content": "<|reserved_special_token_143|>",
1213
+ "lstrip": false,
1214
+ "normalized": false,
1215
+ "rstrip": false,
1216
+ "single_word": false,
1217
+ "special": true
1218
+ },
1219
+ "128152": {
1220
+ "content": "<|reserved_special_token_144|>",
1221
+ "lstrip": false,
1222
+ "normalized": false,
1223
+ "rstrip": false,
1224
+ "single_word": false,
1225
+ "special": true
1226
+ },
1227
+ "128153": {
1228
+ "content": "<|reserved_special_token_145|>",
1229
+ "lstrip": false,
1230
+ "normalized": false,
1231
+ "rstrip": false,
1232
+ "single_word": false,
1233
+ "special": true
1234
+ },
1235
+ "128154": {
1236
+ "content": "<|reserved_special_token_146|>",
1237
+ "lstrip": false,
1238
+ "normalized": false,
1239
+ "rstrip": false,
1240
+ "single_word": false,
1241
+ "special": true
1242
+ },
1243
+ "128155": {
1244
+ "content": "<|reserved_special_token_147|>",
1245
+ "lstrip": false,
1246
+ "normalized": false,
1247
+ "rstrip": false,
1248
+ "single_word": false,
1249
+ "special": true
1250
+ },
1251
+ "128156": {
1252
+ "content": "<|reserved_special_token_148|>",
1253
+ "lstrip": false,
1254
+ "normalized": false,
1255
+ "rstrip": false,
1256
+ "single_word": false,
1257
+ "special": true
1258
+ },
1259
+ "128157": {
1260
+ "content": "<|reserved_special_token_149|>",
1261
+ "lstrip": false,
1262
+ "normalized": false,
1263
+ "rstrip": false,
1264
+ "single_word": false,
1265
+ "special": true
1266
+ },
1267
+ "128158": {
1268
+ "content": "<|reserved_special_token_150|>",
1269
+ "lstrip": false,
1270
+ "normalized": false,
1271
+ "rstrip": false,
1272
+ "single_word": false,
1273
+ "special": true
1274
+ },
1275
+ "128159": {
1276
+ "content": "<|reserved_special_token_151|>",
1277
+ "lstrip": false,
1278
+ "normalized": false,
1279
+ "rstrip": false,
1280
+ "single_word": false,
1281
+ "special": true
1282
+ },
1283
+ "128160": {
1284
+ "content": "<|reserved_special_token_152|>",
1285
+ "lstrip": false,
1286
+ "normalized": false,
1287
+ "rstrip": false,
1288
+ "single_word": false,
1289
+ "special": true
1290
+ },
1291
+ "128161": {
1292
+ "content": "<|reserved_special_token_153|>",
1293
+ "lstrip": false,
1294
+ "normalized": false,
1295
+ "rstrip": false,
1296
+ "single_word": false,
1297
+ "special": true
1298
+ },
1299
+ "128162": {
1300
+ "content": "<|reserved_special_token_154|>",
1301
+ "lstrip": false,
1302
+ "normalized": false,
1303
+ "rstrip": false,
1304
+ "single_word": false,
1305
+ "special": true
1306
+ },
1307
+ "128163": {
1308
+ "content": "<|reserved_special_token_155|>",
1309
+ "lstrip": false,
1310
+ "normalized": false,
1311
+ "rstrip": false,
1312
+ "single_word": false,
1313
+ "special": true
1314
+ },
1315
+ "128164": {
1316
+ "content": "<|reserved_special_token_156|>",
1317
+ "lstrip": false,
1318
+ "normalized": false,
1319
+ "rstrip": false,
1320
+ "single_word": false,
1321
+ "special": true
1322
+ },
1323
+ "128165": {
1324
+ "content": "<|reserved_special_token_157|>",
1325
+ "lstrip": false,
1326
+ "normalized": false,
1327
+ "rstrip": false,
1328
+ "single_word": false,
1329
+ "special": true
1330
+ },
1331
+ "128166": {
1332
+ "content": "<|reserved_special_token_158|>",
1333
+ "lstrip": false,
1334
+ "normalized": false,
1335
+ "rstrip": false,
1336
+ "single_word": false,
1337
+ "special": true
1338
+ },
1339
+ "128167": {
1340
+ "content": "<|reserved_special_token_159|>",
1341
+ "lstrip": false,
1342
+ "normalized": false,
1343
+ "rstrip": false,
1344
+ "single_word": false,
1345
+ "special": true
1346
+ },
1347
+ "128168": {
1348
+ "content": "<|reserved_special_token_160|>",
1349
+ "lstrip": false,
1350
+ "normalized": false,
1351
+ "rstrip": false,
1352
+ "single_word": false,
1353
+ "special": true
1354
+ },
1355
+ "128169": {
1356
+ "content": "<|reserved_special_token_161|>",
1357
+ "lstrip": false,
1358
+ "normalized": false,
1359
+ "rstrip": false,
1360
+ "single_word": false,
1361
+ "special": true
1362
+ },
1363
+ "128170": {
1364
+ "content": "<|reserved_special_token_162|>",
1365
+ "lstrip": false,
1366
+ "normalized": false,
1367
+ "rstrip": false,
1368
+ "single_word": false,
1369
+ "special": true
1370
+ },
1371
+ "128171": {
1372
+ "content": "<|reserved_special_token_163|>",
1373
+ "lstrip": false,
1374
+ "normalized": false,
1375
+ "rstrip": false,
1376
+ "single_word": false,
1377
+ "special": true
1378
+ },
1379
+ "128172": {
1380
+ "content": "<|reserved_special_token_164|>",
1381
+ "lstrip": false,
1382
+ "normalized": false,
1383
+ "rstrip": false,
1384
+ "single_word": false,
1385
+ "special": true
1386
+ },
1387
+ "128173": {
1388
+ "content": "<|reserved_special_token_165|>",
1389
+ "lstrip": false,
1390
+ "normalized": false,
1391
+ "rstrip": false,
1392
+ "single_word": false,
1393
+ "special": true
1394
+ },
1395
+ "128174": {
1396
+ "content": "<|reserved_special_token_166|>",
1397
+ "lstrip": false,
1398
+ "normalized": false,
1399
+ "rstrip": false,
1400
+ "single_word": false,
1401
+ "special": true
1402
+ },
1403
+ "128175": {
1404
+ "content": "<|reserved_special_token_167|>",
1405
+ "lstrip": false,
1406
+ "normalized": false,
1407
+ "rstrip": false,
1408
+ "single_word": false,
1409
+ "special": true
1410
+ },
1411
+ "128176": {
1412
+ "content": "<|reserved_special_token_168|>",
1413
+ "lstrip": false,
1414
+ "normalized": false,
1415
+ "rstrip": false,
1416
+ "single_word": false,
1417
+ "special": true
1418
+ },
1419
+ "128177": {
1420
+ "content": "<|reserved_special_token_169|>",
1421
+ "lstrip": false,
1422
+ "normalized": false,
1423
+ "rstrip": false,
1424
+ "single_word": false,
1425
+ "special": true
1426
+ },
1427
+ "128178": {
1428
+ "content": "<|reserved_special_token_170|>",
1429
+ "lstrip": false,
1430
+ "normalized": false,
1431
+ "rstrip": false,
1432
+ "single_word": false,
1433
+ "special": true
1434
+ },
1435
+ "128179": {
1436
+ "content": "<|reserved_special_token_171|>",
1437
+ "lstrip": false,
1438
+ "normalized": false,
1439
+ "rstrip": false,
1440
+ "single_word": false,
1441
+ "special": true
1442
+ },
1443
+ "128180": {
1444
+ "content": "<|reserved_special_token_172|>",
1445
+ "lstrip": false,
1446
+ "normalized": false,
1447
+ "rstrip": false,
1448
+ "single_word": false,
1449
+ "special": true
1450
+ },
1451
+ "128181": {
1452
+ "content": "<|reserved_special_token_173|>",
1453
+ "lstrip": false,
1454
+ "normalized": false,
1455
+ "rstrip": false,
1456
+ "single_word": false,
1457
+ "special": true
1458
+ },
1459
+ "128182": {
1460
+ "content": "<|reserved_special_token_174|>",
1461
+ "lstrip": false,
1462
+ "normalized": false,
1463
+ "rstrip": false,
1464
+ "single_word": false,
1465
+ "special": true
1466
+ },
1467
+ "128183": {
1468
+ "content": "<|reserved_special_token_175|>",
1469
+ "lstrip": false,
1470
+ "normalized": false,
1471
+ "rstrip": false,
1472
+ "single_word": false,
1473
+ "special": true
1474
+ },
1475
+ "128184": {
1476
+ "content": "<|reserved_special_token_176|>",
1477
+ "lstrip": false,
1478
+ "normalized": false,
1479
+ "rstrip": false,
1480
+ "single_word": false,
1481
+ "special": true
1482
+ },
1483
+ "128185": {
1484
+ "content": "<|reserved_special_token_177|>",
1485
+ "lstrip": false,
1486
+ "normalized": false,
1487
+ "rstrip": false,
1488
+ "single_word": false,
1489
+ "special": true
1490
+ },
1491
+ "128186": {
1492
+ "content": "<|reserved_special_token_178|>",
1493
+ "lstrip": false,
1494
+ "normalized": false,
1495
+ "rstrip": false,
1496
+ "single_word": false,
1497
+ "special": true
1498
+ },
1499
+ "128187": {
1500
+ "content": "<|reserved_special_token_179|>",
1501
+ "lstrip": false,
1502
+ "normalized": false,
1503
+ "rstrip": false,
1504
+ "single_word": false,
1505
+ "special": true
1506
+ },
1507
+ "128188": {
1508
+ "content": "<|reserved_special_token_180|>",
1509
+ "lstrip": false,
1510
+ "normalized": false,
1511
+ "rstrip": false,
1512
+ "single_word": false,
1513
+ "special": true
1514
+ },
1515
+ "128189": {
1516
+ "content": "<|reserved_special_token_181|>",
1517
+ "lstrip": false,
1518
+ "normalized": false,
1519
+ "rstrip": false,
1520
+ "single_word": false,
1521
+ "special": true
1522
+ },
1523
+ "128190": {
1524
+ "content": "<|reserved_special_token_182|>",
1525
+ "lstrip": false,
1526
+ "normalized": false,
1527
+ "rstrip": false,
1528
+ "single_word": false,
1529
+ "special": true
1530
+ },
1531
+ "128191": {
1532
+ "content": "<|reserved_special_token_183|>",
1533
+ "lstrip": false,
1534
+ "normalized": false,
1535
+ "rstrip": false,
1536
+ "single_word": false,
1537
+ "special": true
1538
+ },
1539
+ "128192": {
1540
+ "content": "<|reserved_special_token_184|>",
1541
+ "lstrip": false,
1542
+ "normalized": false,
1543
+ "rstrip": false,
1544
+ "single_word": false,
1545
+ "special": true
1546
+ },
1547
+ "128193": {
1548
+ "content": "<|reserved_special_token_185|>",
1549
+ "lstrip": false,
1550
+ "normalized": false,
1551
+ "rstrip": false,
1552
+ "single_word": false,
1553
+ "special": true
1554
+ },
1555
+ "128194": {
1556
+ "content": "<|reserved_special_token_186|>",
1557
+ "lstrip": false,
1558
+ "normalized": false,
1559
+ "rstrip": false,
1560
+ "single_word": false,
1561
+ "special": true
1562
+ },
1563
+ "128195": {
1564
+ "content": "<|reserved_special_token_187|>",
1565
+ "lstrip": false,
1566
+ "normalized": false,
1567
+ "rstrip": false,
1568
+ "single_word": false,
1569
+ "special": true
1570
+ },
1571
+ "128196": {
1572
+ "content": "<|reserved_special_token_188|>",
1573
+ "lstrip": false,
1574
+ "normalized": false,
1575
+ "rstrip": false,
1576
+ "single_word": false,
1577
+ "special": true
1578
+ },
1579
+ "128197": {
1580
+ "content": "<|reserved_special_token_189|>",
1581
+ "lstrip": false,
1582
+ "normalized": false,
1583
+ "rstrip": false,
1584
+ "single_word": false,
1585
+ "special": true
1586
+ },
1587
+ "128198": {
1588
+ "content": "<|reserved_special_token_190|>",
1589
+ "lstrip": false,
1590
+ "normalized": false,
1591
+ "rstrip": false,
1592
+ "single_word": false,
1593
+ "special": true
1594
+ },
1595
+ "128199": {
1596
+ "content": "<|reserved_special_token_191|>",
1597
+ "lstrip": false,
1598
+ "normalized": false,
1599
+ "rstrip": false,
1600
+ "single_word": false,
1601
+ "special": true
1602
+ },
1603
+ "128200": {
1604
+ "content": "<|reserved_special_token_192|>",
1605
+ "lstrip": false,
1606
+ "normalized": false,
1607
+ "rstrip": false,
1608
+ "single_word": false,
1609
+ "special": true
1610
+ },
1611
+ "128201": {
1612
+ "content": "<|reserved_special_token_193|>",
1613
+ "lstrip": false,
1614
+ "normalized": false,
1615
+ "rstrip": false,
1616
+ "single_word": false,
1617
+ "special": true
1618
+ },
1619
+ "128202": {
1620
+ "content": "<|reserved_special_token_194|>",
1621
+ "lstrip": false,
1622
+ "normalized": false,
1623
+ "rstrip": false,
1624
+ "single_word": false,
1625
+ "special": true
1626
+ },
1627
+ "128203": {
1628
+ "content": "<|reserved_special_token_195|>",
1629
+ "lstrip": false,
1630
+ "normalized": false,
1631
+ "rstrip": false,
1632
+ "single_word": false,
1633
+ "special": true
1634
+ },
1635
+ "128204": {
1636
+ "content": "<|reserved_special_token_196|>",
1637
+ "lstrip": false,
1638
+ "normalized": false,
1639
+ "rstrip": false,
1640
+ "single_word": false,
1641
+ "special": true
1642
+ },
1643
+ "128205": {
1644
+ "content": "<|reserved_special_token_197|>",
1645
+ "lstrip": false,
1646
+ "normalized": false,
1647
+ "rstrip": false,
1648
+ "single_word": false,
1649
+ "special": true
1650
+ },
1651
+ "128206": {
1652
+ "content": "<|reserved_special_token_198|>",
1653
+ "lstrip": false,
1654
+ "normalized": false,
1655
+ "rstrip": false,
1656
+ "single_word": false,
1657
+ "special": true
1658
+ },
1659
+ "128207": {
1660
+ "content": "<|reserved_special_token_199|>",
1661
+ "lstrip": false,
1662
+ "normalized": false,
1663
+ "rstrip": false,
1664
+ "single_word": false,
1665
+ "special": true
1666
+ },
1667
+ "128208": {
1668
+ "content": "<|reserved_special_token_200|>",
1669
+ "lstrip": false,
1670
+ "normalized": false,
1671
+ "rstrip": false,
1672
+ "single_word": false,
1673
+ "special": true
1674
+ },
1675
+ "128209": {
1676
+ "content": "<|reserved_special_token_201|>",
1677
+ "lstrip": false,
1678
+ "normalized": false,
1679
+ "rstrip": false,
1680
+ "single_word": false,
1681
+ "special": true
1682
+ },
1683
+ "128210": {
1684
+ "content": "<|reserved_special_token_202|>",
1685
+ "lstrip": false,
1686
+ "normalized": false,
1687
+ "rstrip": false,
1688
+ "single_word": false,
1689
+ "special": true
1690
+ },
1691
+ "128211": {
1692
+ "content": "<|reserved_special_token_203|>",
1693
+ "lstrip": false,
1694
+ "normalized": false,
1695
+ "rstrip": false,
1696
+ "single_word": false,
1697
+ "special": true
1698
+ },
1699
+ "128212": {
1700
+ "content": "<|reserved_special_token_204|>",
1701
+ "lstrip": false,
1702
+ "normalized": false,
1703
+ "rstrip": false,
1704
+ "single_word": false,
1705
+ "special": true
1706
+ },
1707
+ "128213": {
1708
+ "content": "<|reserved_special_token_205|>",
1709
+ "lstrip": false,
1710
+ "normalized": false,
1711
+ "rstrip": false,
1712
+ "single_word": false,
1713
+ "special": true
1714
+ },
1715
+ "128214": {
1716
+ "content": "<|reserved_special_token_206|>",
1717
+ "lstrip": false,
1718
+ "normalized": false,
1719
+ "rstrip": false,
1720
+ "single_word": false,
1721
+ "special": true
1722
+ },
1723
+ "128215": {
1724
+ "content": "<|reserved_special_token_207|>",
1725
+ "lstrip": false,
1726
+ "normalized": false,
1727
+ "rstrip": false,
1728
+ "single_word": false,
1729
+ "special": true
1730
+ },
1731
+ "128216": {
1732
+ "content": "<|reserved_special_token_208|>",
1733
+ "lstrip": false,
1734
+ "normalized": false,
1735
+ "rstrip": false,
1736
+ "single_word": false,
1737
+ "special": true
1738
+ },
1739
+ "128217": {
1740
+ "content": "<|reserved_special_token_209|>",
1741
+ "lstrip": false,
1742
+ "normalized": false,
1743
+ "rstrip": false,
1744
+ "single_word": false,
1745
+ "special": true
1746
+ },
1747
+ "128218": {
1748
+ "content": "<|reserved_special_token_210|>",
1749
+ "lstrip": false,
1750
+ "normalized": false,
1751
+ "rstrip": false,
1752
+ "single_word": false,
1753
+ "special": true
1754
+ },
1755
+ "128219": {
1756
+ "content": "<|reserved_special_token_211|>",
1757
+ "lstrip": false,
1758
+ "normalized": false,
1759
+ "rstrip": false,
1760
+ "single_word": false,
1761
+ "special": true
1762
+ },
1763
+ "128220": {
1764
+ "content": "<|reserved_special_token_212|>",
1765
+ "lstrip": false,
1766
+ "normalized": false,
1767
+ "rstrip": false,
1768
+ "single_word": false,
1769
+ "special": true
1770
+ },
1771
+ "128221": {
1772
+ "content": "<|reserved_special_token_213|>",
1773
+ "lstrip": false,
1774
+ "normalized": false,
1775
+ "rstrip": false,
1776
+ "single_word": false,
1777
+ "special": true
1778
+ },
1779
+ "128222": {
1780
+ "content": "<|reserved_special_token_214|>",
1781
+ "lstrip": false,
1782
+ "normalized": false,
1783
+ "rstrip": false,
1784
+ "single_word": false,
1785
+ "special": true
1786
+ },
1787
+ "128223": {
1788
+ "content": "<|reserved_special_token_215|>",
1789
+ "lstrip": false,
1790
+ "normalized": false,
1791
+ "rstrip": false,
1792
+ "single_word": false,
1793
+ "special": true
1794
+ },
1795
+ "128224": {
1796
+ "content": "<|reserved_special_token_216|>",
1797
+ "lstrip": false,
1798
+ "normalized": false,
1799
+ "rstrip": false,
1800
+ "single_word": false,
1801
+ "special": true
1802
+ },
1803
+ "128225": {
1804
+ "content": "<|reserved_special_token_217|>",
1805
+ "lstrip": false,
1806
+ "normalized": false,
1807
+ "rstrip": false,
1808
+ "single_word": false,
1809
+ "special": true
1810
+ },
1811
+ "128226": {
1812
+ "content": "<|reserved_special_token_218|>",
1813
+ "lstrip": false,
1814
+ "normalized": false,
1815
+ "rstrip": false,
1816
+ "single_word": false,
1817
+ "special": true
1818
+ },
1819
+ "128227": {
1820
+ "content": "<|reserved_special_token_219|>",
1821
+ "lstrip": false,
1822
+ "normalized": false,
1823
+ "rstrip": false,
1824
+ "single_word": false,
1825
+ "special": true
1826
+ },
1827
+ "128228": {
1828
+ "content": "<|reserved_special_token_220|>",
1829
+ "lstrip": false,
1830
+ "normalized": false,
1831
+ "rstrip": false,
1832
+ "single_word": false,
1833
+ "special": true
1834
+ },
1835
+ "128229": {
1836
+ "content": "<|reserved_special_token_221|>",
1837
+ "lstrip": false,
1838
+ "normalized": false,
1839
+ "rstrip": false,
1840
+ "single_word": false,
1841
+ "special": true
1842
+ },
1843
+ "128230": {
1844
+ "content": "<|reserved_special_token_222|>",
1845
+ "lstrip": false,
1846
+ "normalized": false,
1847
+ "rstrip": false,
1848
+ "single_word": false,
1849
+ "special": true
1850
+ },
1851
+ "128231": {
1852
+ "content": "<|reserved_special_token_223|>",
1853
+ "lstrip": false,
1854
+ "normalized": false,
1855
+ "rstrip": false,
1856
+ "single_word": false,
1857
+ "special": true
1858
+ },
1859
+ "128232": {
1860
+ "content": "<|reserved_special_token_224|>",
1861
+ "lstrip": false,
1862
+ "normalized": false,
1863
+ "rstrip": false,
1864
+ "single_word": false,
1865
+ "special": true
1866
+ },
1867
+ "128233": {
1868
+ "content": "<|reserved_special_token_225|>",
1869
+ "lstrip": false,
1870
+ "normalized": false,
1871
+ "rstrip": false,
1872
+ "single_word": false,
1873
+ "special": true
1874
+ },
1875
+ "128234": {
1876
+ "content": "<|reserved_special_token_226|>",
1877
+ "lstrip": false,
1878
+ "normalized": false,
1879
+ "rstrip": false,
1880
+ "single_word": false,
1881
+ "special": true
1882
+ },
1883
+ "128235": {
1884
+ "content": "<|reserved_special_token_227|>",
1885
+ "lstrip": false,
1886
+ "normalized": false,
1887
+ "rstrip": false,
1888
+ "single_word": false,
1889
+ "special": true
1890
+ },
1891
+ "128236": {
1892
+ "content": "<|reserved_special_token_228|>",
1893
+ "lstrip": false,
1894
+ "normalized": false,
1895
+ "rstrip": false,
1896
+ "single_word": false,
1897
+ "special": true
1898
+ },
1899
+ "128237": {
1900
+ "content": "<|reserved_special_token_229|>",
1901
+ "lstrip": false,
1902
+ "normalized": false,
1903
+ "rstrip": false,
1904
+ "single_word": false,
1905
+ "special": true
1906
+ },
1907
+ "128238": {
1908
+ "content": "<|reserved_special_token_230|>",
1909
+ "lstrip": false,
1910
+ "normalized": false,
1911
+ "rstrip": false,
1912
+ "single_word": false,
1913
+ "special": true
1914
+ },
1915
+ "128239": {
1916
+ "content": "<|reserved_special_token_231|>",
1917
+ "lstrip": false,
1918
+ "normalized": false,
1919
+ "rstrip": false,
1920
+ "single_word": false,
1921
+ "special": true
1922
+ },
1923
+ "128240": {
1924
+ "content": "<|reserved_special_token_232|>",
1925
+ "lstrip": false,
1926
+ "normalized": false,
1927
+ "rstrip": false,
1928
+ "single_word": false,
1929
+ "special": true
1930
+ },
1931
+ "128241": {
1932
+ "content": "<|reserved_special_token_233|>",
1933
+ "lstrip": false,
1934
+ "normalized": false,
1935
+ "rstrip": false,
1936
+ "single_word": false,
1937
+ "special": true
1938
+ },
1939
+ "128242": {
1940
+ "content": "<|reserved_special_token_234|>",
1941
+ "lstrip": false,
1942
+ "normalized": false,
1943
+ "rstrip": false,
1944
+ "single_word": false,
1945
+ "special": true
1946
+ },
1947
+ "128243": {
1948
+ "content": "<|reserved_special_token_235|>",
1949
+ "lstrip": false,
1950
+ "normalized": false,
1951
+ "rstrip": false,
1952
+ "single_word": false,
1953
+ "special": true
1954
+ },
1955
+ "128244": {
1956
+ "content": "<|reserved_special_token_236|>",
1957
+ "lstrip": false,
1958
+ "normalized": false,
1959
+ "rstrip": false,
1960
+ "single_word": false,
1961
+ "special": true
1962
+ },
1963
+ "128245": {
1964
+ "content": "<|reserved_special_token_237|>",
1965
+ "lstrip": false,
1966
+ "normalized": false,
1967
+ "rstrip": false,
1968
+ "single_word": false,
1969
+ "special": true
1970
+ },
1971
+ "128246": {
1972
+ "content": "<|reserved_special_token_238|>",
1973
+ "lstrip": false,
1974
+ "normalized": false,
1975
+ "rstrip": false,
1976
+ "single_word": false,
1977
+ "special": true
1978
+ },
1979
+ "128247": {
1980
+ "content": "<|reserved_special_token_239|>",
1981
+ "lstrip": false,
1982
+ "normalized": false,
1983
+ "rstrip": false,
1984
+ "single_word": false,
1985
+ "special": true
1986
+ },
1987
+ "128248": {
1988
+ "content": "<|reserved_special_token_240|>",
1989
+ "lstrip": false,
1990
+ "normalized": false,
1991
+ "rstrip": false,
1992
+ "single_word": false,
1993
+ "special": true
1994
+ },
1995
+ "128249": {
1996
+ "content": "<|reserved_special_token_241|>",
1997
+ "lstrip": false,
1998
+ "normalized": false,
1999
+ "rstrip": false,
2000
+ "single_word": false,
2001
+ "special": true
2002
+ },
2003
+ "128250": {
2004
+ "content": "<|reserved_special_token_242|>",
2005
+ "lstrip": false,
2006
+ "normalized": false,
2007
+ "rstrip": false,
2008
+ "single_word": false,
2009
+ "special": true
2010
+ },
2011
+ "128251": {
2012
+ "content": "<|reserved_special_token_243|>",
2013
+ "lstrip": false,
2014
+ "normalized": false,
2015
+ "rstrip": false,
2016
+ "single_word": false,
2017
+ "special": true
2018
+ },
2019
+ "128252": {
2020
+ "content": "<|reserved_special_token_244|>",
2021
+ "lstrip": false,
2022
+ "normalized": false,
2023
+ "rstrip": false,
2024
+ "single_word": false,
2025
+ "special": true
2026
+ },
2027
+ "128253": {
2028
+ "content": "<|reserved_special_token_245|>",
2029
+ "lstrip": false,
2030
+ "normalized": false,
2031
+ "rstrip": false,
2032
+ "single_word": false,
2033
+ "special": true
2034
+ },
2035
+ "128254": {
2036
+ "content": "<|reserved_special_token_246|>",
2037
+ "lstrip": false,
2038
+ "normalized": false,
2039
+ "rstrip": false,
2040
+ "single_word": false,
2041
+ "special": true
2042
+ },
2043
+ "128255": {
2044
+ "content": "<|reserved_special_token_247|>",
2045
+ "lstrip": false,
2046
+ "normalized": false,
2047
+ "rstrip": false,
2048
+ "single_word": false,
2049
+ "special": true
2050
+ }
2051
+ },
2052
+ "bos_token": "<|begin_of_text|>",
2053
+ "chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message #}\n{{- \"<|start_header_id|>system<|end_header_id|>\\n\\n\" }}\n{%- if tools is not none %}\n {{- \"Environment: ipython\\n\" }}\n{%- endif %}\n{{- \"Cutting Knowledge Date: December 2023\\n\" }}\n{{- \"Today Date: \" + date_string + \"\\n\\n\" }}\n{%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n{%- endif %}\n{{- system_message }}\n{{- \"<|eot_id|>\" }}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|start_header_id|>user<|end_header_id|>\\n\\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\\n\\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot_id|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\\n\\n'+ message['content'] | trim + '<|eot_id|>' }}\n {%- elif 'tool_calls' in message %}\n {%- if not message.tool_calls|length == 1 %}\n {{- raise_exception(\"This model only supports single tool-calls at once!\") }}\n {%- endif %}\n {%- set tool_call = message.tool_calls[0].function %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {{- \"<|eot_id|>\" }}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|start_header_id|>ipython<|end_header_id|>\\n\\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' }}\n{%- endif %}\n",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|eot_id|>",
2063
+ "tokenizer_class": "PreTrainedTokenizerFast"
2064
+ }
checkpoint-3600/trainer_state.json ADDED
@@ -0,0 +1,373 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.06249891494939324,
5
+ "eval_steps": 1000,
6
+ "global_step": 3600,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 1.736080970816479e-05,
13
+ "grad_norm": 10.5625,
14
+ "learning_rate": 2e-06,
15
+ "loss": 1.0,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.001736080970816479,
20
+ "grad_norm": 0.1513671875,
21
+ "learning_rate": 0.0002,
22
+ "loss": 0.3311,
23
+ "step": 100
24
+ },
25
+ {
26
+ "epoch": 0.003472161941632958,
27
+ "grad_norm": 0.16796875,
28
+ "learning_rate": 0.0004,
29
+ "loss": 0.2169,
30
+ "step": 200
31
+ },
32
+ {
33
+ "epoch": 0.005208242912449436,
34
+ "grad_norm": 0.10400390625,
35
+ "learning_rate": 0.0006,
36
+ "loss": 0.2032,
37
+ "step": 300
38
+ },
39
+ {
40
+ "epoch": 0.006944323883265916,
41
+ "grad_norm": 0.11279296875,
42
+ "learning_rate": 0.0008,
43
+ "loss": 0.188,
44
+ "step": 400
45
+ },
46
+ {
47
+ "epoch": 0.008680404854082394,
48
+ "grad_norm": 0.10107421875,
49
+ "learning_rate": 0.001,
50
+ "loss": 0.1758,
51
+ "step": 500
52
+ },
53
+ {
54
+ "epoch": 0.010416485824898873,
55
+ "grad_norm": 0.09521484375,
56
+ "learning_rate": 0.0012,
57
+ "loss": 0.1637,
58
+ "step": 600
59
+ },
60
+ {
61
+ "epoch": 0.012152566795715351,
62
+ "grad_norm": 0.08154296875,
63
+ "learning_rate": 0.0014,
64
+ "loss": 0.1518,
65
+ "step": 700
66
+ },
67
+ {
68
+ "epoch": 0.013888647766531832,
69
+ "grad_norm": 0.08642578125,
70
+ "learning_rate": 0.0016,
71
+ "loss": 0.1485,
72
+ "step": 800
73
+ },
74
+ {
75
+ "epoch": 0.01562472873734831,
76
+ "grad_norm": 0.1044921875,
77
+ "learning_rate": 0.0018000000000000002,
78
+ "loss": 0.1433,
79
+ "step": 900
80
+ },
81
+ {
82
+ "epoch": 0.01736080970816479,
83
+ "grad_norm": 0.05419921875,
84
+ "learning_rate": 0.002,
85
+ "loss": 0.139,
86
+ "step": 1000
87
+ },
88
+ {
89
+ "epoch": 0.01736080970816479,
90
+ "eval_covost2-en-de_loss": 1.896493673324585,
91
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
92
+ "eval_covost2-en-de_runtime": 9.8697,
93
+ "eval_covost2-en-de_samples_per_second": 6.485,
94
+ "eval_covost2-en-de_steps_per_second": 0.811,
95
+ "step": 1000
96
+ },
97
+ {
98
+ "epoch": 0.01736080970816479,
99
+ "eval_covost2-zh-en_loss": 3.1452860832214355,
100
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
101
+ "eval_covost2-zh-en_runtime": 8.3732,
102
+ "eval_covost2-zh-en_samples_per_second": 7.643,
103
+ "eval_covost2-zh-en_steps_per_second": 0.955,
104
+ "step": 1000
105
+ },
106
+ {
107
+ "epoch": 0.01736080970816479,
108
+ "eval_peoplespeech-clean-transcription_loss": 3.2206106185913086,
109
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
110
+ "eval_peoplespeech-clean-transcription_runtime": 9.6941,
111
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.602,
112
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.825,
113
+ "step": 1000
114
+ },
115
+ {
116
+ "epoch": 0.01909689067898127,
117
+ "grad_norm": 0.059814453125,
118
+ "learning_rate": 0.001999725185109816,
119
+ "loss": 0.1334,
120
+ "step": 1100
121
+ },
122
+ {
123
+ "epoch": 0.020832971649797746,
124
+ "grad_norm": 0.07373046875,
125
+ "learning_rate": 0.0019989008914857113,
126
+ "loss": 0.1288,
127
+ "step": 1200
128
+ },
129
+ {
130
+ "epoch": 0.022569052620614226,
131
+ "grad_norm": 0.049560546875,
132
+ "learning_rate": 0.00199752757218401,
133
+ "loss": 0.1262,
134
+ "step": 1300
135
+ },
136
+ {
137
+ "epoch": 0.024305133591430703,
138
+ "grad_norm": 0.0517578125,
139
+ "learning_rate": 0.001995605982021898,
140
+ "loss": 0.1222,
141
+ "step": 1400
142
+ },
143
+ {
144
+ "epoch": 0.026041214562247183,
145
+ "grad_norm": 0.058349609375,
146
+ "learning_rate": 0.0019931371771625545,
147
+ "loss": 0.1193,
148
+ "step": 1500
149
+ },
150
+ {
151
+ "epoch": 0.027777295533063663,
152
+ "grad_norm": 0.0498046875,
153
+ "learning_rate": 0.001990122514534651,
154
+ "loss": 0.1196,
155
+ "step": 1600
156
+ },
157
+ {
158
+ "epoch": 0.02951337650388014,
159
+ "grad_norm": 0.05517578125,
160
+ "learning_rate": 0.0019865636510865464,
161
+ "loss": 0.115,
162
+ "step": 1700
163
+ },
164
+ {
165
+ "epoch": 0.03124945747469662,
166
+ "grad_norm": 0.044677734375,
167
+ "learning_rate": 0.001982462542875576,
168
+ "loss": 0.115,
169
+ "step": 1800
170
+ },
171
+ {
172
+ "epoch": 0.0329855384455131,
173
+ "grad_norm": 0.05419921875,
174
+ "learning_rate": 0.001977821443992945,
175
+ "loss": 0.1125,
176
+ "step": 1900
177
+ },
178
+ {
179
+ "epoch": 0.03472161941632958,
180
+ "grad_norm": 0.047119140625,
181
+ "learning_rate": 0.001972642905324813,
182
+ "loss": 0.1094,
183
+ "step": 2000
184
+ },
185
+ {
186
+ "epoch": 0.03472161941632958,
187
+ "eval_covost2-en-de_loss": 1.6700351238250732,
188
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
189
+ "eval_covost2-en-de_runtime": 8.1279,
190
+ "eval_covost2-en-de_samples_per_second": 7.874,
191
+ "eval_covost2-en-de_steps_per_second": 0.984,
192
+ "step": 2000
193
+ },
194
+ {
195
+ "epoch": 0.03472161941632958,
196
+ "eval_covost2-zh-en_loss": 3.093877077102661,
197
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
198
+ "eval_covost2-zh-en_runtime": 8.1488,
199
+ "eval_covost2-zh-en_samples_per_second": 7.854,
200
+ "eval_covost2-zh-en_steps_per_second": 0.982,
201
+ "step": 2000
202
+ },
203
+ {
204
+ "epoch": 0.03472161941632958,
205
+ "eval_peoplespeech-clean-transcription_loss": 2.478968620300293,
206
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
207
+ "eval_peoplespeech-clean-transcription_runtime": 9.5507,
208
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.701,
209
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.838,
210
+ "step": 2000
211
+ },
212
+ {
213
+ "epoch": 0.036457700387146054,
214
+ "grad_norm": 0.048583984375,
215
+ "learning_rate": 0.0019669297731502505,
216
+ "loss": 0.1077,
217
+ "step": 2100
218
+ },
219
+ {
220
+ "epoch": 0.03819378135796254,
221
+ "grad_norm": 0.054443359375,
222
+ "learning_rate": 0.00196068518757684,
223
+ "loss": 0.1069,
224
+ "step": 2200
225
+ },
226
+ {
227
+ "epoch": 0.039929862328779014,
228
+ "grad_norm": 0.047119140625,
229
+ "learning_rate": 0.001953912580814779,
230
+ "loss": 0.1043,
231
+ "step": 2300
232
+ },
233
+ {
234
+ "epoch": 0.04166594329959549,
235
+ "grad_norm": 0.044921875,
236
+ "learning_rate": 0.0019466156752904343,
237
+ "loss": 0.1035,
238
+ "step": 2400
239
+ },
240
+ {
241
+ "epoch": 0.043402024270411975,
242
+ "grad_norm": 0.050537109375,
243
+ "learning_rate": 0.0019387984816003866,
244
+ "loss": 0.1033,
245
+ "step": 2500
246
+ },
247
+ {
248
+ "epoch": 0.04513810524122845,
249
+ "grad_norm": 0.056396484375,
250
+ "learning_rate": 0.0019304652963070869,
251
+ "loss": 0.102,
252
+ "step": 2600
253
+ },
254
+ {
255
+ "epoch": 0.04687418621204493,
256
+ "grad_norm": 0.046875,
257
+ "learning_rate": 0.0019216206995773372,
258
+ "loss": 0.0998,
259
+ "step": 2700
260
+ },
261
+ {
262
+ "epoch": 0.048610267182861405,
263
+ "grad_norm": 0.042236328125,
264
+ "learning_rate": 0.0019122695526648968,
265
+ "loss": 0.1002,
266
+ "step": 2800
267
+ },
268
+ {
269
+ "epoch": 0.05034634815367789,
270
+ "grad_norm": 0.04638671875,
271
+ "learning_rate": 0.0019024169952385887,
272
+ "loss": 0.0978,
273
+ "step": 2900
274
+ },
275
+ {
276
+ "epoch": 0.052082429124494366,
277
+ "grad_norm": 0.05126953125,
278
+ "learning_rate": 0.0018920684425573864,
279
+ "loss": 0.097,
280
+ "step": 3000
281
+ },
282
+ {
283
+ "epoch": 0.052082429124494366,
284
+ "eval_covost2-en-de_loss": 1.749150276184082,
285
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
286
+ "eval_covost2-en-de_runtime": 8.1948,
287
+ "eval_covost2-en-de_samples_per_second": 7.81,
288
+ "eval_covost2-en-de_steps_per_second": 0.976,
289
+ "step": 3000
290
+ },
291
+ {
292
+ "epoch": 0.052082429124494366,
293
+ "eval_covost2-zh-en_loss": 3.198117971420288,
294
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
295
+ "eval_covost2-zh-en_runtime": 8.1979,
296
+ "eval_covost2-zh-en_samples_per_second": 7.807,
297
+ "eval_covost2-zh-en_steps_per_second": 0.976,
298
+ "step": 3000
299
+ },
300
+ {
301
+ "epoch": 0.052082429124494366,
302
+ "eval_peoplespeech-clean-transcription_loss": 2.345036506652832,
303
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
304
+ "eval_peoplespeech-clean-transcription_runtime": 11.4402,
305
+ "eval_peoplespeech-clean-transcription_samples_per_second": 5.594,
306
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.699,
307
+ "step": 3000
308
+ },
309
+ {
310
+ "epoch": 0.05381851009531084,
311
+ "grad_norm": 0.06494140625,
312
+ "learning_rate": 0.0018812295824940284,
313
+ "loss": 0.0955,
314
+ "step": 3100
315
+ },
316
+ {
317
+ "epoch": 0.055554591066127326,
318
+ "grad_norm": 0.044677734375,
319
+ "learning_rate": 0.0018699063724087904,
320
+ "loss": 0.0951,
321
+ "step": 3200
322
+ },
323
+ {
324
+ "epoch": 0.0572906720369438,
325
+ "grad_norm": 0.0390625,
326
+ "learning_rate": 0.0018581050358751443,
327
+ "loss": 0.0947,
328
+ "step": 3300
329
+ },
330
+ {
331
+ "epoch": 0.05902675300776028,
332
+ "grad_norm": 0.056396484375,
333
+ "learning_rate": 0.0018458320592590974,
334
+ "loss": 0.0939,
335
+ "step": 3400
336
+ },
337
+ {
338
+ "epoch": 0.060762833978576763,
339
+ "grad_norm": 0.047119140625,
340
+ "learning_rate": 0.0018330941881540914,
341
+ "loss": 0.0941,
342
+ "step": 3500
343
+ },
344
+ {
345
+ "epoch": 0.06249891494939324,
346
+ "grad_norm": 0.046630859375,
347
+ "learning_rate": 0.0018198984236734246,
348
+ "loss": 0.0927,
349
+ "step": 3600
350
+ }
351
+ ],
352
+ "logging_steps": 100,
353
+ "max_steps": 14400,
354
+ "num_input_tokens_seen": 0,
355
+ "num_train_epochs": 1,
356
+ "save_steps": 3600,
357
+ "stateful_callbacks": {
358
+ "TrainerControl": {
359
+ "args": {
360
+ "should_epoch_stop": false,
361
+ "should_evaluate": false,
362
+ "should_log": false,
363
+ "should_save": true,
364
+ "should_training_stop": false
365
+ },
366
+ "attributes": {}
367
+ }
368
+ },
369
+ "total_flos": 1.65445799352533e+17,
370
+ "train_batch_size": 24,
371
+ "trial_name": null,
372
+ "trial_params": null
373
+ }
checkpoint-3600/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c1fd9b1621955a41f9e58d5a3e2b2d6a70bd41f5404ebfa5cb0ca999c290090
3
+ size 5688
checkpoint-3600/ultravox_config.py ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import dataclasses
2
+ from enum import Enum
3
+ from typing import Any, Dict, List, Optional
4
+
5
+ import transformers
6
+
7
+
8
+ @dataclasses.dataclass
9
+ class LoraConfigSimplified:
10
+ """
11
+ Low Rank Approximation (LoRA) configuration.
12
+
13
+ Used for language and audio models separately.
14
+ """
15
+
16
+ # The rank of the approximation
17
+ r: int = 0
18
+ lora_alpha: float = 8
19
+ target_modules: Optional[List[str]] = dataclasses.field(
20
+ default_factory=lambda: ["k_proj", "q_proj", "linear_k", "linear_q"]
21
+ )
22
+
23
+
24
+ class LossFunction(str, Enum):
25
+ CrossEntropy = "ce"
26
+ KL_Divergence = "kl"
27
+
28
+
29
+ @dataclasses.dataclass
30
+ class LossConfig:
31
+ loss_function: LossFunction = LossFunction.KL_Divergence
32
+ kl_temperature: float = 2.0
33
+
34
+ @property
35
+ def requires_alt_fields(self):
36
+ return self.loss_function == LossFunction.KL_Divergence
37
+
38
+
39
+ class UltravoxConfig(transformers.PretrainedConfig):
40
+ r"""
41
+ This is the configuration class to store the configuration of a [`UltravoxForConditionalGeneration`]. It is used to instantiate an
42
+ Ultravox model according to the specified arguments, defining the model architecture.
43
+
44
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
45
+ documentation from [`PretrainedConfig`] for more information.
46
+
47
+ Args:
48
+ audio_config (`Wav2Vec2Config`, *optional*):
49
+ Custom audio config or dict
50
+ text_config (`Union[AutoConfig, dict]`, *optional*):
51
+ The config object of the text backbone. Can be any of `LlamaConfig` or `MistralConfig`.
52
+ ignore_index (`int`, *optional*, defaults to -100):
53
+ The ignore index for the loss function.
54
+ audio_token_index (`int`, *optional*, defaults to 32000):
55
+ The audio token index to encode the audio prompt.
56
+ stack_factor (`int`, *optional*, defaults to 8):
57
+ Audio downsampling factor for the multimodal projector.
58
+ norm_init (`float`, *optional*, defaults to 0.4):
59
+ The initialization value for the layer normalization.
60
+ projector_act (`str`, *optional*, defaults to `"swiglu"`):
61
+ The activation function used by the multimodal projector.
62
+ text_model_lora_config (`LoraConfigSimplified`, *optional*):
63
+ The LoRA configuration for finetuning the text model.
64
+ audio_model_lora_config (`LoraConfigSimplified`, *optional*):
65
+ The LoRA configuration for finetuning the audio model.
66
+ audio_latency_block_size (`int`, *optional*, defaults to `None`):
67
+ The latency block size for simulating audio streaming.
68
+
69
+
70
+ Example:
71
+
72
+ ```python
73
+ >>> from transformers import UltravoxForConditionalGeneration, Wav2Vec2Config, UltravoxConfig, LlamaConfig
74
+
75
+ >>> # Initializing an audio encoder config
76
+ >>> audio_config = Wav2Vec2Config()
77
+
78
+ >>> # Initializing a Llama config
79
+ >>> text_config = LlamaConfig()
80
+
81
+ >>> # Initializing a default configuration
82
+ >>> configuration = UltravoxConfig(audio_config, text_config)
83
+
84
+ >>> # Initializing a completely untrained model from the configuration
85
+ >>> model = UltravoxForConditionalGeneration(configuration)
86
+
87
+ >>> # Accessing the model configuration
88
+ >>> configuration = model.config
89
+
90
+ >>> # Initialize a model from pretrained checkpoints and random projector weights
91
+ >>> config = UltravoxConfig(audio_model_id="facebook/wav2vec2-base-960h", text_model_id="meta-llama/Llama-2-7b-chat-hf")
92
+ ```"""
93
+
94
+ model_type = "ultravox"
95
+ is_composition = False
96
+
97
+ def __init__(
98
+ self,
99
+ audio_config: Optional[Dict[str, Any]] = None,
100
+ text_config: Optional[Dict[str, Any]] = None,
101
+ audio_model_id: Optional[str] = None,
102
+ text_model_id: Optional[str] = None,
103
+ ignore_index: int = -100,
104
+ hidden_size: int = 4096,
105
+ stack_factor: int = 8,
106
+ norm_init: float = 0.4,
107
+ projector_act: str = "swiglu",
108
+ text_model_lora_config: Optional[LoraConfigSimplified] = None,
109
+ audio_model_lora_config: Optional[LoraConfigSimplified] = None,
110
+ audio_latency_block_size: Optional[int] = None,
111
+ **kwargs,
112
+ ):
113
+ self.ignore_index = ignore_index
114
+
115
+ self.audio_model_id = audio_model_id
116
+ self.text_model_id = text_model_id
117
+
118
+ self.hidden_size = hidden_size
119
+ self.stack_factor = stack_factor
120
+ self.norm_init = norm_init
121
+ self.projector_act = projector_act
122
+
123
+ if text_model_id is not None:
124
+ self.text_config: transformers.LlamaConfig = (
125
+ transformers.AutoConfig.from_pretrained(text_model_id)
126
+ )
127
+ else:
128
+ text_config = text_config or {}
129
+ self.text_config = transformers.CONFIG_MAPPING[
130
+ text_config.get("model_type", "llama")
131
+ ](**text_config)
132
+
133
+ if audio_model_id is not None:
134
+ self.audio_config: transformers.PretrainedConfig = (
135
+ transformers.AutoConfig.from_pretrained(audio_model_id)
136
+ )
137
+ else:
138
+ audio_config = audio_config or {}
139
+ self.audio_config = transformers.CONFIG_MAPPING[
140
+ audio_config.get("model_type", "wav2vec2")
141
+ ](**audio_config)
142
+
143
+ self.text_model_lora_config = (
144
+ text_model_lora_config
145
+ if isinstance(text_model_lora_config, dict)
146
+ else dataclasses.asdict(text_model_lora_config or LoraConfigSimplified())
147
+ )
148
+ self.audio_model_lora_config = (
149
+ audio_model_lora_config
150
+ if isinstance(audio_model_lora_config, dict)
151
+ else dataclasses.asdict(audio_model_lora_config or LoraConfigSimplified())
152
+ )
153
+ self.audio_latency_block_size = audio_latency_block_size
154
+
155
+ self.vocab_size = self.text_config.vocab_size
156
+
157
+ self.initializer_range = self.text_config.initializer_range
158
+
159
+ super().__init__(**kwargs)
160
+
161
+ def to_diff_dict(self) -> Dict[str, Any]:
162
+ diff_dict = super().to_diff_dict()
163
+
164
+ # remove text_config and audio_config if text_model_id and audio_model_id are present
165
+ if self.text_model_id is not None:
166
+ diff_dict.pop("text_config", None)
167
+ if self.audio_model_id is not None:
168
+ diff_dict.pop("audio_config", None)
169
+
170
+ return diff_dict
checkpoint-3600/ultravox_model.py ADDED
@@ -0,0 +1,723 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import logging
2
+ from typing import Any, Dict, Optional, Set, Tuple, Union
3
+
4
+ import peft
5
+ import torch
6
+ import torch.nn as nn
7
+ import torch.nn.functional as F
8
+ import transformers
9
+ import transformers.activations
10
+ import transformers.modeling_outputs
11
+ import transformers.models
12
+ from transformers.models.whisper import modeling_whisper as whisper
13
+
14
+ # We must use relative import in this directory to allow uploading to HF Hub
15
+ # Even "from . import X" pattern doesn't work (undocumented and unclear why)
16
+ from .ultravox_config import LossConfig
17
+ from .ultravox_config import LossFunction
18
+ from .ultravox_config import UltravoxConfig
19
+
20
+
21
+ class UltravoxModel(transformers.LlamaPreTrainedModel):
22
+ """
23
+ The Ultravox model which consists of an audio encoder and a language model.
24
+
25
+ Audio input is processed by the audio encoder, then every `stack_factor` frames are stacked together and
26
+ projected to the language model's embedding space using a few linear layers.
27
+ The text is embedded by the language model as usual and then the audio and text embeddings are merged together.
28
+
29
+ A special token `<|audio|>` is used to indicate the start of the audio embeddings in the merged embeddings.
30
+
31
+ Parameters:
32
+ config: Model configuration class with all the parameters of the model.
33
+ """
34
+
35
+ config_class = UltravoxConfig
36
+ config: UltravoxConfig # for type hinting
37
+ # Usually we load encoder and LLM weights from a pretrained model separately, so they are allowed to be missing
38
+ _keys_to_ignore_on_load_missing = ["audio_tower.*", "language_model.*"]
39
+
40
+ def __init__(self, config: UltravoxConfig):
41
+ super().__init__(config)
42
+ self._register_load_state_dict_pre_hook(self._pre_load_state_dict_hook)
43
+
44
+ self.keep_params: Set[str] = set()
45
+ self.vocab_size = config.vocab_size
46
+
47
+ self.audio_tower = self._create_audio_tower(config)
48
+ self.multi_modal_projector = self._create_multi_modal_projector(config)
49
+ self.language_model = self._create_language_model(config)
50
+
51
+ # Determine no_split_modules dynamically to use with FSDP auto_wrap policy.
52
+ # FSDP throws an error if some of the layer types are not found in the model.
53
+ # This would be something like ["LlamaDecoderLayer", "WhisperEncoderLayer"]
54
+ self._no_split_modules = (self.language_model._no_split_modules or []) + (
55
+ self.audio_tower._no_split_modules or []
56
+ )
57
+
58
+ self.loss_config = LossConfig()
59
+ self.post_init()
60
+
61
+ def get_input_embeddings(self):
62
+ return self.language_model.get_input_embeddings()
63
+
64
+ def set_input_embeddings(self, value):
65
+ self.language_model.set_input_embeddings(value)
66
+
67
+ def get_output_embeddings(self):
68
+ return self.language_model.get_output_embeddings()
69
+
70
+ def set_output_embeddings(self, new_embeddings):
71
+ self.language_model.set_output_embeddings(new_embeddings)
72
+
73
+ def set_decoder(self, decoder):
74
+ self.language_model.set_decoder(decoder)
75
+
76
+ def get_decoder(self):
77
+ return self.language_model.get_decoder()
78
+
79
+ def tie_weights(self):
80
+ return self.language_model.tie_weights()
81
+
82
+ def set_loss_config(self, loss_config: LossConfig):
83
+ self.loss_config = loss_config
84
+
85
+ def _setup_cache(
86
+ self, cache_cls, max_batch_size: int, max_cache_len: Optional[int] = None
87
+ ):
88
+ self.language_model._setup_cache(cache_cls, max_batch_size, max_cache_len)
89
+
90
+ def _reorder_cache(self, past_key_values, beam_idx):
91
+ return self.language_model._reorder_cache(past_key_values, beam_idx)
92
+
93
+ def resize_token_embeddings(
94
+ self,
95
+ new_num_tokens: Optional[int] = None,
96
+ pad_to_multiple_of: Optional[int] = None,
97
+ ) -> nn.Embedding:
98
+ model_embeds = self.language_model.resize_token_embeddings(
99
+ new_num_tokens, pad_to_multiple_of
100
+ )
101
+ # update vocab size
102
+ self.config.text_config.vocab_size = model_embeds.num_embeddings
103
+ self.config.vocab_size = model_embeds.num_embeddings
104
+ self.vocab_size = model_embeds.num_embeddings
105
+ return model_embeds
106
+
107
+ def _compute_kl_loss(
108
+ self,
109
+ lm_output: transformers.modeling_outputs.CausalLMOutputWithPast,
110
+ labels: Optional[torch.Tensor] = None,
111
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
112
+ alt_input_ids: Optional[torch.Tensor] = None,
113
+ alt_attention_mask: Optional[torch.Tensor] = None,
114
+ alt_labels: Optional[torch.Tensor] = None,
115
+ **kwargs,
116
+ ):
117
+ # disable gradient computation for the teacher model
118
+ with torch.no_grad():
119
+ # compute the teacher (text-only) model's distribution
120
+ alt_inputs_embeds = self.get_input_embeddings().forward(alt_input_ids)
121
+ alt_lm_output = self.language_model.forward(
122
+ inputs_embeds=alt_inputs_embeds,
123
+ labels=alt_labels,
124
+ attention_mask=alt_attention_mask,
125
+ past_key_values=past_key_values,
126
+ **kwargs,
127
+ )
128
+ # compute the KL divergence loss between the two models
129
+ kl_loss = F.kl_div(
130
+ F.log_softmax(
131
+ lm_output.logits[labels != -100] / self.loss_config.kl_temperature,
132
+ dim=-1,
133
+ ),
134
+ F.softmax(
135
+ alt_lm_output.logits[alt_labels != -100]
136
+ / self.loss_config.kl_temperature,
137
+ dim=-1,
138
+ ),
139
+ reduction="batchmean",
140
+ )
141
+ return {"loss": kl_loss}
142
+
143
+ def forward(
144
+ self,
145
+ input_ids: torch.Tensor,
146
+ audio_values: Optional[torch.FloatTensor] = None,
147
+ inputs_embeds: Optional[torch.FloatTensor] = None,
148
+ labels: Optional[torch.Tensor] = None,
149
+ attention_mask: Optional[torch.Tensor] = None,
150
+ audio_token_start_idx: Optional[torch.Tensor] = None,
151
+ audio_len: Optional[torch.Tensor] = None,
152
+ audio_token_len: Optional[torch.Tensor] = None,
153
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
154
+ # the alt_* fields are needed for KL divergence loss
155
+ alt_input_ids: Optional[torch.Tensor] = None,
156
+ alt_attention_mask: Optional[torch.Tensor] = None,
157
+ alt_labels: Optional[torch.Tensor] = None,
158
+ **kwargs,
159
+ ) -> Union[Tuple, transformers.modeling_outputs.CausalLMOutputWithPast]:
160
+ """
161
+ Forward pass for the Ultravox model.
162
+
163
+ `input_ids` are the tokenized text input. They are embedded by the language model as usual.
164
+ `audio_values` are processed by the audio encoder and then every `stack_factor` frames are stacked together and
165
+ projected to the language model's embedding space using a few linear layers.
166
+ The audio and text embeddings are merged together. A special token `<|audio|>` is used to indicate the start
167
+ of the audio embeddings in the merged embeddings.
168
+
169
+ Args:
170
+ input_ids: The tokenized text input.
171
+ audio_values: The processed audio values.
172
+ inputs_embeds: The embeddings for the input tokens.
173
+ labels: The tokenized text labels.
174
+ attention_mask: The attention mask for the input.
175
+ position_ids: The position ids for the input.
176
+ past_key_values: The past key value cache for the language model attention layers.
177
+ **kwargs: Additional keyword arguments. Passed directly to the language model.
178
+ """
179
+ if inputs_embeds is None:
180
+ # B x T -> B x T x D
181
+ inputs_embeds = self.get_input_embeddings().forward(input_ids)
182
+
183
+ if audio_values is not None:
184
+ assert (
185
+ audio_token_start_idx is not None and audio_token_len is not None
186
+ ), "audio_token_start_idx and audio_token_len must be provided if audio_values are provided."
187
+ assert (
188
+ len(audio_token_start_idx) == len(audio_token_len) == len(audio_values)
189
+ ), "audio_token_start_idx, audio_token_len, and audio_values must have the same batch size."
190
+
191
+ # B x A/3200 x D
192
+ audio_tower_output = self.audio_tower.forward(
193
+ audio_values.to(self.audio_tower.dtype),
194
+ audio_len=audio_len,
195
+ ).last_hidden_state
196
+ audio_tower_output = audio_tower_output.to(inputs_embeds.dtype)
197
+
198
+ audio_embeds = self.multi_modal_projector.forward(audio_tower_output)
199
+
200
+ # combine audio and text embeddings
201
+ for i, (audio, start, length) in enumerate(
202
+ zip(audio_embeds, audio_token_start_idx, audio_token_len)
203
+ ):
204
+ length = min(length, audio.shape[0])
205
+ inputs_embeds[i, start : start + length] = audio[:length]
206
+
207
+ lm_output = self.language_model.forward(
208
+ inputs_embeds=inputs_embeds,
209
+ labels=labels,
210
+ attention_mask=attention_mask,
211
+ past_key_values=past_key_values,
212
+ **kwargs,
213
+ )
214
+ if self.training:
215
+ if self.loss_config.loss_function == LossFunction.CrossEntropy:
216
+ return lm_output
217
+ elif self.loss_config.loss_function == LossFunction.KL_Divergence:
218
+ return self._compute_kl_loss(
219
+ lm_output=lm_output,
220
+ labels=labels,
221
+ past_key_values=past_key_values,
222
+ alt_input_ids=alt_input_ids,
223
+ alt_attention_mask=alt_attention_mask,
224
+ alt_labels=alt_labels,
225
+ **kwargs,
226
+ )
227
+ else:
228
+ raise ValueError(
229
+ f"Unsupported loss function: {self.loss_config.loss_function}"
230
+ )
231
+ else:
232
+ return lm_output
233
+
234
+ def prepare_inputs_for_generation(
235
+ self,
236
+ input_ids: torch.Tensor,
237
+ audio_values: Optional[torch.FloatTensor] = None,
238
+ audio_token_start_idx: Optional[torch.Tensor] = None,
239
+ audio_token_len: Optional[torch.Tensor] = None,
240
+ audio_len: Optional[torch.Tensor] = None,
241
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]] = None,
242
+ attention_mask: Optional[torch.Tensor] = None,
243
+ inputs_embeds: Optional[torch.Tensor] = None,
244
+ cache_position: Optional[torch.Tensor] = None,
245
+ **kwargs,
246
+ ) -> Dict[str, Any]:
247
+ model_input = self.language_model.prepare_inputs_for_generation(
248
+ input_ids=input_ids,
249
+ past_key_values=past_key_values,
250
+ attention_mask=attention_mask,
251
+ inputs_embeds=inputs_embeds,
252
+ cache_position=cache_position,
253
+ **kwargs,
254
+ )
255
+
256
+ # include audio information in model_input only when it is needed during prefilling
257
+ # audio_token_start_idx should always be relative to the current cache position
258
+ prefill_start_idx = 0 if cache_position is None else cache_position[0]
259
+ if (
260
+ audio_values is not None
261
+ and audio_token_start_idx is not None
262
+ and prefill_start_idx <= torch.max(audio_token_start_idx)
263
+ ):
264
+ model_input["audio_values"] = audio_values
265
+ model_input["audio_token_start_idx"] = (
266
+ audio_token_start_idx - prefill_start_idx
267
+ )
268
+ model_input["audio_token_len"] = audio_token_len
269
+ model_input["audio_len"] = audio_len
270
+
271
+ return model_input
272
+
273
+ @classmethod
274
+ def _create_multi_modal_projector(
275
+ cls, config: UltravoxConfig
276
+ ) -> "UltravoxProjector":
277
+ projector = UltravoxProjector(config)
278
+ projector.to(config.torch_dtype)
279
+ return projector
280
+
281
+ @classmethod
282
+ def _create_audio_tower(
283
+ cls, config: UltravoxConfig
284
+ ) -> Union[transformers.Wav2Vec2Model, "ModifiedWhisperEncoder"]:
285
+ if config.audio_model_id is not None:
286
+ if "whisper" in config.audio_model_id is not None:
287
+ audio_tower = ModifiedWhisperEncoder.from_pretrained(
288
+ config.audio_model_id, torch_dtype=config.torch_dtype
289
+ )
290
+ audio_tower.init_latency_mask(
291
+ config.audio_latency_block_size, dtype=config.torch_dtype
292
+ )
293
+ else:
294
+ assert config.audio_latency_block_size in (
295
+ None,
296
+ 0,
297
+ ), "only whisper audio tower supports audio latency masking, got non-zero value for 'audio_latency_block_size'"
298
+ audio_tower = transformers.AutoModel.from_pretrained(
299
+ config.audio_model_id, torch_dtype=config.torch_dtype
300
+ )
301
+ else:
302
+ if "whisper" in config.audio_config._name_or_path:
303
+ audio_tower = ModifiedWhisperEncoder(config.audio_config)
304
+ audio_tower.init_latency_mask(
305
+ config.audio_latency_block_size, dtype=config.torch_dtype
306
+ )
307
+ else:
308
+ assert config.audio_latency_block_size in (
309
+ None,
310
+ 0,
311
+ ), "only whisper audio tower supports audio latency masking, got non-zero value for 'audio_latency_block_size'"
312
+ with transformers.modeling_utils.no_init_weights():
313
+ # we only ever use from_config if the weights are retrained, hence initializing is not
314
+ # required. This makes the model quite creation faster since init on CPU is quite slow.
315
+ audio_tower = transformers.AutoModel.from_config(
316
+ config.audio_config
317
+ )
318
+
319
+ if isinstance(
320
+ audio_tower,
321
+ (transformers.Wav2Vec2BertModel, transformers.WhisperModel),
322
+ ):
323
+ # For these models we only need the encoder part
324
+ # Wav2Vec2BertModel -> Wav2Vec2BertEncoder
325
+ # WhisperModel -> WhisperEncoder
326
+ audio_tower = audio_tower.encoder
327
+
328
+ audio_tower = apply_lora(audio_tower, config.audio_model_lora_config)
329
+ return audio_tower
330
+
331
+ @classmethod
332
+ def _create_language_model(
333
+ cls, config: UltravoxConfig
334
+ ) -> transformers.LlamaForCausalLM:
335
+ if config.text_model_id is not None:
336
+ language_model = transformers.AutoModelForCausalLM.from_pretrained(
337
+ config.text_model_id,
338
+ attn_implementation=config._attn_implementation,
339
+ torch_dtype=config.torch_dtype,
340
+ )
341
+ else:
342
+ with transformers.modeling_utils.no_init_weights():
343
+ # we only ever use from_config if the weights are retrained, hence initializing is not
344
+ # required. This makes the model quite creation faster since init on CPU is quite slow.
345
+ language_model = transformers.AutoModelForCausalLM.from_config(
346
+ config.text_config,
347
+ attn_implementation=config._attn_implementation,
348
+ torch_dtype=config.torch_dtype,
349
+ )
350
+
351
+ language_model = apply_lora(language_model, config.text_model_lora_config)
352
+ return language_model
353
+
354
+ def merge_and_unload(self):
355
+ if isinstance(self.language_model, peft.PeftModel):
356
+ self.language_model = self.language_model.merge_and_unload()
357
+ # no need to download base language model weights anymore, so we can remove the id
358
+ self.config.text_model_id = None
359
+ self.keep_params.update(
360
+ set(
361
+ [
362
+ f"language_model.{name}"
363
+ for name, _ in self.language_model.named_parameters()
364
+ ]
365
+ )
366
+ )
367
+
368
+ if isinstance(self.audio_tower, peft.PeftModel):
369
+ self.audio_tower = self.audio_tower.merge_and_unload()
370
+ # no need to download base audio model weights anymore, so we can remove the id
371
+ self.config.audio_model_id = None
372
+ self.keep_params.update(
373
+ set(
374
+ [
375
+ f"audio_tower.{name}"
376
+ for name, _ in self.audio_tower.named_parameters()
377
+ ]
378
+ )
379
+ )
380
+
381
+ for param in ["text_model_lora_config", "audio_model_lora_config"]:
382
+ if hasattr(self.config, param):
383
+ delattr(self.config, param)
384
+
385
+ def push_to_hub(self, *args, **kwargs):
386
+ self.merge_and_unload()
387
+ self.to(self.language_model.dtype)
388
+ return super().push_to_hub(*args, **kwargs)
389
+
390
+ def save_pretrained(
391
+ self, *args, state_dict: Optional[Dict[str, Any]] = None, **kwargs
392
+ ):
393
+ if state_dict is None:
394
+ state_dict = super().state_dict()
395
+
396
+ named_params = dict(self.named_parameters())
397
+
398
+ state_dict = {
399
+ k: v
400
+ for k, v in state_dict.items()
401
+ if k in self.keep_params
402
+ or (k in named_params and named_params[k].requires_grad)
403
+ }
404
+
405
+ super().save_pretrained(*args, state_dict=state_dict, **kwargs)
406
+
407
+ def _pre_load_state_dict_hook(self, state_dict: Dict[str, Any], *args, **kwargs):
408
+ self.keep_params.update(set(state_dict.keys()))
409
+
410
+ def print_trainable_parameters(self):
411
+ """
412
+ Prints the number of trainable parameters in the model (reuses Peft model's method)
413
+ """
414
+ count_params = peft.peft_model.PeftModel.get_nb_trainable_parameters
415
+
416
+ trainable_params, all_param = count_params(self)
417
+
418
+ logging.info(
419
+ f"trainable params: {trainable_params:,d} || all params: {all_param:,d}"
420
+ f" || trainable%: {100 * trainable_params / all_param:.1f}%"
421
+ )
422
+
423
+ lm_trainable_params, lm_all_params = count_params(self.language_model)
424
+ audio_trainable_params, audio_all_params = count_params(self.audio_tower)
425
+
426
+ projector_trainable_params = (
427
+ trainable_params - lm_trainable_params - audio_trainable_params
428
+ )
429
+ projector_all_params = all_param - lm_all_params - audio_all_params
430
+
431
+ logging.info(
432
+ f"Trainable%: "
433
+ f" LLM: {100 * lm_trainable_params / lm_all_params:.1f}%"
434
+ f" || Audio Encoder: {100 * audio_trainable_params / audio_all_params:.1f}%"
435
+ f" || Projector: {100 * projector_trainable_params / projector_all_params:.1f}%"
436
+ )
437
+
438
+
439
+ def is_cache_empty(
440
+ past_key_values: Optional[Union[Tuple, transformers.cache_utils.Cache]]
441
+ ) -> bool:
442
+ """
443
+ Check if the cache is empty.
444
+ """
445
+ if past_key_values is None:
446
+ return True
447
+ if isinstance(past_key_values, tuple):
448
+ return all(len(c) == 0 for c in past_key_values)
449
+ return past_key_values.get_seq_length() == 0
450
+
451
+
452
+ def apply_lora(model: torch.nn.Module, lora_config: dict) -> torch.nn.Module:
453
+ """
454
+ Applies LoRA finetuning to the model. If the `r` parameter is set to 0, the model is frozen instead.
455
+ """
456
+ lora_config = peft.LoraConfig(**lora_config or {})
457
+
458
+ if lora_config.r == 0:
459
+ # freeze the model entirely
460
+ for param in model.parameters():
461
+ param.requires_grad = False
462
+ else:
463
+ model = peft.get_peft_model(model, lora_config)
464
+
465
+ return model
466
+
467
+
468
+ class StackAudioFrames(nn.Module):
469
+ """
470
+ Stack the audio embedding frames to reduce the sequence length by a factor of `stack_factor`.
471
+
472
+ The number of output frames will be `ceil(T / stack_factor) + 1` where `T` is the number of input frames.
473
+ NOTE: the extra +1 is intentional: in case the number of audio tokens are over-estimated by the processor,
474
+ we want to make sure `processor.audio_token_replacement` (i.e. EOS) doesn't get leaked into the middle of embeddings.
475
+ In most cases this extra padding will get removed in the model's forward function so it has no effect.
476
+ """
477
+
478
+ def __init__(self, stack_factor: int = 8):
479
+ super().__init__()
480
+ self.stack_factor = stack_factor
481
+
482
+ def forward(self, audio_embeds: torch.Tensor) -> torch.Tensor:
483
+ B, T, C = audio_embeds.shape
484
+ T_pad = (T + self.stack_factor - 1) // self.stack_factor * self.stack_factor
485
+ audio_embeds = F.pad(audio_embeds, (0, 0, 0, T_pad - T + self.stack_factor))
486
+ B, T, C = audio_embeds.shape
487
+ audio_embeds = audio_embeds.view(
488
+ B, T // self.stack_factor, C * self.stack_factor
489
+ )
490
+ return audio_embeds
491
+
492
+
493
+ class RMSNorm(transformers.models.llama.modeling_llama.LlamaRMSNorm):
494
+ def __init__(self, hidden_size: int, init: float = 1, eps: float = 1e-6):
495
+ super().__init__(hidden_size=hidden_size, eps=eps)
496
+ self.weight.data.fill_(init)
497
+
498
+
499
+ class SwiGLU(nn.Module):
500
+ def forward(self, x):
501
+ x, gate = x.chunk(2, dim=-1)
502
+ return F.silu(gate) * x
503
+
504
+
505
+ class UltravoxProjector(nn.Sequential):
506
+ def __init__(self, config: UltravoxConfig):
507
+ super().__init__()
508
+ self.hidden_dim = config.hidden_size
509
+ self._pad_and_stack = StackAudioFrames(config.stack_factor)
510
+ dim = config.audio_config.hidden_size * config.stack_factor
511
+ self.ln_pre = RMSNorm(dim, init=config.norm_init)
512
+ self.linear_1 = nn.Linear(dim, self.hidden_dim, bias=False)
513
+ dim = self.hidden_dim
514
+ self.act = transformers.activations.get_activation(config.projector_act)
515
+ dim = dim // 2 if config.projector_act == "swiglu" else dim
516
+ self.linear_2 = nn.Linear(dim, config.text_config.hidden_size, bias=False)
517
+ self.ln_post = RMSNorm(config.text_config.hidden_size, init=config.norm_init)
518
+
519
+ def forward(self, audio_features: torch.Tensor) -> torch.Tensor:
520
+ audio_features = self._pad_and_stack(audio_features)
521
+ audio_features = self.ln_pre(audio_features)
522
+ hidden_states = self.linear_1(audio_features)
523
+ hidden_states = self.act(hidden_states)
524
+ hidden_states = self.linear_2(hidden_states)
525
+ hidden_states = self.ln_post(hidden_states)
526
+ return hidden_states
527
+
528
+
529
+ class ModifiedWhisperEncoder(
530
+ whisper.WhisperEncoder, transformers.modeling_utils.ModuleUtilsMixin
531
+ ):
532
+ """
533
+ Encoder portion of OpenAI's Whisper model.
534
+
535
+ This implementation is a slightly modified version of HF Transformers' Whisper Encoder, with only a few fixes:
536
+ 1. base_model_prefix updated to allow for doing `.from_pretrained` directly on the encoder
537
+ 2. allow less than 30 second of audio padding to be passed in:
538
+ - relaxed ValueError check for `input_features` length to be less than or equal to `expected_seq_length` instead of strictly equal
539
+ - embed_pos is now sliced to match the length of `inputs_embeds`
540
+
541
+ Original: https://github.com/huggingface/transformers/blob/main/src/transformers/models/whisper/modeling_whisper.py
542
+ """
543
+
544
+ base_model_prefix = "model.encoder"
545
+ _no_split_modules = ["WhisperEncoderLayer"]
546
+
547
+ def init_latency_mask(self, audio_latency_block_size: int, dtype: torch.dtype):
548
+ if audio_latency_block_size is None:
549
+ self.audio_streaming_mask = None
550
+ return
551
+
552
+ # maximum sequence length
553
+ max_seqlen = (
554
+ self.config.max_source_positions
555
+ * self.conv1.stride[0]
556
+ * self.conv2.stride[0]
557
+ )
558
+ assert (
559
+ max_seqlen > 0
560
+ ), f"maximum sequence length must be positive, got {max_seqlen}"
561
+ assert (
562
+ max_seqlen % audio_latency_block_size == 0
563
+ ), f"audio_latency_block_size {audio_latency_block_size} must divide {max_seqlen} evenly."
564
+ # Given the block size, we calculate number of blocks.
565
+ audio_latency_nblocks = max_seqlen // audio_latency_block_size
566
+ audio_streaming_mask = (
567
+ torch.tril(
568
+ torch.ones(audio_latency_nblocks, audio_latency_nblocks),
569
+ diagonal=0,
570
+ )
571
+ .repeat_interleave(audio_latency_block_size, dim=0)
572
+ .repeat_interleave(audio_latency_block_size, dim=1)
573
+ )
574
+ audio_streaming_mask = (1.0 - audio_streaming_mask) * torch.finfo(dtype).min
575
+ audio_streaming_mask = audio_streaming_mask[None, None, :, :]
576
+ self.register_buffer(
577
+ "audio_streaming_mask", audio_streaming_mask, persistent=False
578
+ )
579
+
580
+ def forward(
581
+ self,
582
+ input_features,
583
+ audio_len=None,
584
+ head_mask=None,
585
+ output_attentions=None,
586
+ output_hidden_states=None,
587
+ return_dict=None,
588
+ ):
589
+ expected_seq_length = (
590
+ self.config.max_source_positions
591
+ * self.conv1.stride[0]
592
+ * self.conv2.stride[0]
593
+ )
594
+ if input_features.shape[-1] > expected_seq_length:
595
+ raise ValueError(
596
+ f"Whisper expects the mel input features to be of length {expected_seq_length} or less, but found {input_features.shape[-1]}. Make sure to pad the input mel features to {expected_seq_length}."
597
+ )
598
+
599
+ output_attentions = (
600
+ output_attentions
601
+ if output_attentions is not None
602
+ else self.config.output_attentions
603
+ )
604
+ output_hidden_states = (
605
+ output_hidden_states
606
+ if output_hidden_states is not None
607
+ else self.config.output_hidden_states
608
+ )
609
+ return_dict = (
610
+ return_dict if return_dict is not None else self.config.use_return_dict
611
+ )
612
+ inputs_embeds = nn.functional.gelu(self.conv1(input_features))
613
+ inputs_embeds = nn.functional.gelu(self.conv2(inputs_embeds))
614
+
615
+ inputs_embeds = inputs_embeds.permute(0, 2, 1)
616
+ embed_pos = self.embed_positions.weight[: inputs_embeds.size(-2)]
617
+
618
+ hidden_states = inputs_embeds + embed_pos
619
+ hidden_states = nn.functional.dropout(
620
+ hidden_states, p=self.dropout, training=self.training
621
+ )
622
+
623
+ encoder_states = () if output_hidden_states else None
624
+ all_attentions = () if output_attentions else None
625
+
626
+ # Create attention mask based on audio lengths to mask out padding tokens
627
+ # For each sample in batch:
628
+ # - Convert raw audio length to feature length after convolutions
629
+ # - Create boolean mask that is True for valid positions and False for padding
630
+ # - Convert to extended attention mask format expected by transformer layers
631
+ # (1.0 for positions to attend to, large negative for positions to ignore)
632
+ # This masking ensures consistent behavior between training and inference
633
+ # by preventing the model from attending to padding tokens in both cases
634
+ attention_mask = None
635
+ if audio_len != None:
636
+ audio_feature_len = self._get_feat_extract_output_lengths(audio_len)
637
+ max_seq_len = hidden_states.shape[1]
638
+ attention_mask = torch.arange(max_seq_len, device=hidden_states.device)[
639
+ None, :
640
+ ].lt(audio_feature_len.view(-1, 1))
641
+ attention_mask = self.get_extended_attention_mask(
642
+ attention_mask,
643
+ None,
644
+ device=hidden_states.device,
645
+ dtype=hidden_states.dtype,
646
+ )
647
+
648
+ if self.audio_streaming_mask is not None:
649
+ seqlen = hidden_states.size(-2)
650
+ if attention_mask is not None:
651
+ attention_mask = torch.minimum(
652
+ self.audio_streaming_mask[:, :, :seqlen, :seqlen], attention_mask
653
+ ) # merge
654
+ else:
655
+ attention_mask = self.audio_streaming_mask[:, :, :seqlen, :seqlen]
656
+ attention_mask = attention_mask.to(hidden_states.dtype)
657
+
658
+ # check if head_mask has a correct number of layers specified if desired
659
+ if head_mask is not None:
660
+ assert head_mask.size()[0] == (
661
+ len(self.layers)
662
+ ), f"The head_mask should be specified for {len(self.layers)} layers, but it is for {head_mask.size()[0]}."
663
+
664
+ for idx, encoder_layer in enumerate(self.layers):
665
+ if output_hidden_states:
666
+ encoder_states = encoder_states + (hidden_states,)
667
+ # add LayerDrop (see https://arxiv.org/abs/1909.11556 for description)
668
+ to_drop = False
669
+ if self.training:
670
+ dropout_probability = torch.rand([])
671
+ if dropout_probability < self.layerdrop: # skip the layer
672
+ to_drop = True
673
+
674
+ if to_drop:
675
+ layer_outputs = (None, None)
676
+ else:
677
+ if self.gradient_checkpointing and self.training:
678
+ layer_outputs = self._gradient_checkpointing_func(
679
+ encoder_layer.__call__,
680
+ hidden_states,
681
+ attention_mask,
682
+ (head_mask[idx] if head_mask is not None else None),
683
+ output_attentions,
684
+ )
685
+ else:
686
+ layer_outputs = encoder_layer(
687
+ hidden_states,
688
+ attention_mask,
689
+ layer_head_mask=(
690
+ head_mask[idx] if head_mask is not None else None
691
+ ),
692
+ output_attentions=output_attentions,
693
+ )
694
+
695
+ hidden_states = layer_outputs[0]
696
+
697
+ if output_attentions:
698
+ all_attentions = all_attentions + (layer_outputs[1],)
699
+
700
+ hidden_states = self.layer_norm(hidden_states)
701
+ if output_hidden_states:
702
+ encoder_states = encoder_states + (hidden_states,)
703
+
704
+ if not return_dict:
705
+ return tuple(
706
+ v
707
+ for v in [hidden_states, encoder_states, all_attentions]
708
+ if v is not None
709
+ )
710
+ return transformers.modeling_outputs.BaseModelOutput(
711
+ last_hidden_state=hidden_states,
712
+ hidden_states=encoder_states,
713
+ attentions=all_attentions,
714
+ )
715
+
716
+
717
+ UltravoxConfig.register_for_auto_class()
718
+ UltravoxModel.register_for_auto_class()
719
+
720
+ transformers.AutoConfig.register("ultravox", UltravoxConfig)
721
+ transformers.AutoModel.register(UltravoxConfig, UltravoxModel)
722
+
723
+ transformers.activations.ACT2FN["swiglu"] = SwiGLU
checkpoint-7200/config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "UltravoxModel"
4
+ ],
5
+ "audio_latency_block_size": null,
6
+ "audio_model_id": "openai/whisper-large-v3-turbo",
7
+ "audio_model_lora_config": {
8
+ "lora_alpha": 8,
9
+ "r": 0,
10
+ "target_modules": [
11
+ "k_proj",
12
+ "q_proj",
13
+ "linear_k",
14
+ "linear_q"
15
+ ]
16
+ },
17
+ "auto_map": {
18
+ "AutoConfig": "ultravox_config.UltravoxConfig",
19
+ "AutoModel": "ultravox_model.UltravoxModel"
20
+ },
21
+ "hidden_size": 4096,
22
+ "ignore_index": -100,
23
+ "initializer_range": 0.02,
24
+ "model_type": "ultravox",
25
+ "norm_init": 0.4,
26
+ "pad_token_id": 128009,
27
+ "projector_act": "swiglu",
28
+ "stack_factor": 8,
29
+ "text_model_id": "meta-llama/Llama-3.2-1B-Instruct",
30
+ "text_model_lora_config": {
31
+ "lora_alpha": 8,
32
+ "r": 0,
33
+ "target_modules": [
34
+ "k_proj",
35
+ "q_proj",
36
+ "linear_k",
37
+ "linear_q"
38
+ ]
39
+ },
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.47.0",
42
+ "vocab_size": 128256
43
+ }
checkpoint-7200/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 128000,
4
+ "eos_token_id": [
5
+ 128001,
6
+ 128008,
7
+ 128009
8
+ ],
9
+ "pad_token_id": 128009,
10
+ "transformers_version": "4.47.0"
11
+ }
checkpoint-7200/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a03a8462cd861fa207927453b82db5d25ae96993e8bc8bcb061061b5f233792
3
+ size 92299736
checkpoint-7200/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6ecb44d60282528d473d70738c9b0e1a9e11819f2aefac6bedeeb5b73291e26
3
+ size 184602962
checkpoint-7200/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28133004bd3f54b7faa1910be0d01d2fac0bd8891365545529d0dcbedee0f3e8
3
+ size 14244
checkpoint-7200/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14976c1b3dd2b157698f792725a91270a736615d07a5dd5eae32d2ba4a41d313
3
+ size 1064
checkpoint-7200/special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|eot_id|>"
17
+ }
checkpoint-7200/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-7200/tokenizer_config.json ADDED
@@ -0,0 +1,2064 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "128000": {
4
+ "content": "<|begin_of_text|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "128001": {
12
+ "content": "<|end_of_text|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "128002": {
20
+ "content": "<|reserved_special_token_0|>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "128003": {
28
+ "content": "<|reserved_special_token_1|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "128004": {
36
+ "content": "<|finetune_right_pad_id|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "128005": {
44
+ "content": "<|reserved_special_token_2|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "128006": {
52
+ "content": "<|start_header_id|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "128007": {
60
+ "content": "<|end_header_id|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "128008": {
68
+ "content": "<|eom_id|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "128009": {
76
+ "content": "<|eot_id|>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "128010": {
84
+ "content": "<|python_tag|>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "128011": {
92
+ "content": "<|reserved_special_token_3|>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "128012": {
100
+ "content": "<|reserved_special_token_4|>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "128013": {
108
+ "content": "<|reserved_special_token_5|>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "128014": {
116
+ "content": "<|reserved_special_token_6|>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "128015": {
124
+ "content": "<|reserved_special_token_7|>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "128016": {
132
+ "content": "<|reserved_special_token_8|>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "128017": {
140
+ "content": "<|reserved_special_token_9|>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "128018": {
148
+ "content": "<|reserved_special_token_10|>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "128019": {
156
+ "content": "<|reserved_special_token_11|>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "128020": {
164
+ "content": "<|reserved_special_token_12|>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "128021": {
172
+ "content": "<|reserved_special_token_13|>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": true
178
+ },
179
+ "128022": {
180
+ "content": "<|reserved_special_token_14|>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": true
186
+ },
187
+ "128023": {
188
+ "content": "<|reserved_special_token_15|>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": true
194
+ },
195
+ "128024": {
196
+ "content": "<|reserved_special_token_16|>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": true
202
+ },
203
+ "128025": {
204
+ "content": "<|reserved_special_token_17|>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": true
210
+ },
211
+ "128026": {
212
+ "content": "<|reserved_special_token_18|>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": true
218
+ },
219
+ "128027": {
220
+ "content": "<|reserved_special_token_19|>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "128028": {
228
+ "content": "<|reserved_special_token_20|>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "128029": {
236
+ "content": "<|reserved_special_token_21|>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "128030": {
244
+ "content": "<|reserved_special_token_22|>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "128031": {
252
+ "content": "<|reserved_special_token_23|>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "128032": {
260
+ "content": "<|reserved_special_token_24|>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "128033": {
268
+ "content": "<|reserved_special_token_25|>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": true
274
+ },
275
+ "128034": {
276
+ "content": "<|reserved_special_token_26|>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": true
282
+ },
283
+ "128035": {
284
+ "content": "<|reserved_special_token_27|>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": true
290
+ },
291
+ "128036": {
292
+ "content": "<|reserved_special_token_28|>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": true
298
+ },
299
+ "128037": {
300
+ "content": "<|reserved_special_token_29|>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": true
306
+ },
307
+ "128038": {
308
+ "content": "<|reserved_special_token_30|>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": true
314
+ },
315
+ "128039": {
316
+ "content": "<|reserved_special_token_31|>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": true
322
+ },
323
+ "128040": {
324
+ "content": "<|reserved_special_token_32|>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": true
330
+ },
331
+ "128041": {
332
+ "content": "<|reserved_special_token_33|>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": true
338
+ },
339
+ "128042": {
340
+ "content": "<|reserved_special_token_34|>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": true
346
+ },
347
+ "128043": {
348
+ "content": "<|reserved_special_token_35|>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": true
354
+ },
355
+ "128044": {
356
+ "content": "<|reserved_special_token_36|>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": true
362
+ },
363
+ "128045": {
364
+ "content": "<|reserved_special_token_37|>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": true
370
+ },
371
+ "128046": {
372
+ "content": "<|reserved_special_token_38|>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": true
378
+ },
379
+ "128047": {
380
+ "content": "<|reserved_special_token_39|>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": true
386
+ },
387
+ "128048": {
388
+ "content": "<|reserved_special_token_40|>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": true
394
+ },
395
+ "128049": {
396
+ "content": "<|reserved_special_token_41|>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": true
402
+ },
403
+ "128050": {
404
+ "content": "<|reserved_special_token_42|>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": true
410
+ },
411
+ "128051": {
412
+ "content": "<|reserved_special_token_43|>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": true
418
+ },
419
+ "128052": {
420
+ "content": "<|reserved_special_token_44|>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": true
426
+ },
427
+ "128053": {
428
+ "content": "<|reserved_special_token_45|>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": true
434
+ },
435
+ "128054": {
436
+ "content": "<|reserved_special_token_46|>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": true
442
+ },
443
+ "128055": {
444
+ "content": "<|reserved_special_token_47|>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": true
450
+ },
451
+ "128056": {
452
+ "content": "<|reserved_special_token_48|>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": true
458
+ },
459
+ "128057": {
460
+ "content": "<|reserved_special_token_49|>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": true
466
+ },
467
+ "128058": {
468
+ "content": "<|reserved_special_token_50|>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": true
474
+ },
475
+ "128059": {
476
+ "content": "<|reserved_special_token_51|>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": true
482
+ },
483
+ "128060": {
484
+ "content": "<|reserved_special_token_52|>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": true
490
+ },
491
+ "128061": {
492
+ "content": "<|reserved_special_token_53|>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": true
498
+ },
499
+ "128062": {
500
+ "content": "<|reserved_special_token_54|>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": true
506
+ },
507
+ "128063": {
508
+ "content": "<|reserved_special_token_55|>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": true
514
+ },
515
+ "128064": {
516
+ "content": "<|reserved_special_token_56|>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": true
522
+ },
523
+ "128065": {
524
+ "content": "<|reserved_special_token_57|>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": true
530
+ },
531
+ "128066": {
532
+ "content": "<|reserved_special_token_58|>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": true
538
+ },
539
+ "128067": {
540
+ "content": "<|reserved_special_token_59|>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": true
546
+ },
547
+ "128068": {
548
+ "content": "<|reserved_special_token_60|>",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": true
554
+ },
555
+ "128069": {
556
+ "content": "<|reserved_special_token_61|>",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": true
562
+ },
563
+ "128070": {
564
+ "content": "<|reserved_special_token_62|>",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": true
570
+ },
571
+ "128071": {
572
+ "content": "<|reserved_special_token_63|>",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": true
578
+ },
579
+ "128072": {
580
+ "content": "<|reserved_special_token_64|>",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": true
586
+ },
587
+ "128073": {
588
+ "content": "<|reserved_special_token_65|>",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": true
594
+ },
595
+ "128074": {
596
+ "content": "<|reserved_special_token_66|>",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": true
602
+ },
603
+ "128075": {
604
+ "content": "<|reserved_special_token_67|>",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": true
610
+ },
611
+ "128076": {
612
+ "content": "<|reserved_special_token_68|>",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": true
618
+ },
619
+ "128077": {
620
+ "content": "<|reserved_special_token_69|>",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": true
626
+ },
627
+ "128078": {
628
+ "content": "<|reserved_special_token_70|>",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": true
634
+ },
635
+ "128079": {
636
+ "content": "<|reserved_special_token_71|>",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": true
642
+ },
643
+ "128080": {
644
+ "content": "<|reserved_special_token_72|>",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": true
650
+ },
651
+ "128081": {
652
+ "content": "<|reserved_special_token_73|>",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": true
658
+ },
659
+ "128082": {
660
+ "content": "<|reserved_special_token_74|>",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": true
666
+ },
667
+ "128083": {
668
+ "content": "<|reserved_special_token_75|>",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": true
674
+ },
675
+ "128084": {
676
+ "content": "<|reserved_special_token_76|>",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": true
682
+ },
683
+ "128085": {
684
+ "content": "<|reserved_special_token_77|>",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": true
690
+ },
691
+ "128086": {
692
+ "content": "<|reserved_special_token_78|>",
693
+ "lstrip": false,
694
+ "normalized": false,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": true
698
+ },
699
+ "128087": {
700
+ "content": "<|reserved_special_token_79|>",
701
+ "lstrip": false,
702
+ "normalized": false,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": true
706
+ },
707
+ "128088": {
708
+ "content": "<|reserved_special_token_80|>",
709
+ "lstrip": false,
710
+ "normalized": false,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": true
714
+ },
715
+ "128089": {
716
+ "content": "<|reserved_special_token_81|>",
717
+ "lstrip": false,
718
+ "normalized": false,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": true
722
+ },
723
+ "128090": {
724
+ "content": "<|reserved_special_token_82|>",
725
+ "lstrip": false,
726
+ "normalized": false,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": true
730
+ },
731
+ "128091": {
732
+ "content": "<|reserved_special_token_83|>",
733
+ "lstrip": false,
734
+ "normalized": false,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": true
738
+ },
739
+ "128092": {
740
+ "content": "<|reserved_special_token_84|>",
741
+ "lstrip": false,
742
+ "normalized": false,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": true
746
+ },
747
+ "128093": {
748
+ "content": "<|reserved_special_token_85|>",
749
+ "lstrip": false,
750
+ "normalized": false,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": true
754
+ },
755
+ "128094": {
756
+ "content": "<|reserved_special_token_86|>",
757
+ "lstrip": false,
758
+ "normalized": false,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": true
762
+ },
763
+ "128095": {
764
+ "content": "<|reserved_special_token_87|>",
765
+ "lstrip": false,
766
+ "normalized": false,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": true
770
+ },
771
+ "128096": {
772
+ "content": "<|reserved_special_token_88|>",
773
+ "lstrip": false,
774
+ "normalized": false,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": true
778
+ },
779
+ "128097": {
780
+ "content": "<|reserved_special_token_89|>",
781
+ "lstrip": false,
782
+ "normalized": false,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": true
786
+ },
787
+ "128098": {
788
+ "content": "<|reserved_special_token_90|>",
789
+ "lstrip": false,
790
+ "normalized": false,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": true
794
+ },
795
+ "128099": {
796
+ "content": "<|reserved_special_token_91|>",
797
+ "lstrip": false,
798
+ "normalized": false,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": true
802
+ },
803
+ "128100": {
804
+ "content": "<|reserved_special_token_92|>",
805
+ "lstrip": false,
806
+ "normalized": false,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": true
810
+ },
811
+ "128101": {
812
+ "content": "<|reserved_special_token_93|>",
813
+ "lstrip": false,
814
+ "normalized": false,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": true
818
+ },
819
+ "128102": {
820
+ "content": "<|reserved_special_token_94|>",
821
+ "lstrip": false,
822
+ "normalized": false,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": true
826
+ },
827
+ "128103": {
828
+ "content": "<|reserved_special_token_95|>",
829
+ "lstrip": false,
830
+ "normalized": false,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": true
834
+ },
835
+ "128104": {
836
+ "content": "<|reserved_special_token_96|>",
837
+ "lstrip": false,
838
+ "normalized": false,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": true
842
+ },
843
+ "128105": {
844
+ "content": "<|reserved_special_token_97|>",
845
+ "lstrip": false,
846
+ "normalized": false,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": true
850
+ },
851
+ "128106": {
852
+ "content": "<|reserved_special_token_98|>",
853
+ "lstrip": false,
854
+ "normalized": false,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": true
858
+ },
859
+ "128107": {
860
+ "content": "<|reserved_special_token_99|>",
861
+ "lstrip": false,
862
+ "normalized": false,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": true
866
+ },
867
+ "128108": {
868
+ "content": "<|reserved_special_token_100|>",
869
+ "lstrip": false,
870
+ "normalized": false,
871
+ "rstrip": false,
872
+ "single_word": false,
873
+ "special": true
874
+ },
875
+ "128109": {
876
+ "content": "<|reserved_special_token_101|>",
877
+ "lstrip": false,
878
+ "normalized": false,
879
+ "rstrip": false,
880
+ "single_word": false,
881
+ "special": true
882
+ },
883
+ "128110": {
884
+ "content": "<|reserved_special_token_102|>",
885
+ "lstrip": false,
886
+ "normalized": false,
887
+ "rstrip": false,
888
+ "single_word": false,
889
+ "special": true
890
+ },
891
+ "128111": {
892
+ "content": "<|reserved_special_token_103|>",
893
+ "lstrip": false,
894
+ "normalized": false,
895
+ "rstrip": false,
896
+ "single_word": false,
897
+ "special": true
898
+ },
899
+ "128112": {
900
+ "content": "<|reserved_special_token_104|>",
901
+ "lstrip": false,
902
+ "normalized": false,
903
+ "rstrip": false,
904
+ "single_word": false,
905
+ "special": true
906
+ },
907
+ "128113": {
908
+ "content": "<|reserved_special_token_105|>",
909
+ "lstrip": false,
910
+ "normalized": false,
911
+ "rstrip": false,
912
+ "single_word": false,
913
+ "special": true
914
+ },
915
+ "128114": {
916
+ "content": "<|reserved_special_token_106|>",
917
+ "lstrip": false,
918
+ "normalized": false,
919
+ "rstrip": false,
920
+ "single_word": false,
921
+ "special": true
922
+ },
923
+ "128115": {
924
+ "content": "<|reserved_special_token_107|>",
925
+ "lstrip": false,
926
+ "normalized": false,
927
+ "rstrip": false,
928
+ "single_word": false,
929
+ "special": true
930
+ },
931
+ "128116": {
932
+ "content": "<|reserved_special_token_108|>",
933
+ "lstrip": false,
934
+ "normalized": false,
935
+ "rstrip": false,
936
+ "single_word": false,
937
+ "special": true
938
+ },
939
+ "128117": {
940
+ "content": "<|reserved_special_token_109|>",
941
+ "lstrip": false,
942
+ "normalized": false,
943
+ "rstrip": false,
944
+ "single_word": false,
945
+ "special": true
946
+ },
947
+ "128118": {
948
+ "content": "<|reserved_special_token_110|>",
949
+ "lstrip": false,
950
+ "normalized": false,
951
+ "rstrip": false,
952
+ "single_word": false,
953
+ "special": true
954
+ },
955
+ "128119": {
956
+ "content": "<|reserved_special_token_111|>",
957
+ "lstrip": false,
958
+ "normalized": false,
959
+ "rstrip": false,
960
+ "single_word": false,
961
+ "special": true
962
+ },
963
+ "128120": {
964
+ "content": "<|reserved_special_token_112|>",
965
+ "lstrip": false,
966
+ "normalized": false,
967
+ "rstrip": false,
968
+ "single_word": false,
969
+ "special": true
970
+ },
971
+ "128121": {
972
+ "content": "<|reserved_special_token_113|>",
973
+ "lstrip": false,
974
+ "normalized": false,
975
+ "rstrip": false,
976
+ "single_word": false,
977
+ "special": true
978
+ },
979
+ "128122": {
980
+ "content": "<|reserved_special_token_114|>",
981
+ "lstrip": false,
982
+ "normalized": false,
983
+ "rstrip": false,
984
+ "single_word": false,
985
+ "special": true
986
+ },
987
+ "128123": {
988
+ "content": "<|reserved_special_token_115|>",
989
+ "lstrip": false,
990
+ "normalized": false,
991
+ "rstrip": false,
992
+ "single_word": false,
993
+ "special": true
994
+ },
995
+ "128124": {
996
+ "content": "<|reserved_special_token_116|>",
997
+ "lstrip": false,
998
+ "normalized": false,
999
+ "rstrip": false,
1000
+ "single_word": false,
1001
+ "special": true
1002
+ },
1003
+ "128125": {
1004
+ "content": "<|reserved_special_token_117|>",
1005
+ "lstrip": false,
1006
+ "normalized": false,
1007
+ "rstrip": false,
1008
+ "single_word": false,
1009
+ "special": true
1010
+ },
1011
+ "128126": {
1012
+ "content": "<|reserved_special_token_118|>",
1013
+ "lstrip": false,
1014
+ "normalized": false,
1015
+ "rstrip": false,
1016
+ "single_word": false,
1017
+ "special": true
1018
+ },
1019
+ "128127": {
1020
+ "content": "<|reserved_special_token_119|>",
1021
+ "lstrip": false,
1022
+ "normalized": false,
1023
+ "rstrip": false,
1024
+ "single_word": false,
1025
+ "special": true
1026
+ },
1027
+ "128128": {
1028
+ "content": "<|reserved_special_token_120|>",
1029
+ "lstrip": false,
1030
+ "normalized": false,
1031
+ "rstrip": false,
1032
+ "single_word": false,
1033
+ "special": true
1034
+ },
1035
+ "128129": {
1036
+ "content": "<|reserved_special_token_121|>",
1037
+ "lstrip": false,
1038
+ "normalized": false,
1039
+ "rstrip": false,
1040
+ "single_word": false,
1041
+ "special": true
1042
+ },
1043
+ "128130": {
1044
+ "content": "<|reserved_special_token_122|>",
1045
+ "lstrip": false,
1046
+ "normalized": false,
1047
+ "rstrip": false,
1048
+ "single_word": false,
1049
+ "special": true
1050
+ },
1051
+ "128131": {
1052
+ "content": "<|reserved_special_token_123|>",
1053
+ "lstrip": false,
1054
+ "normalized": false,
1055
+ "rstrip": false,
1056
+ "single_word": false,
1057
+ "special": true
1058
+ },
1059
+ "128132": {
1060
+ "content": "<|reserved_special_token_124|>",
1061
+ "lstrip": false,
1062
+ "normalized": false,
1063
+ "rstrip": false,
1064
+ "single_word": false,
1065
+ "special": true
1066
+ },
1067
+ "128133": {
1068
+ "content": "<|reserved_special_token_125|>",
1069
+ "lstrip": false,
1070
+ "normalized": false,
1071
+ "rstrip": false,
1072
+ "single_word": false,
1073
+ "special": true
1074
+ },
1075
+ "128134": {
1076
+ "content": "<|reserved_special_token_126|>",
1077
+ "lstrip": false,
1078
+ "normalized": false,
1079
+ "rstrip": false,
1080
+ "single_word": false,
1081
+ "special": true
1082
+ },
1083
+ "128135": {
1084
+ "content": "<|reserved_special_token_127|>",
1085
+ "lstrip": false,
1086
+ "normalized": false,
1087
+ "rstrip": false,
1088
+ "single_word": false,
1089
+ "special": true
1090
+ },
1091
+ "128136": {
1092
+ "content": "<|reserved_special_token_128|>",
1093
+ "lstrip": false,
1094
+ "normalized": false,
1095
+ "rstrip": false,
1096
+ "single_word": false,
1097
+ "special": true
1098
+ },
1099
+ "128137": {
1100
+ "content": "<|reserved_special_token_129|>",
1101
+ "lstrip": false,
1102
+ "normalized": false,
1103
+ "rstrip": false,
1104
+ "single_word": false,
1105
+ "special": true
1106
+ },
1107
+ "128138": {
1108
+ "content": "<|reserved_special_token_130|>",
1109
+ "lstrip": false,
1110
+ "normalized": false,
1111
+ "rstrip": false,
1112
+ "single_word": false,
1113
+ "special": true
1114
+ },
1115
+ "128139": {
1116
+ "content": "<|reserved_special_token_131|>",
1117
+ "lstrip": false,
1118
+ "normalized": false,
1119
+ "rstrip": false,
1120
+ "single_word": false,
1121
+ "special": true
1122
+ },
1123
+ "128140": {
1124
+ "content": "<|reserved_special_token_132|>",
1125
+ "lstrip": false,
1126
+ "normalized": false,
1127
+ "rstrip": false,
1128
+ "single_word": false,
1129
+ "special": true
1130
+ },
1131
+ "128141": {
1132
+ "content": "<|reserved_special_token_133|>",
1133
+ "lstrip": false,
1134
+ "normalized": false,
1135
+ "rstrip": false,
1136
+ "single_word": false,
1137
+ "special": true
1138
+ },
1139
+ "128142": {
1140
+ "content": "<|reserved_special_token_134|>",
1141
+ "lstrip": false,
1142
+ "normalized": false,
1143
+ "rstrip": false,
1144
+ "single_word": false,
1145
+ "special": true
1146
+ },
1147
+ "128143": {
1148
+ "content": "<|reserved_special_token_135|>",
1149
+ "lstrip": false,
1150
+ "normalized": false,
1151
+ "rstrip": false,
1152
+ "single_word": false,
1153
+ "special": true
1154
+ },
1155
+ "128144": {
1156
+ "content": "<|reserved_special_token_136|>",
1157
+ "lstrip": false,
1158
+ "normalized": false,
1159
+ "rstrip": false,
1160
+ "single_word": false,
1161
+ "special": true
1162
+ },
1163
+ "128145": {
1164
+ "content": "<|reserved_special_token_137|>",
1165
+ "lstrip": false,
1166
+ "normalized": false,
1167
+ "rstrip": false,
1168
+ "single_word": false,
1169
+ "special": true
1170
+ },
1171
+ "128146": {
1172
+ "content": "<|reserved_special_token_138|>",
1173
+ "lstrip": false,
1174
+ "normalized": false,
1175
+ "rstrip": false,
1176
+ "single_word": false,
1177
+ "special": true
1178
+ },
1179
+ "128147": {
1180
+ "content": "<|reserved_special_token_139|>",
1181
+ "lstrip": false,
1182
+ "normalized": false,
1183
+ "rstrip": false,
1184
+ "single_word": false,
1185
+ "special": true
1186
+ },
1187
+ "128148": {
1188
+ "content": "<|reserved_special_token_140|>",
1189
+ "lstrip": false,
1190
+ "normalized": false,
1191
+ "rstrip": false,
1192
+ "single_word": false,
1193
+ "special": true
1194
+ },
1195
+ "128149": {
1196
+ "content": "<|reserved_special_token_141|>",
1197
+ "lstrip": false,
1198
+ "normalized": false,
1199
+ "rstrip": false,
1200
+ "single_word": false,
1201
+ "special": true
1202
+ },
1203
+ "128150": {
1204
+ "content": "<|reserved_special_token_142|>",
1205
+ "lstrip": false,
1206
+ "normalized": false,
1207
+ "rstrip": false,
1208
+ "single_word": false,
1209
+ "special": true
1210
+ },
1211
+ "128151": {
1212
+ "content": "<|reserved_special_token_143|>",
1213
+ "lstrip": false,
1214
+ "normalized": false,
1215
+ "rstrip": false,
1216
+ "single_word": false,
1217
+ "special": true
1218
+ },
1219
+ "128152": {
1220
+ "content": "<|reserved_special_token_144|>",
1221
+ "lstrip": false,
1222
+ "normalized": false,
1223
+ "rstrip": false,
1224
+ "single_word": false,
1225
+ "special": true
1226
+ },
1227
+ "128153": {
1228
+ "content": "<|reserved_special_token_145|>",
1229
+ "lstrip": false,
1230
+ "normalized": false,
1231
+ "rstrip": false,
1232
+ "single_word": false,
1233
+ "special": true
1234
+ },
1235
+ "128154": {
1236
+ "content": "<|reserved_special_token_146|>",
1237
+ "lstrip": false,
1238
+ "normalized": false,
1239
+ "rstrip": false,
1240
+ "single_word": false,
1241
+ "special": true
1242
+ },
1243
+ "128155": {
1244
+ "content": "<|reserved_special_token_147|>",
1245
+ "lstrip": false,
1246
+ "normalized": false,
1247
+ "rstrip": false,
1248
+ "single_word": false,
1249
+ "special": true
1250
+ },
1251
+ "128156": {
1252
+ "content": "<|reserved_special_token_148|>",
1253
+ "lstrip": false,
1254
+ "normalized": false,
1255
+ "rstrip": false,
1256
+ "single_word": false,
1257
+ "special": true
1258
+ },
1259
+ "128157": {
1260
+ "content": "<|reserved_special_token_149|>",
1261
+ "lstrip": false,
1262
+ "normalized": false,
1263
+ "rstrip": false,
1264
+ "single_word": false,
1265
+ "special": true
1266
+ },
1267
+ "128158": {
1268
+ "content": "<|reserved_special_token_150|>",
1269
+ "lstrip": false,
1270
+ "normalized": false,
1271
+ "rstrip": false,
1272
+ "single_word": false,
1273
+ "special": true
1274
+ },
1275
+ "128159": {
1276
+ "content": "<|reserved_special_token_151|>",
1277
+ "lstrip": false,
1278
+ "normalized": false,
1279
+ "rstrip": false,
1280
+ "single_word": false,
1281
+ "special": true
1282
+ },
1283
+ "128160": {
1284
+ "content": "<|reserved_special_token_152|>",
1285
+ "lstrip": false,
1286
+ "normalized": false,
1287
+ "rstrip": false,
1288
+ "single_word": false,
1289
+ "special": true
1290
+ },
1291
+ "128161": {
1292
+ "content": "<|reserved_special_token_153|>",
1293
+ "lstrip": false,
1294
+ "normalized": false,
1295
+ "rstrip": false,
1296
+ "single_word": false,
1297
+ "special": true
1298
+ },
1299
+ "128162": {
1300
+ "content": "<|reserved_special_token_154|>",
1301
+ "lstrip": false,
1302
+ "normalized": false,
1303
+ "rstrip": false,
1304
+ "single_word": false,
1305
+ "special": true
1306
+ },
1307
+ "128163": {
1308
+ "content": "<|reserved_special_token_155|>",
1309
+ "lstrip": false,
1310
+ "normalized": false,
1311
+ "rstrip": false,
1312
+ "single_word": false,
1313
+ "special": true
1314
+ },
1315
+ "128164": {
1316
+ "content": "<|reserved_special_token_156|>",
1317
+ "lstrip": false,
1318
+ "normalized": false,
1319
+ "rstrip": false,
1320
+ "single_word": false,
1321
+ "special": true
1322
+ },
1323
+ "128165": {
1324
+ "content": "<|reserved_special_token_157|>",
1325
+ "lstrip": false,
1326
+ "normalized": false,
1327
+ "rstrip": false,
1328
+ "single_word": false,
1329
+ "special": true
1330
+ },
1331
+ "128166": {
1332
+ "content": "<|reserved_special_token_158|>",
1333
+ "lstrip": false,
1334
+ "normalized": false,
1335
+ "rstrip": false,
1336
+ "single_word": false,
1337
+ "special": true
1338
+ },
1339
+ "128167": {
1340
+ "content": "<|reserved_special_token_159|>",
1341
+ "lstrip": false,
1342
+ "normalized": false,
1343
+ "rstrip": false,
1344
+ "single_word": false,
1345
+ "special": true
1346
+ },
1347
+ "128168": {
1348
+ "content": "<|reserved_special_token_160|>",
1349
+ "lstrip": false,
1350
+ "normalized": false,
1351
+ "rstrip": false,
1352
+ "single_word": false,
1353
+ "special": true
1354
+ },
1355
+ "128169": {
1356
+ "content": "<|reserved_special_token_161|>",
1357
+ "lstrip": false,
1358
+ "normalized": false,
1359
+ "rstrip": false,
1360
+ "single_word": false,
1361
+ "special": true
1362
+ },
1363
+ "128170": {
1364
+ "content": "<|reserved_special_token_162|>",
1365
+ "lstrip": false,
1366
+ "normalized": false,
1367
+ "rstrip": false,
1368
+ "single_word": false,
1369
+ "special": true
1370
+ },
1371
+ "128171": {
1372
+ "content": "<|reserved_special_token_163|>",
1373
+ "lstrip": false,
1374
+ "normalized": false,
1375
+ "rstrip": false,
1376
+ "single_word": false,
1377
+ "special": true
1378
+ },
1379
+ "128172": {
1380
+ "content": "<|reserved_special_token_164|>",
1381
+ "lstrip": false,
1382
+ "normalized": false,
1383
+ "rstrip": false,
1384
+ "single_word": false,
1385
+ "special": true
1386
+ },
1387
+ "128173": {
1388
+ "content": "<|reserved_special_token_165|>",
1389
+ "lstrip": false,
1390
+ "normalized": false,
1391
+ "rstrip": false,
1392
+ "single_word": false,
1393
+ "special": true
1394
+ },
1395
+ "128174": {
1396
+ "content": "<|reserved_special_token_166|>",
1397
+ "lstrip": false,
1398
+ "normalized": false,
1399
+ "rstrip": false,
1400
+ "single_word": false,
1401
+ "special": true
1402
+ },
1403
+ "128175": {
1404
+ "content": "<|reserved_special_token_167|>",
1405
+ "lstrip": false,
1406
+ "normalized": false,
1407
+ "rstrip": false,
1408
+ "single_word": false,
1409
+ "special": true
1410
+ },
1411
+ "128176": {
1412
+ "content": "<|reserved_special_token_168|>",
1413
+ "lstrip": false,
1414
+ "normalized": false,
1415
+ "rstrip": false,
1416
+ "single_word": false,
1417
+ "special": true
1418
+ },
1419
+ "128177": {
1420
+ "content": "<|reserved_special_token_169|>",
1421
+ "lstrip": false,
1422
+ "normalized": false,
1423
+ "rstrip": false,
1424
+ "single_word": false,
1425
+ "special": true
1426
+ },
1427
+ "128178": {
1428
+ "content": "<|reserved_special_token_170|>",
1429
+ "lstrip": false,
1430
+ "normalized": false,
1431
+ "rstrip": false,
1432
+ "single_word": false,
1433
+ "special": true
1434
+ },
1435
+ "128179": {
1436
+ "content": "<|reserved_special_token_171|>",
1437
+ "lstrip": false,
1438
+ "normalized": false,
1439
+ "rstrip": false,
1440
+ "single_word": false,
1441
+ "special": true
1442
+ },
1443
+ "128180": {
1444
+ "content": "<|reserved_special_token_172|>",
1445
+ "lstrip": false,
1446
+ "normalized": false,
1447
+ "rstrip": false,
1448
+ "single_word": false,
1449
+ "special": true
1450
+ },
1451
+ "128181": {
1452
+ "content": "<|reserved_special_token_173|>",
1453
+ "lstrip": false,
1454
+ "normalized": false,
1455
+ "rstrip": false,
1456
+ "single_word": false,
1457
+ "special": true
1458
+ },
1459
+ "128182": {
1460
+ "content": "<|reserved_special_token_174|>",
1461
+ "lstrip": false,
1462
+ "normalized": false,
1463
+ "rstrip": false,
1464
+ "single_word": false,
1465
+ "special": true
1466
+ },
1467
+ "128183": {
1468
+ "content": "<|reserved_special_token_175|>",
1469
+ "lstrip": false,
1470
+ "normalized": false,
1471
+ "rstrip": false,
1472
+ "single_word": false,
1473
+ "special": true
1474
+ },
1475
+ "128184": {
1476
+ "content": "<|reserved_special_token_176|>",
1477
+ "lstrip": false,
1478
+ "normalized": false,
1479
+ "rstrip": false,
1480
+ "single_word": false,
1481
+ "special": true
1482
+ },
1483
+ "128185": {
1484
+ "content": "<|reserved_special_token_177|>",
1485
+ "lstrip": false,
1486
+ "normalized": false,
1487
+ "rstrip": false,
1488
+ "single_word": false,
1489
+ "special": true
1490
+ },
1491
+ "128186": {
1492
+ "content": "<|reserved_special_token_178|>",
1493
+ "lstrip": false,
1494
+ "normalized": false,
1495
+ "rstrip": false,
1496
+ "single_word": false,
1497
+ "special": true
1498
+ },
1499
+ "128187": {
1500
+ "content": "<|reserved_special_token_179|>",
1501
+ "lstrip": false,
1502
+ "normalized": false,
1503
+ "rstrip": false,
1504
+ "single_word": false,
1505
+ "special": true
1506
+ },
1507
+ "128188": {
1508
+ "content": "<|reserved_special_token_180|>",
1509
+ "lstrip": false,
1510
+ "normalized": false,
1511
+ "rstrip": false,
1512
+ "single_word": false,
1513
+ "special": true
1514
+ },
1515
+ "128189": {
1516
+ "content": "<|reserved_special_token_181|>",
1517
+ "lstrip": false,
1518
+ "normalized": false,
1519
+ "rstrip": false,
1520
+ "single_word": false,
1521
+ "special": true
1522
+ },
1523
+ "128190": {
1524
+ "content": "<|reserved_special_token_182|>",
1525
+ "lstrip": false,
1526
+ "normalized": false,
1527
+ "rstrip": false,
1528
+ "single_word": false,
1529
+ "special": true
1530
+ },
1531
+ "128191": {
1532
+ "content": "<|reserved_special_token_183|>",
1533
+ "lstrip": false,
1534
+ "normalized": false,
1535
+ "rstrip": false,
1536
+ "single_word": false,
1537
+ "special": true
1538
+ },
1539
+ "128192": {
1540
+ "content": "<|reserved_special_token_184|>",
1541
+ "lstrip": false,
1542
+ "normalized": false,
1543
+ "rstrip": false,
1544
+ "single_word": false,
1545
+ "special": true
1546
+ },
1547
+ "128193": {
1548
+ "content": "<|reserved_special_token_185|>",
1549
+ "lstrip": false,
1550
+ "normalized": false,
1551
+ "rstrip": false,
1552
+ "single_word": false,
1553
+ "special": true
1554
+ },
1555
+ "128194": {
1556
+ "content": "<|reserved_special_token_186|>",
1557
+ "lstrip": false,
1558
+ "normalized": false,
1559
+ "rstrip": false,
1560
+ "single_word": false,
1561
+ "special": true
1562
+ },
1563
+ "128195": {
1564
+ "content": "<|reserved_special_token_187|>",
1565
+ "lstrip": false,
1566
+ "normalized": false,
1567
+ "rstrip": false,
1568
+ "single_word": false,
1569
+ "special": true
1570
+ },
1571
+ "128196": {
1572
+ "content": "<|reserved_special_token_188|>",
1573
+ "lstrip": false,
1574
+ "normalized": false,
1575
+ "rstrip": false,
1576
+ "single_word": false,
1577
+ "special": true
1578
+ },
1579
+ "128197": {
1580
+ "content": "<|reserved_special_token_189|>",
1581
+ "lstrip": false,
1582
+ "normalized": false,
1583
+ "rstrip": false,
1584
+ "single_word": false,
1585
+ "special": true
1586
+ },
1587
+ "128198": {
1588
+ "content": "<|reserved_special_token_190|>",
1589
+ "lstrip": false,
1590
+ "normalized": false,
1591
+ "rstrip": false,
1592
+ "single_word": false,
1593
+ "special": true
1594
+ },
1595
+ "128199": {
1596
+ "content": "<|reserved_special_token_191|>",
1597
+ "lstrip": false,
1598
+ "normalized": false,
1599
+ "rstrip": false,
1600
+ "single_word": false,
1601
+ "special": true
1602
+ },
1603
+ "128200": {
1604
+ "content": "<|reserved_special_token_192|>",
1605
+ "lstrip": false,
1606
+ "normalized": false,
1607
+ "rstrip": false,
1608
+ "single_word": false,
1609
+ "special": true
1610
+ },
1611
+ "128201": {
1612
+ "content": "<|reserved_special_token_193|>",
1613
+ "lstrip": false,
1614
+ "normalized": false,
1615
+ "rstrip": false,
1616
+ "single_word": false,
1617
+ "special": true
1618
+ },
1619
+ "128202": {
1620
+ "content": "<|reserved_special_token_194|>",
1621
+ "lstrip": false,
1622
+ "normalized": false,
1623
+ "rstrip": false,
1624
+ "single_word": false,
1625
+ "special": true
1626
+ },
1627
+ "128203": {
1628
+ "content": "<|reserved_special_token_195|>",
1629
+ "lstrip": false,
1630
+ "normalized": false,
1631
+ "rstrip": false,
1632
+ "single_word": false,
1633
+ "special": true
1634
+ },
1635
+ "128204": {
1636
+ "content": "<|reserved_special_token_196|>",
1637
+ "lstrip": false,
1638
+ "normalized": false,
1639
+ "rstrip": false,
1640
+ "single_word": false,
1641
+ "special": true
1642
+ },
1643
+ "128205": {
1644
+ "content": "<|reserved_special_token_197|>",
1645
+ "lstrip": false,
1646
+ "normalized": false,
1647
+ "rstrip": false,
1648
+ "single_word": false,
1649
+ "special": true
1650
+ },
1651
+ "128206": {
1652
+ "content": "<|reserved_special_token_198|>",
1653
+ "lstrip": false,
1654
+ "normalized": false,
1655
+ "rstrip": false,
1656
+ "single_word": false,
1657
+ "special": true
1658
+ },
1659
+ "128207": {
1660
+ "content": "<|reserved_special_token_199|>",
1661
+ "lstrip": false,
1662
+ "normalized": false,
1663
+ "rstrip": false,
1664
+ "single_word": false,
1665
+ "special": true
1666
+ },
1667
+ "128208": {
1668
+ "content": "<|reserved_special_token_200|>",
1669
+ "lstrip": false,
1670
+ "normalized": false,
1671
+ "rstrip": false,
1672
+ "single_word": false,
1673
+ "special": true
1674
+ },
1675
+ "128209": {
1676
+ "content": "<|reserved_special_token_201|>",
1677
+ "lstrip": false,
1678
+ "normalized": false,
1679
+ "rstrip": false,
1680
+ "single_word": false,
1681
+ "special": true
1682
+ },
1683
+ "128210": {
1684
+ "content": "<|reserved_special_token_202|>",
1685
+ "lstrip": false,
1686
+ "normalized": false,
1687
+ "rstrip": false,
1688
+ "single_word": false,
1689
+ "special": true
1690
+ },
1691
+ "128211": {
1692
+ "content": "<|reserved_special_token_203|>",
1693
+ "lstrip": false,
1694
+ "normalized": false,
1695
+ "rstrip": false,
1696
+ "single_word": false,
1697
+ "special": true
1698
+ },
1699
+ "128212": {
1700
+ "content": "<|reserved_special_token_204|>",
1701
+ "lstrip": false,
1702
+ "normalized": false,
1703
+ "rstrip": false,
1704
+ "single_word": false,
1705
+ "special": true
1706
+ },
1707
+ "128213": {
1708
+ "content": "<|reserved_special_token_205|>",
1709
+ "lstrip": false,
1710
+ "normalized": false,
1711
+ "rstrip": false,
1712
+ "single_word": false,
1713
+ "special": true
1714
+ },
1715
+ "128214": {
1716
+ "content": "<|reserved_special_token_206|>",
1717
+ "lstrip": false,
1718
+ "normalized": false,
1719
+ "rstrip": false,
1720
+ "single_word": false,
1721
+ "special": true
1722
+ },
1723
+ "128215": {
1724
+ "content": "<|reserved_special_token_207|>",
1725
+ "lstrip": false,
1726
+ "normalized": false,
1727
+ "rstrip": false,
1728
+ "single_word": false,
1729
+ "special": true
1730
+ },
1731
+ "128216": {
1732
+ "content": "<|reserved_special_token_208|>",
1733
+ "lstrip": false,
1734
+ "normalized": false,
1735
+ "rstrip": false,
1736
+ "single_word": false,
1737
+ "special": true
1738
+ },
1739
+ "128217": {
1740
+ "content": "<|reserved_special_token_209|>",
1741
+ "lstrip": false,
1742
+ "normalized": false,
1743
+ "rstrip": false,
1744
+ "single_word": false,
1745
+ "special": true
1746
+ },
1747
+ "128218": {
1748
+ "content": "<|reserved_special_token_210|>",
1749
+ "lstrip": false,
1750
+ "normalized": false,
1751
+ "rstrip": false,
1752
+ "single_word": false,
1753
+ "special": true
1754
+ },
1755
+ "128219": {
1756
+ "content": "<|reserved_special_token_211|>",
1757
+ "lstrip": false,
1758
+ "normalized": false,
1759
+ "rstrip": false,
1760
+ "single_word": false,
1761
+ "special": true
1762
+ },
1763
+ "128220": {
1764
+ "content": "<|reserved_special_token_212|>",
1765
+ "lstrip": false,
1766
+ "normalized": false,
1767
+ "rstrip": false,
1768
+ "single_word": false,
1769
+ "special": true
1770
+ },
1771
+ "128221": {
1772
+ "content": "<|reserved_special_token_213|>",
1773
+ "lstrip": false,
1774
+ "normalized": false,
1775
+ "rstrip": false,
1776
+ "single_word": false,
1777
+ "special": true
1778
+ },
1779
+ "128222": {
1780
+ "content": "<|reserved_special_token_214|>",
1781
+ "lstrip": false,
1782
+ "normalized": false,
1783
+ "rstrip": false,
1784
+ "single_word": false,
1785
+ "special": true
1786
+ },
1787
+ "128223": {
1788
+ "content": "<|reserved_special_token_215|>",
1789
+ "lstrip": false,
1790
+ "normalized": false,
1791
+ "rstrip": false,
1792
+ "single_word": false,
1793
+ "special": true
1794
+ },
1795
+ "128224": {
1796
+ "content": "<|reserved_special_token_216|>",
1797
+ "lstrip": false,
1798
+ "normalized": false,
1799
+ "rstrip": false,
1800
+ "single_word": false,
1801
+ "special": true
1802
+ },
1803
+ "128225": {
1804
+ "content": "<|reserved_special_token_217|>",
1805
+ "lstrip": false,
1806
+ "normalized": false,
1807
+ "rstrip": false,
1808
+ "single_word": false,
1809
+ "special": true
1810
+ },
1811
+ "128226": {
1812
+ "content": "<|reserved_special_token_218|>",
1813
+ "lstrip": false,
1814
+ "normalized": false,
1815
+ "rstrip": false,
1816
+ "single_word": false,
1817
+ "special": true
1818
+ },
1819
+ "128227": {
1820
+ "content": "<|reserved_special_token_219|>",
1821
+ "lstrip": false,
1822
+ "normalized": false,
1823
+ "rstrip": false,
1824
+ "single_word": false,
1825
+ "special": true
1826
+ },
1827
+ "128228": {
1828
+ "content": "<|reserved_special_token_220|>",
1829
+ "lstrip": false,
1830
+ "normalized": false,
1831
+ "rstrip": false,
1832
+ "single_word": false,
1833
+ "special": true
1834
+ },
1835
+ "128229": {
1836
+ "content": "<|reserved_special_token_221|>",
1837
+ "lstrip": false,
1838
+ "normalized": false,
1839
+ "rstrip": false,
1840
+ "single_word": false,
1841
+ "special": true
1842
+ },
1843
+ "128230": {
1844
+ "content": "<|reserved_special_token_222|>",
1845
+ "lstrip": false,
1846
+ "normalized": false,
1847
+ "rstrip": false,
1848
+ "single_word": false,
1849
+ "special": true
1850
+ },
1851
+ "128231": {
1852
+ "content": "<|reserved_special_token_223|>",
1853
+ "lstrip": false,
1854
+ "normalized": false,
1855
+ "rstrip": false,
1856
+ "single_word": false,
1857
+ "special": true
1858
+ },
1859
+ "128232": {
1860
+ "content": "<|reserved_special_token_224|>",
1861
+ "lstrip": false,
1862
+ "normalized": false,
1863
+ "rstrip": false,
1864
+ "single_word": false,
1865
+ "special": true
1866
+ },
1867
+ "128233": {
1868
+ "content": "<|reserved_special_token_225|>",
1869
+ "lstrip": false,
1870
+ "normalized": false,
1871
+ "rstrip": false,
1872
+ "single_word": false,
1873
+ "special": true
1874
+ },
1875
+ "128234": {
1876
+ "content": "<|reserved_special_token_226|>",
1877
+ "lstrip": false,
1878
+ "normalized": false,
1879
+ "rstrip": false,
1880
+ "single_word": false,
1881
+ "special": true
1882
+ },
1883
+ "128235": {
1884
+ "content": "<|reserved_special_token_227|>",
1885
+ "lstrip": false,
1886
+ "normalized": false,
1887
+ "rstrip": false,
1888
+ "single_word": false,
1889
+ "special": true
1890
+ },
1891
+ "128236": {
1892
+ "content": "<|reserved_special_token_228|>",
1893
+ "lstrip": false,
1894
+ "normalized": false,
1895
+ "rstrip": false,
1896
+ "single_word": false,
1897
+ "special": true
1898
+ },
1899
+ "128237": {
1900
+ "content": "<|reserved_special_token_229|>",
1901
+ "lstrip": false,
1902
+ "normalized": false,
1903
+ "rstrip": false,
1904
+ "single_word": false,
1905
+ "special": true
1906
+ },
1907
+ "128238": {
1908
+ "content": "<|reserved_special_token_230|>",
1909
+ "lstrip": false,
1910
+ "normalized": false,
1911
+ "rstrip": false,
1912
+ "single_word": false,
1913
+ "special": true
1914
+ },
1915
+ "128239": {
1916
+ "content": "<|reserved_special_token_231|>",
1917
+ "lstrip": false,
1918
+ "normalized": false,
1919
+ "rstrip": false,
1920
+ "single_word": false,
1921
+ "special": true
1922
+ },
1923
+ "128240": {
1924
+ "content": "<|reserved_special_token_232|>",
1925
+ "lstrip": false,
1926
+ "normalized": false,
1927
+ "rstrip": false,
1928
+ "single_word": false,
1929
+ "special": true
1930
+ },
1931
+ "128241": {
1932
+ "content": "<|reserved_special_token_233|>",
1933
+ "lstrip": false,
1934
+ "normalized": false,
1935
+ "rstrip": false,
1936
+ "single_word": false,
1937
+ "special": true
1938
+ },
1939
+ "128242": {
1940
+ "content": "<|reserved_special_token_234|>",
1941
+ "lstrip": false,
1942
+ "normalized": false,
1943
+ "rstrip": false,
1944
+ "single_word": false,
1945
+ "special": true
1946
+ },
1947
+ "128243": {
1948
+ "content": "<|reserved_special_token_235|>",
1949
+ "lstrip": false,
1950
+ "normalized": false,
1951
+ "rstrip": false,
1952
+ "single_word": false,
1953
+ "special": true
1954
+ },
1955
+ "128244": {
1956
+ "content": "<|reserved_special_token_236|>",
1957
+ "lstrip": false,
1958
+ "normalized": false,
1959
+ "rstrip": false,
1960
+ "single_word": false,
1961
+ "special": true
1962
+ },
1963
+ "128245": {
1964
+ "content": "<|reserved_special_token_237|>",
1965
+ "lstrip": false,
1966
+ "normalized": false,
1967
+ "rstrip": false,
1968
+ "single_word": false,
1969
+ "special": true
1970
+ },
1971
+ "128246": {
1972
+ "content": "<|reserved_special_token_238|>",
1973
+ "lstrip": false,
1974
+ "normalized": false,
1975
+ "rstrip": false,
1976
+ "single_word": false,
1977
+ "special": true
1978
+ },
1979
+ "128247": {
1980
+ "content": "<|reserved_special_token_239|>",
1981
+ "lstrip": false,
1982
+ "normalized": false,
1983
+ "rstrip": false,
1984
+ "single_word": false,
1985
+ "special": true
1986
+ },
1987
+ "128248": {
1988
+ "content": "<|reserved_special_token_240|>",
1989
+ "lstrip": false,
1990
+ "normalized": false,
1991
+ "rstrip": false,
1992
+ "single_word": false,
1993
+ "special": true
1994
+ },
1995
+ "128249": {
1996
+ "content": "<|reserved_special_token_241|>",
1997
+ "lstrip": false,
1998
+ "normalized": false,
1999
+ "rstrip": false,
2000
+ "single_word": false,
2001
+ "special": true
2002
+ },
2003
+ "128250": {
2004
+ "content": "<|reserved_special_token_242|>",
2005
+ "lstrip": false,
2006
+ "normalized": false,
2007
+ "rstrip": false,
2008
+ "single_word": false,
2009
+ "special": true
2010
+ },
2011
+ "128251": {
2012
+ "content": "<|reserved_special_token_243|>",
2013
+ "lstrip": false,
2014
+ "normalized": false,
2015
+ "rstrip": false,
2016
+ "single_word": false,
2017
+ "special": true
2018
+ },
2019
+ "128252": {
2020
+ "content": "<|reserved_special_token_244|>",
2021
+ "lstrip": false,
2022
+ "normalized": false,
2023
+ "rstrip": false,
2024
+ "single_word": false,
2025
+ "special": true
2026
+ },
2027
+ "128253": {
2028
+ "content": "<|reserved_special_token_245|>",
2029
+ "lstrip": false,
2030
+ "normalized": false,
2031
+ "rstrip": false,
2032
+ "single_word": false,
2033
+ "special": true
2034
+ },
2035
+ "128254": {
2036
+ "content": "<|reserved_special_token_246|>",
2037
+ "lstrip": false,
2038
+ "normalized": false,
2039
+ "rstrip": false,
2040
+ "single_word": false,
2041
+ "special": true
2042
+ },
2043
+ "128255": {
2044
+ "content": "<|reserved_special_token_247|>",
2045
+ "lstrip": false,
2046
+ "normalized": false,
2047
+ "rstrip": false,
2048
+ "single_word": false,
2049
+ "special": true
2050
+ }
2051
+ },
2052
+ "bos_token": "<|begin_of_text|>",
2053
+ "chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message #}\n{{- \"<|start_header_id|>system<|end_header_id|>\\n\\n\" }}\n{%- if tools is not none %}\n {{- \"Environment: ipython\\n\" }}\n{%- endif %}\n{{- \"Cutting Knowledge Date: December 2023\\n\" }}\n{{- \"Today Date: \" + date_string + \"\\n\\n\" }}\n{%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n{%- endif %}\n{{- system_message }}\n{{- \"<|eot_id|>\" }}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|start_header_id|>user<|end_header_id|>\\n\\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\\n\\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot_id|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\\n\\n'+ message['content'] | trim + '<|eot_id|>' }}\n {%- elif 'tool_calls' in message %}\n {%- if not message.tool_calls|length == 1 %}\n {{- raise_exception(\"This model only supports single tool-calls at once!\") }}\n {%- endif %}\n {%- set tool_call = message.tool_calls[0].function %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {{- \"<|eot_id|>\" }}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|start_header_id|>ipython<|end_header_id|>\\n\\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' }}\n{%- endif %}\n",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|eot_id|>",
2063
+ "tokenizer_class": "PreTrainedTokenizerFast"
2064
+ }
checkpoint-7200/trainer_state.json ADDED
@@ -0,0 +1,733 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.12499782989878648,
5
+ "eval_steps": 1000,
6
+ "global_step": 7200,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 1.736080970816479e-05,
13
+ "grad_norm": 10.5625,
14
+ "learning_rate": 2e-06,
15
+ "loss": 1.0,
16
+ "step": 1
17
+ },
18
+ {
19
+ "epoch": 0.001736080970816479,
20
+ "grad_norm": 0.1513671875,
21
+ "learning_rate": 0.0002,
22
+ "loss": 0.3311,
23
+ "step": 100
24
+ },
25
+ {
26
+ "epoch": 0.003472161941632958,
27
+ "grad_norm": 0.16796875,
28
+ "learning_rate": 0.0004,
29
+ "loss": 0.2169,
30
+ "step": 200
31
+ },
32
+ {
33
+ "epoch": 0.005208242912449436,
34
+ "grad_norm": 0.10400390625,
35
+ "learning_rate": 0.0006,
36
+ "loss": 0.2032,
37
+ "step": 300
38
+ },
39
+ {
40
+ "epoch": 0.006944323883265916,
41
+ "grad_norm": 0.11279296875,
42
+ "learning_rate": 0.0008,
43
+ "loss": 0.188,
44
+ "step": 400
45
+ },
46
+ {
47
+ "epoch": 0.008680404854082394,
48
+ "grad_norm": 0.10107421875,
49
+ "learning_rate": 0.001,
50
+ "loss": 0.1758,
51
+ "step": 500
52
+ },
53
+ {
54
+ "epoch": 0.010416485824898873,
55
+ "grad_norm": 0.09521484375,
56
+ "learning_rate": 0.0012,
57
+ "loss": 0.1637,
58
+ "step": 600
59
+ },
60
+ {
61
+ "epoch": 0.012152566795715351,
62
+ "grad_norm": 0.08154296875,
63
+ "learning_rate": 0.0014,
64
+ "loss": 0.1518,
65
+ "step": 700
66
+ },
67
+ {
68
+ "epoch": 0.013888647766531832,
69
+ "grad_norm": 0.08642578125,
70
+ "learning_rate": 0.0016,
71
+ "loss": 0.1485,
72
+ "step": 800
73
+ },
74
+ {
75
+ "epoch": 0.01562472873734831,
76
+ "grad_norm": 0.1044921875,
77
+ "learning_rate": 0.0018000000000000002,
78
+ "loss": 0.1433,
79
+ "step": 900
80
+ },
81
+ {
82
+ "epoch": 0.01736080970816479,
83
+ "grad_norm": 0.05419921875,
84
+ "learning_rate": 0.002,
85
+ "loss": 0.139,
86
+ "step": 1000
87
+ },
88
+ {
89
+ "epoch": 0.01736080970816479,
90
+ "eval_covost2-en-de_loss": 1.896493673324585,
91
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
92
+ "eval_covost2-en-de_runtime": 9.8697,
93
+ "eval_covost2-en-de_samples_per_second": 6.485,
94
+ "eval_covost2-en-de_steps_per_second": 0.811,
95
+ "step": 1000
96
+ },
97
+ {
98
+ "epoch": 0.01736080970816479,
99
+ "eval_covost2-zh-en_loss": 3.1452860832214355,
100
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
101
+ "eval_covost2-zh-en_runtime": 8.3732,
102
+ "eval_covost2-zh-en_samples_per_second": 7.643,
103
+ "eval_covost2-zh-en_steps_per_second": 0.955,
104
+ "step": 1000
105
+ },
106
+ {
107
+ "epoch": 0.01736080970816479,
108
+ "eval_peoplespeech-clean-transcription_loss": 3.2206106185913086,
109
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
110
+ "eval_peoplespeech-clean-transcription_runtime": 9.6941,
111
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.602,
112
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.825,
113
+ "step": 1000
114
+ },
115
+ {
116
+ "epoch": 0.01909689067898127,
117
+ "grad_norm": 0.059814453125,
118
+ "learning_rate": 0.001999725185109816,
119
+ "loss": 0.1334,
120
+ "step": 1100
121
+ },
122
+ {
123
+ "epoch": 0.020832971649797746,
124
+ "grad_norm": 0.07373046875,
125
+ "learning_rate": 0.0019989008914857113,
126
+ "loss": 0.1288,
127
+ "step": 1200
128
+ },
129
+ {
130
+ "epoch": 0.022569052620614226,
131
+ "grad_norm": 0.049560546875,
132
+ "learning_rate": 0.00199752757218401,
133
+ "loss": 0.1262,
134
+ "step": 1300
135
+ },
136
+ {
137
+ "epoch": 0.024305133591430703,
138
+ "grad_norm": 0.0517578125,
139
+ "learning_rate": 0.001995605982021898,
140
+ "loss": 0.1222,
141
+ "step": 1400
142
+ },
143
+ {
144
+ "epoch": 0.026041214562247183,
145
+ "grad_norm": 0.058349609375,
146
+ "learning_rate": 0.0019931371771625545,
147
+ "loss": 0.1193,
148
+ "step": 1500
149
+ },
150
+ {
151
+ "epoch": 0.027777295533063663,
152
+ "grad_norm": 0.0498046875,
153
+ "learning_rate": 0.001990122514534651,
154
+ "loss": 0.1196,
155
+ "step": 1600
156
+ },
157
+ {
158
+ "epoch": 0.02951337650388014,
159
+ "grad_norm": 0.05517578125,
160
+ "learning_rate": 0.0019865636510865464,
161
+ "loss": 0.115,
162
+ "step": 1700
163
+ },
164
+ {
165
+ "epoch": 0.03124945747469662,
166
+ "grad_norm": 0.044677734375,
167
+ "learning_rate": 0.001982462542875576,
168
+ "loss": 0.115,
169
+ "step": 1800
170
+ },
171
+ {
172
+ "epoch": 0.0329855384455131,
173
+ "grad_norm": 0.05419921875,
174
+ "learning_rate": 0.001977821443992945,
175
+ "loss": 0.1125,
176
+ "step": 1900
177
+ },
178
+ {
179
+ "epoch": 0.03472161941632958,
180
+ "grad_norm": 0.047119140625,
181
+ "learning_rate": 0.001972642905324813,
182
+ "loss": 0.1094,
183
+ "step": 2000
184
+ },
185
+ {
186
+ "epoch": 0.03472161941632958,
187
+ "eval_covost2-en-de_loss": 1.6700351238250732,
188
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
189
+ "eval_covost2-en-de_runtime": 8.1279,
190
+ "eval_covost2-en-de_samples_per_second": 7.874,
191
+ "eval_covost2-en-de_steps_per_second": 0.984,
192
+ "step": 2000
193
+ },
194
+ {
195
+ "epoch": 0.03472161941632958,
196
+ "eval_covost2-zh-en_loss": 3.093877077102661,
197
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
198
+ "eval_covost2-zh-en_runtime": 8.1488,
199
+ "eval_covost2-zh-en_samples_per_second": 7.854,
200
+ "eval_covost2-zh-en_steps_per_second": 0.982,
201
+ "step": 2000
202
+ },
203
+ {
204
+ "epoch": 0.03472161941632958,
205
+ "eval_peoplespeech-clean-transcription_loss": 2.478968620300293,
206
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
207
+ "eval_peoplespeech-clean-transcription_runtime": 9.5507,
208
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.701,
209
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.838,
210
+ "step": 2000
211
+ },
212
+ {
213
+ "epoch": 0.036457700387146054,
214
+ "grad_norm": 0.048583984375,
215
+ "learning_rate": 0.0019669297731502505,
216
+ "loss": 0.1077,
217
+ "step": 2100
218
+ },
219
+ {
220
+ "epoch": 0.03819378135796254,
221
+ "grad_norm": 0.054443359375,
222
+ "learning_rate": 0.00196068518757684,
223
+ "loss": 0.1069,
224
+ "step": 2200
225
+ },
226
+ {
227
+ "epoch": 0.039929862328779014,
228
+ "grad_norm": 0.047119140625,
229
+ "learning_rate": 0.001953912580814779,
230
+ "loss": 0.1043,
231
+ "step": 2300
232
+ },
233
+ {
234
+ "epoch": 0.04166594329959549,
235
+ "grad_norm": 0.044921875,
236
+ "learning_rate": 0.0019466156752904343,
237
+ "loss": 0.1035,
238
+ "step": 2400
239
+ },
240
+ {
241
+ "epoch": 0.043402024270411975,
242
+ "grad_norm": 0.050537109375,
243
+ "learning_rate": 0.0019387984816003866,
244
+ "loss": 0.1033,
245
+ "step": 2500
246
+ },
247
+ {
248
+ "epoch": 0.04513810524122845,
249
+ "grad_norm": 0.056396484375,
250
+ "learning_rate": 0.0019304652963070869,
251
+ "loss": 0.102,
252
+ "step": 2600
253
+ },
254
+ {
255
+ "epoch": 0.04687418621204493,
256
+ "grad_norm": 0.046875,
257
+ "learning_rate": 0.0019216206995773372,
258
+ "loss": 0.0998,
259
+ "step": 2700
260
+ },
261
+ {
262
+ "epoch": 0.048610267182861405,
263
+ "grad_norm": 0.042236328125,
264
+ "learning_rate": 0.0019122695526648968,
265
+ "loss": 0.1002,
266
+ "step": 2800
267
+ },
268
+ {
269
+ "epoch": 0.05034634815367789,
270
+ "grad_norm": 0.04638671875,
271
+ "learning_rate": 0.0019024169952385887,
272
+ "loss": 0.0978,
273
+ "step": 2900
274
+ },
275
+ {
276
+ "epoch": 0.052082429124494366,
277
+ "grad_norm": 0.05126953125,
278
+ "learning_rate": 0.0018920684425573864,
279
+ "loss": 0.097,
280
+ "step": 3000
281
+ },
282
+ {
283
+ "epoch": 0.052082429124494366,
284
+ "eval_covost2-en-de_loss": 1.749150276184082,
285
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
286
+ "eval_covost2-en-de_runtime": 8.1948,
287
+ "eval_covost2-en-de_samples_per_second": 7.81,
288
+ "eval_covost2-en-de_steps_per_second": 0.976,
289
+ "step": 3000
290
+ },
291
+ {
292
+ "epoch": 0.052082429124494366,
293
+ "eval_covost2-zh-en_loss": 3.198117971420288,
294
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
295
+ "eval_covost2-zh-en_runtime": 8.1979,
296
+ "eval_covost2-zh-en_samples_per_second": 7.807,
297
+ "eval_covost2-zh-en_steps_per_second": 0.976,
298
+ "step": 3000
299
+ },
300
+ {
301
+ "epoch": 0.052082429124494366,
302
+ "eval_peoplespeech-clean-transcription_loss": 2.345036506652832,
303
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
304
+ "eval_peoplespeech-clean-transcription_runtime": 11.4402,
305
+ "eval_peoplespeech-clean-transcription_samples_per_second": 5.594,
306
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.699,
307
+ "step": 3000
308
+ },
309
+ {
310
+ "epoch": 0.05381851009531084,
311
+ "grad_norm": 0.06494140625,
312
+ "learning_rate": 0.0018812295824940284,
313
+ "loss": 0.0955,
314
+ "step": 3100
315
+ },
316
+ {
317
+ "epoch": 0.055554591066127326,
318
+ "grad_norm": 0.044677734375,
319
+ "learning_rate": 0.0018699063724087904,
320
+ "loss": 0.0951,
321
+ "step": 3200
322
+ },
323
+ {
324
+ "epoch": 0.0572906720369438,
325
+ "grad_norm": 0.0390625,
326
+ "learning_rate": 0.0018581050358751443,
327
+ "loss": 0.0947,
328
+ "step": 3300
329
+ },
330
+ {
331
+ "epoch": 0.05902675300776028,
332
+ "grad_norm": 0.056396484375,
333
+ "learning_rate": 0.0018458320592590974,
334
+ "loss": 0.0939,
335
+ "step": 3400
336
+ },
337
+ {
338
+ "epoch": 0.060762833978576763,
339
+ "grad_norm": 0.047119140625,
340
+ "learning_rate": 0.0018330941881540914,
341
+ "loss": 0.0941,
342
+ "step": 3500
343
+ },
344
+ {
345
+ "epoch": 0.06249891494939324,
346
+ "grad_norm": 0.046630859375,
347
+ "learning_rate": 0.0018198984236734246,
348
+ "loss": 0.0927,
349
+ "step": 3600
350
+ },
351
+ {
352
+ "epoch": 0.06423499592020972,
353
+ "grad_norm": 0.055419921875,
354
+ "learning_rate": 0.0018062520186022297,
355
+ "loss": 0.0948,
356
+ "step": 3700
357
+ },
358
+ {
359
+ "epoch": 0.0659710768910262,
360
+ "grad_norm": 0.046142578125,
361
+ "learning_rate": 0.0017921624734111292,
362
+ "loss": 0.09,
363
+ "step": 3800
364
+ },
365
+ {
366
+ "epoch": 0.06770715786184267,
367
+ "grad_norm": 0.04736328125,
368
+ "learning_rate": 0.001777637532133752,
369
+ "loss": 0.0926,
370
+ "step": 3900
371
+ },
372
+ {
373
+ "epoch": 0.06944323883265915,
374
+ "grad_norm": 0.048828125,
375
+ "learning_rate": 0.0017626851781103819,
376
+ "loss": 0.0906,
377
+ "step": 4000
378
+ },
379
+ {
380
+ "epoch": 0.06944323883265915,
381
+ "eval_covost2-en-de_loss": 1.7936017513275146,
382
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
383
+ "eval_covost2-en-de_runtime": 8.0356,
384
+ "eval_covost2-en-de_samples_per_second": 7.965,
385
+ "eval_covost2-en-de_steps_per_second": 0.996,
386
+ "step": 4000
387
+ },
388
+ {
389
+ "epoch": 0.06944323883265915,
390
+ "eval_covost2-zh-en_loss": 3.2699265480041504,
391
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
392
+ "eval_covost2-zh-en_runtime": 9.5779,
393
+ "eval_covost2-zh-en_samples_per_second": 6.682,
394
+ "eval_covost2-zh-en_steps_per_second": 0.835,
395
+ "step": 4000
396
+ },
397
+ {
398
+ "epoch": 0.06944323883265915,
399
+ "eval_peoplespeech-clean-transcription_loss": 2.3380110263824463,
400
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
401
+ "eval_peoplespeech-clean-transcription_runtime": 9.5943,
402
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.671,
403
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.834,
404
+ "step": 4000
405
+ },
406
+ {
407
+ "epoch": 0.07117931980347564,
408
+ "grad_norm": 0.041259765625,
409
+ "learning_rate": 0.001747313629600077,
410
+ "loss": 0.0926,
411
+ "step": 4100
412
+ },
413
+ {
414
+ "epoch": 0.07291540077429211,
415
+ "grad_norm": 0.05322265625,
416
+ "learning_rate": 0.001731531335263669,
417
+ "loss": 0.0907,
418
+ "step": 4200
419
+ },
420
+ {
421
+ "epoch": 0.07465148174510859,
422
+ "grad_norm": 0.05126953125,
423
+ "learning_rate": 0.0017153469695201276,
424
+ "loss": 0.0898,
425
+ "step": 4300
426
+ },
427
+ {
428
+ "epoch": 0.07638756271592508,
429
+ "grad_norm": 0.061767578125,
430
+ "learning_rate": 0.0016987694277788418,
431
+ "loss": 0.0876,
432
+ "step": 4400
433
+ },
434
+ {
435
+ "epoch": 0.07812364368674155,
436
+ "grad_norm": 0.042724609375,
437
+ "learning_rate": 0.001681807821550438,
438
+ "loss": 0.0874,
439
+ "step": 4500
440
+ },
441
+ {
442
+ "epoch": 0.07985972465755803,
443
+ "grad_norm": 0.05126953125,
444
+ "learning_rate": 0.0016644714734388218,
445
+ "loss": 0.0865,
446
+ "step": 4600
447
+ },
448
+ {
449
+ "epoch": 0.08159580562837451,
450
+ "grad_norm": 0.042724609375,
451
+ "learning_rate": 0.0016467699120171987,
452
+ "loss": 0.0866,
453
+ "step": 4700
454
+ },
455
+ {
456
+ "epoch": 0.08333188659919098,
457
+ "grad_norm": 0.0419921875,
458
+ "learning_rate": 0.001628712866590885,
459
+ "loss": 0.0864,
460
+ "step": 4800
461
+ },
462
+ {
463
+ "epoch": 0.08506796757000747,
464
+ "grad_norm": 0.051513671875,
465
+ "learning_rate": 0.0016103102618497923,
466
+ "loss": 0.0862,
467
+ "step": 4900
468
+ },
469
+ {
470
+ "epoch": 0.08680404854082395,
471
+ "grad_norm": 0.052734375,
472
+ "learning_rate": 0.0015915722124135226,
473
+ "loss": 0.0855,
474
+ "step": 5000
475
+ },
476
+ {
477
+ "epoch": 0.08680404854082395,
478
+ "eval_covost2-en-de_loss": 1.7862941026687622,
479
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
480
+ "eval_covost2-en-de_runtime": 8.2861,
481
+ "eval_covost2-en-de_samples_per_second": 7.724,
482
+ "eval_covost2-en-de_steps_per_second": 0.965,
483
+ "step": 5000
484
+ },
485
+ {
486
+ "epoch": 0.08680404854082395,
487
+ "eval_covost2-zh-en_loss": 3.33290433883667,
488
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
489
+ "eval_covost2-zh-en_runtime": 8.4063,
490
+ "eval_covost2-zh-en_samples_per_second": 7.613,
491
+ "eval_covost2-zh-en_steps_per_second": 0.952,
492
+ "step": 5000
493
+ },
494
+ {
495
+ "epoch": 0.08680404854082395,
496
+ "eval_peoplespeech-clean-transcription_loss": 2.2601113319396973,
497
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
498
+ "eval_peoplespeech-clean-transcription_runtime": 9.4946,
499
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.741,
500
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.843,
501
+ "step": 5000
502
+ },
503
+ {
504
+ "epoch": 0.08854012951164042,
505
+ "grad_norm": 0.053466796875,
506
+ "learning_rate": 0.001572509017272072,
507
+ "loss": 0.0872,
508
+ "step": 5100
509
+ },
510
+ {
511
+ "epoch": 0.0902762104824569,
512
+ "grad_norm": 0.044189453125,
513
+ "learning_rate": 0.0015531311541251993,
514
+ "loss": 0.0859,
515
+ "step": 5200
516
+ },
517
+ {
518
+ "epoch": 0.09201229145327339,
519
+ "grad_norm": 0.052978515625,
520
+ "learning_rate": 0.0015334492736235703,
521
+ "loss": 0.085,
522
+ "step": 5300
523
+ },
524
+ {
525
+ "epoch": 0.09374837242408986,
526
+ "grad_norm": 0.04833984375,
527
+ "learning_rate": 0.0015134741935148419,
528
+ "loss": 0.0844,
529
+ "step": 5400
530
+ },
531
+ {
532
+ "epoch": 0.09548445339490634,
533
+ "grad_norm": 0.047119140625,
534
+ "learning_rate": 0.0014932168926979072,
535
+ "loss": 0.0844,
536
+ "step": 5500
537
+ },
538
+ {
539
+ "epoch": 0.09722053436572281,
540
+ "grad_norm": 0.05029296875,
541
+ "learning_rate": 0.0014726885051885652,
542
+ "loss": 0.0856,
543
+ "step": 5600
544
+ },
545
+ {
546
+ "epoch": 0.0989566153365393,
547
+ "grad_norm": 0.049560546875,
548
+ "learning_rate": 0.0014519003139999338,
549
+ "loss": 0.0841,
550
+ "step": 5700
551
+ },
552
+ {
553
+ "epoch": 0.10069269630735578,
554
+ "grad_norm": 0.056884765625,
555
+ "learning_rate": 0.0014308637449409706,
556
+ "loss": 0.0841,
557
+ "step": 5800
558
+ },
559
+ {
560
+ "epoch": 0.10242877727817225,
561
+ "grad_norm": 0.041015625,
562
+ "learning_rate": 0.0014095903603365066,
563
+ "loss": 0.0825,
564
+ "step": 5900
565
+ },
566
+ {
567
+ "epoch": 0.10416485824898873,
568
+ "grad_norm": 0.048583984375,
569
+ "learning_rate": 0.0013880918526722496,
570
+ "loss": 0.0828,
571
+ "step": 6000
572
+ },
573
+ {
574
+ "epoch": 0.10416485824898873,
575
+ "eval_covost2-en-de_loss": 1.8097732067108154,
576
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
577
+ "eval_covost2-en-de_runtime": 8.2052,
578
+ "eval_covost2-en-de_samples_per_second": 7.8,
579
+ "eval_covost2-en-de_steps_per_second": 0.975,
580
+ "step": 6000
581
+ },
582
+ {
583
+ "epoch": 0.10416485824898873,
584
+ "eval_covost2-zh-en_loss": 3.331326961517334,
585
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
586
+ "eval_covost2-zh-en_runtime": 8.2653,
587
+ "eval_covost2-zh-en_samples_per_second": 7.743,
588
+ "eval_covost2-zh-en_steps_per_second": 0.968,
589
+ "step": 6000
590
+ },
591
+ {
592
+ "epoch": 0.10416485824898873,
593
+ "eval_peoplespeech-clean-transcription_loss": 2.250232219696045,
594
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
595
+ "eval_peoplespeech-clean-transcription_runtime": 9.4708,
596
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.758,
597
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.845,
598
+ "step": 6000
599
+ },
600
+ {
601
+ "epoch": 0.10590093921980522,
602
+ "grad_norm": 0.04443359375,
603
+ "learning_rate": 0.0013663800381682463,
604
+ "loss": 0.0819,
605
+ "step": 6100
606
+ },
607
+ {
608
+ "epoch": 0.10763702019062169,
609
+ "grad_norm": 0.05419921875,
610
+ "learning_rate": 0.0013444668502843329,
611
+ "loss": 0.08,
612
+ "step": 6200
613
+ },
614
+ {
615
+ "epoch": 0.10937310116143817,
616
+ "grad_norm": 0.0478515625,
617
+ "learning_rate": 0.0013223643331611537,
618
+ "loss": 0.0805,
619
+ "step": 6300
620
+ },
621
+ {
622
+ "epoch": 0.11110918213225465,
623
+ "grad_norm": 0.051513671875,
624
+ "learning_rate": 0.001300084635000341,
625
+ "loss": 0.0799,
626
+ "step": 6400
627
+ },
628
+ {
629
+ "epoch": 0.11284526310307112,
630
+ "grad_norm": 0.0498046875,
631
+ "learning_rate": 0.0012776400013875004,
632
+ "loss": 0.0807,
633
+ "step": 6500
634
+ },
635
+ {
636
+ "epoch": 0.1145813440738876,
637
+ "grad_norm": 0.050537109375,
638
+ "learning_rate": 0.0012550427685616766,
639
+ "loss": 0.0799,
640
+ "step": 6600
641
+ },
642
+ {
643
+ "epoch": 0.11631742504470409,
644
+ "grad_norm": 0.05029296875,
645
+ "learning_rate": 0.0012323053566349834,
646
+ "loss": 0.0802,
647
+ "step": 6700
648
+ },
649
+ {
650
+ "epoch": 0.11805350601552056,
651
+ "grad_norm": 0.047119140625,
652
+ "learning_rate": 0.0012094402627661448,
653
+ "loss": 0.0796,
654
+ "step": 6800
655
+ },
656
+ {
657
+ "epoch": 0.11978958698633704,
658
+ "grad_norm": 0.044677734375,
659
+ "learning_rate": 0.0011864600542916813,
660
+ "loss": 0.0784,
661
+ "step": 6900
662
+ },
663
+ {
664
+ "epoch": 0.12152566795715353,
665
+ "grad_norm": 0.0478515625,
666
+ "learning_rate": 0.0011633773618185302,
667
+ "loss": 0.0808,
668
+ "step": 7000
669
+ },
670
+ {
671
+ "epoch": 0.12152566795715353,
672
+ "eval_covost2-en-de_loss": 1.7786378860473633,
673
+ "eval_covost2-en-de_model_preparation_time": 0.0057,
674
+ "eval_covost2-en-de_runtime": 8.0291,
675
+ "eval_covost2-en-de_samples_per_second": 7.971,
676
+ "eval_covost2-en-de_steps_per_second": 0.996,
677
+ "step": 7000
678
+ },
679
+ {
680
+ "epoch": 0.12152566795715353,
681
+ "eval_covost2-zh-en_loss": 3.273571252822876,
682
+ "eval_covost2-zh-en_model_preparation_time": 0.0057,
683
+ "eval_covost2-zh-en_runtime": 8.3234,
684
+ "eval_covost2-zh-en_samples_per_second": 7.689,
685
+ "eval_covost2-zh-en_steps_per_second": 0.961,
686
+ "step": 7000
687
+ },
688
+ {
689
+ "epoch": 0.12152566795715353,
690
+ "eval_peoplespeech-clean-transcription_loss": 2.2290830612182617,
691
+ "eval_peoplespeech-clean-transcription_model_preparation_time": 0.0057,
692
+ "eval_peoplespeech-clean-transcription_runtime": 9.7693,
693
+ "eval_peoplespeech-clean-transcription_samples_per_second": 6.551,
694
+ "eval_peoplespeech-clean-transcription_steps_per_second": 0.819,
695
+ "step": 7000
696
+ },
697
+ {
698
+ "epoch": 0.12326174892797,
699
+ "grad_norm": 0.0478515625,
700
+ "learning_rate": 0.0011402048722818862,
701
+ "loss": 0.0786,
702
+ "step": 7100
703
+ },
704
+ {
705
+ "epoch": 0.12499782989878648,
706
+ "grad_norm": 0.049560546875,
707
+ "learning_rate": 0.0011169553219720827,
708
+ "loss": 0.0795,
709
+ "step": 7200
710
+ }
711
+ ],
712
+ "logging_steps": 100,
713
+ "max_steps": 14400,
714
+ "num_input_tokens_seen": 0,
715
+ "num_train_epochs": 1,
716
+ "save_steps": 3600,
717
+ "stateful_callbacks": {
718
+ "TrainerControl": {
719
+ "args": {
720
+ "should_epoch_stop": false,
721
+ "should_evaluate": false,
722
+ "should_log": false,
723
+ "should_save": true,
724
+ "should_training_stop": false
725
+ },
726
+ "attributes": {}
727
+ }
728
+ },
729
+ "total_flos": 3.3101190265194086e+17,
730
+ "train_batch_size": 24,
731
+ "trial_name": null,
732
+ "trial_params": null
733
+ }