Training in progress, step 300
Browse files- .gitattributes +1 -0
- .hydra/config.yaml +83 -0
- .hydra/hydra.yaml +166 -0
- .hydra/overrides.yaml +9 -0
- config.json +40 -0
- config_dump.yaml +83 -0
- main.log +305 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +261 -0
- special_tokens_map.json +17 -0
- tokenizer.json +3 -0
- tokenizer_config.json +2064 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
.hydra/config.yaml
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mode: train
|
2 |
+
experiment:
|
3 |
+
dataset_size: 6000
|
4 |
+
dataset_seed: 1234
|
5 |
+
test_size: 0.1
|
6 |
+
hf_token: ${oc.env:HF_TOKEN,null}
|
7 |
+
output:
|
8 |
+
root_path: ${oc.env:ROOT_PATH}
|
9 |
+
run_name: ${model.trim}_${task.name}_${algorithm.name}_${algorithm.training.curriculum_schedule}_${algorithm.training.scheduler_params.mu_exp}_${algorithm.training.scheduler_params.sigma}_${algorithm.training.scheduler_params.min_prob}_${algorithm.training.max_steps}
|
10 |
+
lora:
|
11 |
+
r: 32
|
12 |
+
alpha: 64
|
13 |
+
dropout: 0.1
|
14 |
+
target_modules:
|
15 |
+
- q_proj
|
16 |
+
- v_proj
|
17 |
+
task_type: CAUSAL_LM
|
18 |
+
occupy_gpu_memory: false
|
19 |
+
occupy_gpu_memory_gb: 50
|
20 |
+
gpu_device: cuda:0
|
21 |
+
model:
|
22 |
+
family: meta-llama
|
23 |
+
trim: Llama-3.2-3B-Instruct
|
24 |
+
name: ${model.family}/${model.trim}
|
25 |
+
trust_remote_code: true
|
26 |
+
torch_dtype: bfloat16
|
27 |
+
attn_implementation: flash_attention_2
|
28 |
+
task:
|
29 |
+
name: blocksworld1246
|
30 |
+
data_files:
|
31 |
+
- data/blocksworld/train_set-1-complete-correct.json
|
32 |
+
- data/blocksworld/train_set-2-complete-correct.json
|
33 |
+
- data/blocksworld/train_set-4-complete-correct.json
|
34 |
+
- data/blocksworld/train_set-6-complete-correct.json
|
35 |
+
icl_examples_file: data/blocksworld/train_set-2-more_with_trace.json
|
36 |
+
use_icl_examples: false
|
37 |
+
training:
|
38 |
+
max_prompt_length: 1600
|
39 |
+
max_completion_length: 512
|
40 |
+
inference:
|
41 |
+
checkpoint: 1200
|
42 |
+
steps: 4
|
43 |
+
temperature: 0.0
|
44 |
+
sc_num: 1
|
45 |
+
use_icl: false
|
46 |
+
icl_num: 2
|
47 |
+
prompt_path: prompts/blocksworld/pool_prompt_v1.json
|
48 |
+
data_path: data/blocksworld/split_v1/split_v1_step_{steps}_data.json
|
49 |
+
config_file: data/blocksworld/bw_config.yaml
|
50 |
+
domain_file: data/blocksworld/generated_domain.pddl
|
51 |
+
pass_at_k: 1
|
52 |
+
num_shot: 4
|
53 |
+
resume: 0
|
54 |
+
max_new_tokens: 512
|
55 |
+
max_batch_size: 64
|
56 |
+
algorithm:
|
57 |
+
name: sgrpo
|
58 |
+
training:
|
59 |
+
learning_rate: 1.0e-06
|
60 |
+
lr_scheduler_type: cosine
|
61 |
+
logging_steps: 10
|
62 |
+
max_steps: 300
|
63 |
+
curriculum: true
|
64 |
+
curriculum_schedule: classic
|
65 |
+
scheduler_params:
|
66 |
+
mu_exp: 0.5
|
67 |
+
sigma: 0.5
|
68 |
+
min_prob: true
|
69 |
+
per_device_train_batch_size: 2
|
70 |
+
gradient_accumulation_steps: 4
|
71 |
+
gradient_checkpointing: true
|
72 |
+
bf16: true
|
73 |
+
num_generations: 8
|
74 |
+
beta: 0.001
|
75 |
+
use_vllm: true
|
76 |
+
vllm_gpu_memory_utilization: 0.5
|
77 |
+
report_to:
|
78 |
+
- wandb
|
79 |
+
push_to_hub: true
|
80 |
+
save_strategy: steps
|
81 |
+
save_steps: ${algorithm.training.max_steps}
|
82 |
+
eval_strategy: steps
|
83 |
+
tf32: true
|
.hydra/hydra.yaml
ADDED
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hydra:
|
2 |
+
run:
|
3 |
+
dir: ${output.root_path}/outputs/${mode2name:${mode},${output.run_name},${model.trim}}
|
4 |
+
sweep:
|
5 |
+
dir: ${output.root_path}/multirun/${now:%Y%m%d}
|
6 |
+
subdir: ${hydra.job.override_dirname}
|
7 |
+
launcher:
|
8 |
+
_target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
|
9 |
+
sweeper:
|
10 |
+
_target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
|
11 |
+
max_batch_size: null
|
12 |
+
params: null
|
13 |
+
help:
|
14 |
+
app_name: ${hydra.job.name}
|
15 |
+
header: '${hydra.help.app_name} is powered by Hydra.
|
16 |
+
|
17 |
+
'
|
18 |
+
footer: 'Powered by Hydra (https://hydra.cc)
|
19 |
+
|
20 |
+
Use --hydra-help to view Hydra specific help
|
21 |
+
|
22 |
+
'
|
23 |
+
template: '${hydra.help.header}
|
24 |
+
|
25 |
+
== Configuration groups ==
|
26 |
+
|
27 |
+
Compose your configuration from those groups (group=option)
|
28 |
+
|
29 |
+
|
30 |
+
$APP_CONFIG_GROUPS
|
31 |
+
|
32 |
+
|
33 |
+
== Config ==
|
34 |
+
|
35 |
+
Override anything in the config (foo.bar=value)
|
36 |
+
|
37 |
+
|
38 |
+
$CONFIG
|
39 |
+
|
40 |
+
|
41 |
+
${hydra.help.footer}
|
42 |
+
|
43 |
+
'
|
44 |
+
hydra_help:
|
45 |
+
template: 'Hydra (${hydra.runtime.version})
|
46 |
+
|
47 |
+
See https://hydra.cc for more info.
|
48 |
+
|
49 |
+
|
50 |
+
== Flags ==
|
51 |
+
|
52 |
+
$FLAGS_HELP
|
53 |
+
|
54 |
+
|
55 |
+
== Configuration groups ==
|
56 |
+
|
57 |
+
Compose your configuration from those groups (For example, append hydra/job_logging=disabled
|
58 |
+
to command line)
|
59 |
+
|
60 |
+
|
61 |
+
$HYDRA_CONFIG_GROUPS
|
62 |
+
|
63 |
+
|
64 |
+
Use ''--cfg hydra'' to Show the Hydra config.
|
65 |
+
|
66 |
+
'
|
67 |
+
hydra_help: ???
|
68 |
+
hydra_logging:
|
69 |
+
version: 1
|
70 |
+
formatters:
|
71 |
+
simple:
|
72 |
+
format: '[%(asctime)s][HYDRA] %(message)s'
|
73 |
+
handlers:
|
74 |
+
console:
|
75 |
+
class: logging.StreamHandler
|
76 |
+
formatter: simple
|
77 |
+
stream: ext://sys.stdout
|
78 |
+
root:
|
79 |
+
level: INFO
|
80 |
+
handlers:
|
81 |
+
- console
|
82 |
+
loggers:
|
83 |
+
logging_example:
|
84 |
+
level: DEBUG
|
85 |
+
disable_existing_loggers: false
|
86 |
+
job_logging:
|
87 |
+
version: 1
|
88 |
+
formatters:
|
89 |
+
simple:
|
90 |
+
format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
|
91 |
+
handlers:
|
92 |
+
console:
|
93 |
+
class: logging.StreamHandler
|
94 |
+
formatter: simple
|
95 |
+
stream: ext://sys.stdout
|
96 |
+
file:
|
97 |
+
class: logging.FileHandler
|
98 |
+
formatter: simple
|
99 |
+
filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
|
100 |
+
root:
|
101 |
+
level: INFO
|
102 |
+
handlers:
|
103 |
+
- console
|
104 |
+
- file
|
105 |
+
disable_existing_loggers: false
|
106 |
+
env: {}
|
107 |
+
mode: RUN
|
108 |
+
searchpath: []
|
109 |
+
callbacks: {}
|
110 |
+
output_subdir: .hydra
|
111 |
+
overrides:
|
112 |
+
hydra:
|
113 |
+
- hydra.mode=RUN
|
114 |
+
task:
|
115 |
+
- mode=train
|
116 |
+
- task=blocksworld1246
|
117 |
+
- algorithm=sgrpo
|
118 |
+
- model=llama3
|
119 |
+
- algorithm.training.per_device_train_batch_size=2
|
120 |
+
- algorithm.training.curriculum_schedule=classic
|
121 |
+
- algorithm.training.scheduler_params.mu_exp=0.5
|
122 |
+
- algorithm.training.scheduler_params.sigma=0.5
|
123 |
+
- algorithm.training.vllm_gpu_memory_utilization=0.5
|
124 |
+
job:
|
125 |
+
name: main
|
126 |
+
chdir: false
|
127 |
+
override_dirname: algorithm.training.curriculum_schedule=classic,algorithm.training.per_device_train_batch_size=2,algorithm.training.scheduler_params.mu_exp=0.5,algorithm.training.scheduler_params.sigma=0.5,algorithm.training.vllm_gpu_memory_utilization=0.5,algorithm=sgrpo,mode=train,model=llama3,task=blocksworld1246
|
128 |
+
id: ???
|
129 |
+
num: ???
|
130 |
+
config_name: config
|
131 |
+
env_set: {}
|
132 |
+
env_copy: []
|
133 |
+
config:
|
134 |
+
override_dirname:
|
135 |
+
kv_sep: '='
|
136 |
+
item_sep: ','
|
137 |
+
exclude_keys: []
|
138 |
+
runtime:
|
139 |
+
version: 1.3.2
|
140 |
+
version_base: '1.3'
|
141 |
+
cwd: /mnt/data/shared/shparashar/Sys2Bench
|
142 |
+
config_sources:
|
143 |
+
- path: hydra.conf
|
144 |
+
schema: pkg
|
145 |
+
provider: hydra
|
146 |
+
- path: /mnt/data/shared/shparashar/Sys2Bench/methods/RL/conf
|
147 |
+
schema: file
|
148 |
+
provider: main
|
149 |
+
- path: ''
|
150 |
+
schema: structured
|
151 |
+
provider: schema
|
152 |
+
output_dir: /mnt/data/shared/shparashar/Sys2Bench/outputs/Llama-3.2-3B-Instruct_blocksworld1246_sgrpo_classic_0.5_0.5_True_300
|
153 |
+
choices:
|
154 |
+
algorithm: sgrpo
|
155 |
+
task: blocksworld1246
|
156 |
+
model: llama3
|
157 |
+
hydra/env: default
|
158 |
+
hydra/callbacks: null
|
159 |
+
hydra/job_logging: default
|
160 |
+
hydra/hydra_logging: default
|
161 |
+
hydra/hydra_help: default
|
162 |
+
hydra/help: default
|
163 |
+
hydra/sweeper: basic
|
164 |
+
hydra/launcher: basic
|
165 |
+
hydra/output: default
|
166 |
+
verbose: false
|
.hydra/overrides.yaml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
- mode=train
|
2 |
+
- task=blocksworld1246
|
3 |
+
- algorithm=sgrpo
|
4 |
+
- model=llama3
|
5 |
+
- algorithm.training.per_device_train_batch_size=2
|
6 |
+
- algorithm.training.curriculum_schedule=classic
|
7 |
+
- algorithm.training.scheduler_params.mu_exp=0.5
|
8 |
+
- algorithm.training.scheduler_params.sigma=0.5
|
9 |
+
- algorithm.training.vllm_gpu_memory_utilization=0.5
|
config.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "meta-llama/Llama-3.2-3B-Instruct",
|
3 |
+
"architectures": [
|
4 |
+
"LlamaForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_bias": false,
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"bos_token_id": 128000,
|
9 |
+
"eos_token_id": [
|
10 |
+
128001,
|
11 |
+
128008,
|
12 |
+
128009
|
13 |
+
],
|
14 |
+
"head_dim": 128,
|
15 |
+
"hidden_act": "silu",
|
16 |
+
"hidden_size": 3072,
|
17 |
+
"initializer_range": 0.02,
|
18 |
+
"intermediate_size": 8192,
|
19 |
+
"max_position_embeddings": 131072,
|
20 |
+
"mlp_bias": false,
|
21 |
+
"model_type": "llama",
|
22 |
+
"num_attention_heads": 24,
|
23 |
+
"num_hidden_layers": 28,
|
24 |
+
"num_key_value_heads": 8,
|
25 |
+
"pretraining_tp": 1,
|
26 |
+
"rms_norm_eps": 1e-05,
|
27 |
+
"rope_scaling": {
|
28 |
+
"factor": 32.0,
|
29 |
+
"high_freq_factor": 4.0,
|
30 |
+
"low_freq_factor": 1.0,
|
31 |
+
"original_max_position_embeddings": 8192,
|
32 |
+
"rope_type": "llama3"
|
33 |
+
},
|
34 |
+
"rope_theta": 500000.0,
|
35 |
+
"tie_word_embeddings": true,
|
36 |
+
"torch_dtype": "bfloat16",
|
37 |
+
"transformers_version": "4.48.1",
|
38 |
+
"use_cache": true,
|
39 |
+
"vocab_size": 128256
|
40 |
+
}
|
config_dump.yaml
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mode: train
|
2 |
+
experiment:
|
3 |
+
dataset_size: 6000
|
4 |
+
dataset_seed: 1234
|
5 |
+
test_size: 0.1
|
6 |
+
hf_token: ${oc.env:HF_TOKEN,null}
|
7 |
+
output:
|
8 |
+
root_path: ${oc.env:ROOT_PATH}
|
9 |
+
run_name: ${model.trim}_${task.name}_${algorithm.name}_${algorithm.training.curriculum_schedule}_${algorithm.training.scheduler_params.mu_exp}_${algorithm.training.scheduler_params.sigma}_${algorithm.training.scheduler_params.min_prob}_${algorithm.training.max_steps}
|
10 |
+
lora:
|
11 |
+
r: 32
|
12 |
+
alpha: 64
|
13 |
+
dropout: 0.1
|
14 |
+
target_modules:
|
15 |
+
- q_proj
|
16 |
+
- v_proj
|
17 |
+
task_type: CAUSAL_LM
|
18 |
+
occupy_gpu_memory: false
|
19 |
+
occupy_gpu_memory_gb: 50
|
20 |
+
gpu_device: cuda:0
|
21 |
+
model:
|
22 |
+
family: meta-llama
|
23 |
+
trim: Llama-3.2-3B-Instruct
|
24 |
+
name: ${model.family}/${model.trim}
|
25 |
+
trust_remote_code: true
|
26 |
+
torch_dtype: bfloat16
|
27 |
+
attn_implementation: flash_attention_2
|
28 |
+
task:
|
29 |
+
name: blocksworld1246
|
30 |
+
data_files:
|
31 |
+
- data/blocksworld/train_set-1-complete-correct.json
|
32 |
+
- data/blocksworld/train_set-2-complete-correct.json
|
33 |
+
- data/blocksworld/train_set-4-complete-correct.json
|
34 |
+
- data/blocksworld/train_set-6-complete-correct.json
|
35 |
+
icl_examples_file: data/blocksworld/train_set-2-more_with_trace.json
|
36 |
+
use_icl_examples: false
|
37 |
+
training:
|
38 |
+
max_prompt_length: 1600
|
39 |
+
max_completion_length: 512
|
40 |
+
inference:
|
41 |
+
checkpoint: 1200
|
42 |
+
steps: 4
|
43 |
+
temperature: 0.0
|
44 |
+
sc_num: 1
|
45 |
+
use_icl: false
|
46 |
+
icl_num: 2
|
47 |
+
prompt_path: prompts/blocksworld/pool_prompt_v1.json
|
48 |
+
data_path: data/blocksworld/split_v1/split_v1_step_{steps}_data.json
|
49 |
+
config_file: data/blocksworld/bw_config.yaml
|
50 |
+
domain_file: data/blocksworld/generated_domain.pddl
|
51 |
+
pass_at_k: 1
|
52 |
+
num_shot: 4
|
53 |
+
resume: 0
|
54 |
+
max_new_tokens: 512
|
55 |
+
max_batch_size: 64
|
56 |
+
algorithm:
|
57 |
+
name: sgrpo
|
58 |
+
training:
|
59 |
+
learning_rate: 1.0e-06
|
60 |
+
lr_scheduler_type: cosine
|
61 |
+
logging_steps: 10
|
62 |
+
max_steps: 300
|
63 |
+
curriculum: true
|
64 |
+
curriculum_schedule: classic
|
65 |
+
scheduler_params:
|
66 |
+
mu_exp: 0.5
|
67 |
+
sigma: 0.5
|
68 |
+
min_prob: true
|
69 |
+
per_device_train_batch_size: 2
|
70 |
+
gradient_accumulation_steps: 4
|
71 |
+
gradient_checkpointing: true
|
72 |
+
bf16: true
|
73 |
+
num_generations: 8
|
74 |
+
beta: 0.001
|
75 |
+
use_vllm: true
|
76 |
+
vllm_gpu_memory_utilization: 0.5
|
77 |
+
report_to:
|
78 |
+
- wandb
|
79 |
+
push_to_hub: true
|
80 |
+
save_strategy: steps
|
81 |
+
save_steps: ${algorithm.training.max_steps}
|
82 |
+
eval_strategy: steps
|
83 |
+
tf32: true
|
main.log
ADDED
@@ -0,0 +1,305 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[2025-05-01 16:25:00,180][__main__][INFO] - Data Schedule: classic
|
2 |
+
[2025-05-01 16:25:13,514][__main__][INFO] - Iteration 0: Batch indices: [1435, 7087, 5853, 2339, 3277, 762, 3736, 6939]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
3 |
+
[2025-05-01 16:25:13,517][__main__][INFO] - Iteration 1: Batch indices: [2216, 4555, 2580, 3145, 4925, 4470, 5684, 2531]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
4 |
+
[2025-05-01 16:26:13,014][__main__][INFO] - Iteration 2: Batch indices: [4216, 4373, 4606, 3141, 2811, 2618, 5368, 1647]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
5 |
+
[2025-05-01 16:27:08,882][__main__][INFO] - Iteration 3: Batch indices: [3573, 2627, 2300, 1478, 277, 594, 1426, 3994]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
6 |
+
[2025-05-01 16:28:09,131][__main__][INFO] - Iteration 4: Batch indices: [4177, 3483, 4802, 3645, 1578, 5222, 2638, 1108]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
7 |
+
[2025-05-01 16:29:09,663][__main__][INFO] - Iteration 5: Batch indices: [5048, 6105, 2390, 2666, 696, 2056, 2227, 6563]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
8 |
+
[2025-05-01 16:30:07,987][__main__][INFO] - Iteration 6: Batch indices: [312, 4392, 5575, 2086, 6969, 5720, 5282, 787]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
9 |
+
[2025-05-01 16:31:07,757][__main__][INFO] - Iteration 7: Batch indices: [5346, 6238, 2483, 5419, 3866, 3199, 3250, 4129]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
10 |
+
[2025-05-01 16:32:07,355][__main__][INFO] - Iteration 8: Batch indices: [1593, 1324, 7196, 773, 2562, 5124, 4762, 1648]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
11 |
+
[2025-05-01 16:33:06,474][__main__][INFO] - Iteration 9: Batch indices: [3422, 4966, 6345, 6918, 5276, 3258, 6646, 2521]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
12 |
+
[2025-05-01 16:33:58,829][__main__][INFO] - Iteration 10: Batch indices: [4614, 60, 369, 4432, 5912, 1456, 2434, 4424]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
13 |
+
[2025-05-01 16:34:48,711][__main__][INFO] - Iteration 11: Batch indices: [301, 5384, 1608, 5857, 4079, 3447, 3469, 5191]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
14 |
+
[2025-05-01 16:35:31,212][__main__][INFO] - Iteration 12: Batch indices: [5076, 5452, 823, 5398, 5448, 3078, 4095, 5549]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
15 |
+
[2025-05-01 16:36:21,924][__main__][INFO] - Iteration 13: Batch indices: [6769, 2813, 3122, 393, 2536, 5633, 4795, 3615]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
16 |
+
[2025-05-01 16:37:06,263][__main__][INFO] - Iteration 14: Batch indices: [559, 6743, 2097, 6894, 4111, 6470, 5665, 6164]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
17 |
+
[2025-05-01 16:37:42,988][__main__][INFO] - Iteration 15: Batch indices: [6488, 3754, 3980, 3482, 227, 4565, 4867, 3861]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
18 |
+
[2025-05-01 16:38:18,140][__main__][INFO] - Iteration 16: Batch indices: [519, 5944, 5502, 6913, 4330, 1566, 4943, 5264]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
19 |
+
[2025-05-01 16:38:53,540][__main__][INFO] - Iteration 17: Batch indices: [6965, 5711, 3827, 1899, 5934, 3614, 4055, 7170]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
20 |
+
[2025-05-01 16:39:30,365][__main__][INFO] - Iteration 18: Batch indices: [5995, 6092, 2965, 3463, 3200, 5551, 2481, 5607]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
21 |
+
[2025-05-01 16:40:04,480][__main__][INFO] - Iteration 19: Batch indices: [6114, 2046, 5690, 4155, 5750, 3163, 3325, 620]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
22 |
+
[2025-05-01 16:40:37,466][__main__][INFO] - Iteration 20: Batch indices: [5656, 3150, 5812, 5094, 6550, 3047, 1515, 4455]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
23 |
+
[2025-05-01 16:41:12,069][__main__][INFO] - Iteration 21: Batch indices: [394, 1391, 2072, 110, 1953, 1659, 5927, 5897]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
24 |
+
[2025-05-01 16:41:37,830][__main__][INFO] - Iteration 22: Batch indices: [2037, 463, 6248, 134, 2424, 2100, 1799, 6181]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
25 |
+
[2025-05-01 16:42:07,842][__main__][INFO] - Iteration 23: Batch indices: [1148, 2591, 3399, 2341, 4421, 4687, 3606, 1131]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
26 |
+
[2025-05-01 16:42:37,551][__main__][INFO] - Iteration 24: Batch indices: [4817, 2857, 423, 3999, 1350, 4256, 3473, 2417]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
27 |
+
[2025-05-01 16:43:00,942][__main__][INFO] - Iteration 25: Batch indices: [4643, 945, 2166, 7008, 1422, 5777, 6320, 365]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
28 |
+
[2025-05-01 16:43:28,620][__main__][INFO] - Iteration 26: Batch indices: [5988, 1762, 3992, 1181, 2910, 6454, 4887, 6474]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
29 |
+
[2025-05-01 16:43:56,566][__main__][INFO] - Iteration 27: Batch indices: [5148, 6846, 6650, 2977, 1660, 6839, 1982, 5365]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
30 |
+
[2025-05-01 16:44:23,659][__main__][INFO] - Iteration 28: Batch indices: [4004, 5803, 7128, 4427, 2926, 2734, 1851, 4411]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
31 |
+
[2025-05-01 16:44:47,520][__main__][INFO] - Iteration 29: Batch indices: [6419, 2893, 2159, 5087, 6728, 2224, 5377, 4650]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
32 |
+
[2025-05-01 16:45:13,021][__main__][INFO] - Iteration 30: Batch indices: [2994, 2962, 4061, 4824, 912, 3831, 956, 4979]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
33 |
+
[2025-05-01 16:45:35,677][__main__][INFO] - Iteration 31: Batch indices: [5195, 5717, 2880, 5495, 2054, 2832, 4642, 796]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
34 |
+
[2025-05-01 16:46:00,890][__main__][INFO] - Iteration 32: Batch indices: [13, 3050, 6278, 881, 6617, 398, 6457, 1036]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
35 |
+
[2025-05-01 16:46:22,056][__main__][INFO] - Iteration 33: Batch indices: [6687, 2184, 4407, 821, 7101, 5300, 4963, 1875]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
36 |
+
[2025-05-01 16:46:43,706][__main__][INFO] - Iteration 34: Batch indices: [5778, 4568, 5263, 6405, 1400, 4753, 5985, 248]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
37 |
+
[2025-05-01 16:47:04,617][__main__][INFO] - Iteration 35: Batch indices: [3302, 6996, 1725, 4619, 5694, 2450, 1934, 5707]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
38 |
+
[2025-05-01 16:47:25,294][__main__][INFO] - Iteration 36: Batch indices: [4690, 666, 4839, 6200, 4532, 3874, 206, 5337]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
39 |
+
[2025-05-01 16:47:45,691][__main__][INFO] - Iteration 37: Batch indices: [532, 2522, 2399, 3836, 1873, 6729, 1421, 2349]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
40 |
+
[2025-05-01 16:48:06,078][__main__][INFO] - Iteration 38: Batch indices: [1769, 1314, 4780, 1405, 2621, 6292, 1508, 3508]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
41 |
+
[2025-05-01 16:48:24,909][__main__][INFO] - Iteration 39: Batch indices: [4017, 6300, 6934, 1980, 6590, 6882, 3888, 1277]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
42 |
+
[2025-05-01 16:48:46,206][__main__][INFO] - Iteration 40: Batch indices: [2951, 6787, 689, 4091, 641, 6127, 5442, 459]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
43 |
+
[2025-05-01 16:49:04,752][__main__][INFO] - Iteration 41: Batch indices: [2199, 2384, 1347, 2923, 3958, 5643, 5736, 6117]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
44 |
+
[2025-05-01 16:49:24,100][__main__][INFO] - Iteration 42: Batch indices: [1086, 6746, 1663, 4881, 4431, 1174, 1072, 4076]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
45 |
+
[2025-05-01 16:49:44,458][__main__][INFO] - Iteration 43: Batch indices: [65, 1751, 5756, 3055, 5061, 7111, 4910, 167]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
46 |
+
[2025-05-01 16:50:05,986][__main__][INFO] - Iteration 44: Batch indices: [2604, 1525, 5221, 1105, 1450, 3414, 4306, 810]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
47 |
+
[2025-05-01 16:50:26,256][__main__][INFO] - Iteration 45: Batch indices: [5524, 2605, 632, 1130, 2959, 6374, 3309, 4023]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
48 |
+
[2025-05-01 16:50:47,284][__main__][INFO] - Iteration 46: Batch indices: [1119, 6393, 486, 3541, 5285, 4919, 3928, 2320]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
49 |
+
[2025-05-01 16:51:07,324][__main__][INFO] - Iteration 47: Batch indices: [3879, 6288, 4442, 785, 4208, 5396, 6628, 3529]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
50 |
+
[2025-05-01 16:51:26,705][__main__][INFO] - Iteration 48: Batch indices: [445, 5121, 5504, 558, 6647, 1969, 1889, 2387]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
51 |
+
[2025-05-01 16:51:45,954][__main__][INFO] - Iteration 49: Batch indices: [5813, 4679, 871, 1526, 1154, 6258, 1153, 6348]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
52 |
+
[2025-05-01 16:52:05,301][__main__][INFO] - Iteration 50: Batch indices: [6368, 1779, 3048, 3207, 702, 5156, 1808, 1765]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
53 |
+
[2025-05-01 16:52:27,556][__main__][INFO] - Iteration 51: Batch indices: [3713, 5997, 2052, 7056, 5652, 2474, 4098, 4048]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
54 |
+
[2025-05-01 16:52:48,670][__main__][INFO] - Iteration 52: Batch indices: [5920, 1888, 523, 6170, 3592, 2153, 6710, 218]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
55 |
+
[2025-05-01 16:53:08,189][__main__][INFO] - Iteration 53: Batch indices: [1854, 4016, 1878, 2313, 567, 2475, 4523, 4089]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
56 |
+
[2025-05-01 16:53:27,137][__main__][INFO] - Iteration 54: Batch indices: [3688, 6575, 6125, 3595, 3501, 4099, 3608, 660]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
57 |
+
[2025-05-01 16:53:46,245][__main__][INFO] - Iteration 55: Batch indices: [2277, 1992, 292, 3512, 193, 7058, 3236, 940]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
58 |
+
[2025-05-01 16:54:05,383][__main__][INFO] - Iteration 56: Batch indices: [2292, 6865, 2386, 3605, 6383, 598, 7077, 6241]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
59 |
+
[2025-05-01 16:54:25,312][__main__][INFO] - Iteration 57: Batch indices: [907, 3396, 634, 3194, 6694, 6065, 3493, 3621]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
60 |
+
[2025-05-01 16:54:45,749][__main__][INFO] - Iteration 58: Batch indices: [2487, 5472, 6983, 4206, 6165, 1707, 2440, 3384]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
61 |
+
[2025-05-01 16:55:05,344][__main__][INFO] - Iteration 59: Batch indices: [3909, 3290, 5411, 5781, 5307, 3535, 3057, 1100]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
62 |
+
[2025-05-01 16:55:24,564][__main__][INFO] - Iteration 60: Batch indices: [1467, 4644, 4573, 5252, 2251, 1424, 1786, 3825]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
63 |
+
[2025-05-01 16:55:43,383][__main__][INFO] - Iteration 61: Batch indices: [3350, 7141, 3051, 6021, 3844, 2658, 1734, 325]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
64 |
+
[2025-05-01 16:56:02,686][__main__][INFO] - Iteration 62: Batch indices: [5746, 1879, 6945, 3767, 4410, 2233, 4440, 6096]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
65 |
+
[2025-05-01 16:56:21,327][__main__][INFO] - Iteration 63: Batch indices: [5668, 5493, 3265, 3630, 2763, 5291, 3872, 5379]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
66 |
+
[2025-05-01 16:56:40,298][__main__][INFO] - Iteration 64: Batch indices: [6986, 874, 1031, 516, 5586, 7177, 5450, 586]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
67 |
+
[2025-05-01 16:56:58,517][__main__][INFO] - Iteration 65: Batch indices: [4863, 3904, 7151, 6816, 5331, 1023, 4892, 3461]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
68 |
+
[2025-05-01 16:57:19,124][__main__][INFO] - Iteration 66: Batch indices: [4646, 3035, 4146, 1931, 5045, 6747, 6862, 7142]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
69 |
+
[2025-05-01 16:57:38,158][__main__][INFO] - Iteration 67: Batch indices: [1776, 1661, 2470, 6034, 1012, 4385, 161, 7166]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
70 |
+
[2025-05-01 16:57:56,754][__main__][INFO] - Iteration 68: Batch indices: [5961, 6430, 860, 7053, 2322, 7091, 5595, 4907]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
71 |
+
[2025-05-01 16:58:16,139][__main__][INFO] - Iteration 69: Batch indices: [5974, 139, 914, 2433, 1702, 7039, 6565, 121]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
72 |
+
[2025-05-01 16:58:35,739][__main__][INFO] - Iteration 70: Batch indices: [3105, 2175, 2491, 2102, 215, 5053, 6272, 6725]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
73 |
+
[2025-05-01 16:58:54,885][__main__][INFO] - Iteration 71: Batch indices: [351, 2335, 4077, 2570, 775, 2530, 289, 1581]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
74 |
+
[2025-05-01 16:59:14,202][__main__][INFO] - Iteration 72: Batch indices: [2703, 102, 235, 3424, 237, 81, 2194, 5602]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
75 |
+
[2025-05-01 16:59:33,665][__main__][INFO] - Iteration 73: Batch indices: [2968, 363, 7046, 1367, 5767, 6629, 2250, 2476]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
76 |
+
[2025-05-01 16:59:53,992][__main__][INFO] - Iteration 74: Batch indices: [1598, 6727, 303, 1951, 3742, 2043, 3128, 5065]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
77 |
+
[2025-05-01 17:00:15,254][__main__][INFO] - Iteration 75: Batch indices: [3685, 3847, 3297, 1434, 1729, 745, 3811, 5582]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
78 |
+
[2025-05-01 17:00:33,786][__main__][INFO] - Iteration 76: Batch indices: [1449, 5403, 6100, 6043, 4184, 1388, 1922, 217]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
79 |
+
[2025-05-01 17:00:52,246][__main__][INFO] - Iteration 77: Batch indices: [2551, 389, 4905, 5486, 506, 6335, 1871, 6684]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
80 |
+
[2025-05-01 17:01:10,383][__main__][INFO] - Iteration 78: Batch indices: [112, 6049, 276, 1357, 2379, 5394, 2291, 4104]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
81 |
+
[2025-05-01 17:01:30,790][__main__][INFO] - Iteration 79: Batch indices: [4107, 3038, 4776, 3228, 1844, 3550, 2128, 4827]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
82 |
+
[2025-05-01 17:01:49,609][__main__][INFO] - Iteration 80: Batch indices: [3278, 1530, 120, 5001, 6621, 4084, 3106, 2495]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
83 |
+
[2025-05-01 17:02:07,777][__main__][INFO] - Iteration 81: Batch indices: [943, 2212, 758, 6562, 92, 2094, 750, 6023]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
84 |
+
[2025-05-01 17:02:27,904][__main__][INFO] - Iteration 82: Batch indices: [496, 473, 6907, 5596, 974, 1066, 6182, 5831]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
85 |
+
[2025-05-01 17:02:46,511][__main__][INFO] - Iteration 83: Batch indices: [3423, 427, 608, 1446, 6926, 5515, 6546, 625]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
86 |
+
[2025-05-01 17:03:05,177][__main__][INFO] - Iteration 84: Batch indices: [2391, 2373, 6785, 4249, 4152, 644, 6999, 421]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
87 |
+
[2025-05-01 17:03:23,348][__main__][INFO] - Iteration 85: Batch indices: [166, 6506, 3932, 4984, 1816, 5763, 637, 3480]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
88 |
+
[2025-05-01 17:03:44,648][__main__][INFO] - Iteration 86: Batch indices: [4279, 137, 3132, 5681, 753, 4138, 4298, 3788]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
89 |
+
[2025-05-01 17:04:02,937][__main__][INFO] - Iteration 87: Batch indices: [4252, 4369, 5238, 777, 18, 5914, 350, 1753]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
90 |
+
[2025-05-01 17:04:21,938][__main__][INFO] - Iteration 88: Batch indices: [618, 5383, 6112, 260, 5796, 7152, 5627, 7159]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
91 |
+
[2025-05-01 17:04:41,749][__main__][INFO] - Iteration 89: Batch indices: [7084, 5466, 2163, 2279, 2824, 3164, 3467, 2503]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
92 |
+
[2025-05-01 17:05:00,260][__main__][INFO] - Iteration 90: Batch indices: [5217, 2860, 6256, 2510, 3372, 169, 3334, 706]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
93 |
+
[2025-05-01 17:05:20,645][__main__][INFO] - Iteration 91: Batch indices: [3111, 5625, 2845, 3864, 3701, 5227, 6623, 1093]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
94 |
+
[2025-05-01 17:05:39,140][__main__][INFO] - Iteration 92: Batch indices: [1309, 1299, 5769, 6762, 1653, 1323, 1285, 4322]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
95 |
+
[2025-05-01 17:05:57,027][__main__][INFO] - Iteration 93: Batch indices: [806, 6909, 1114, 5601, 2497, 6107, 2316, 2594]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
96 |
+
[2025-05-01 17:06:15,497][__main__][INFO] - Iteration 94: Batch indices: [1106, 1703, 6377, 7085, 4459, 6510, 42, 1046]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
97 |
+
[2025-05-01 17:06:33,466][__main__][INFO] - Iteration 95: Batch indices: [6401, 6636, 1921, 2956, 5775, 4171, 1166, 6098]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
98 |
+
[2025-05-01 17:06:50,850][__main__][INFO] - Iteration 96: Batch indices: [1672, 1315, 2712, 1382, 4495, 2806, 1372, 3782]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
99 |
+
[2025-05-01 17:07:12,531][__main__][INFO] - Iteration 97: Batch indices: [4852, 5339, 3489, 199, 2256, 6669, 3721, 413]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
100 |
+
[2025-05-01 17:07:32,699][__main__][INFO] - Iteration 98: Batch indices: [6643, 4355, 1333, 2272, 117, 3768, 2625, 5208]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
101 |
+
[2025-05-01 17:07:51,062][__main__][INFO] - Iteration 99: Batch indices: [4238, 1910, 118, 6530, 1190, 3728, 2078, 2517]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
102 |
+
[2025-05-01 17:08:10,585][__main__][INFO] - Iteration 100: Batch indices: [3580, 6004, 3829, 402, 5185, 1477, 5904, 891]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
103 |
+
[2025-05-01 17:08:30,097][__main__][INFO] - Iteration 101: Batch indices: [2051, 3487, 1300, 1646, 2540, 2848, 3061, 5972]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
104 |
+
[2025-05-01 17:08:49,812][__main__][INFO] - Iteration 102: Batch indices: [2398, 551, 5547, 370, 5674, 977, 6196, 2791]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
105 |
+
[2025-05-01 17:09:07,177][__main__][INFO] - Iteration 103: Batch indices: [4196, 4866, 6722, 4235, 1479, 2008, 5545, 4664]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
106 |
+
[2025-05-01 17:09:23,987][__main__][INFO] - Iteration 104: Batch indices: [3134, 3957, 5242, 5814, 2872, 3509, 3227, 4169]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
107 |
+
[2025-05-01 17:09:42,688][__main__][INFO] - Iteration 105: Batch indices: [920, 1503, 355, 7093, 4908, 7083, 3488, 1429]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
108 |
+
[2025-05-01 17:10:02,233][__main__][INFO] - Iteration 106: Batch indices: [4150, 5821, 3317, 6973, 6032, 3506, 6332, 3268]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
109 |
+
[2025-05-01 17:10:20,855][__main__][INFO] - Iteration 107: Batch indices: [3101, 6413, 3786, 6693, 6118, 3117, 5517, 751]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
110 |
+
[2025-05-01 17:10:38,251][__main__][INFO] - Iteration 108: Batch indices: [1738, 395, 3744, 2796, 2947, 3553, 386, 2168]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
111 |
+
[2025-05-01 17:10:56,638][__main__][INFO] - Iteration 109: Batch indices: [6432, 7129, 2816, 373, 4052, 870, 4822, 1207]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
112 |
+
[2025-05-01 17:11:15,122][__main__][INFO] - Iteration 110: Batch indices: [337, 1099, 5272, 631, 5619, 2793, 743, 5326]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
113 |
+
[2025-05-01 17:11:33,411][__main__][INFO] - Iteration 111: Batch indices: [1290, 3612, 5879, 212, 5240, 6301, 1925, 3620]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
114 |
+
[2025-05-01 17:11:52,504][__main__][INFO] - Iteration 112: Batch indices: [5192, 5143, 2642, 2842, 1723, 4310, 5827, 411]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
115 |
+
[2025-05-01 17:12:10,416][__main__][INFO] - Iteration 113: Batch indices: [1563, 3363, 3306, 2183, 1411, 4947, 4921, 5950]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
116 |
+
[2025-05-01 17:12:28,614][__main__][INFO] - Iteration 114: Batch indices: [6462, 5422, 236, 6075, 5281, 6663, 6940, 3856]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
117 |
+
[2025-05-01 17:12:46,427][__main__][INFO] - Iteration 115: Batch indices: [4834, 4951, 1472, 2900, 2273, 2839, 3593, 2590]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
118 |
+
[2025-05-01 17:13:05,919][__main__][INFO] - Iteration 116: Batch indices: [4758, 6605, 2441, 4854, 7107, 1901, 1559, 869]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
119 |
+
[2025-05-01 17:13:24,833][__main__][INFO] - Iteration 117: Batch indices: [3543, 1533, 4346, 5815, 1542, 4631, 6704, 3202]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
120 |
+
[2025-05-01 17:13:42,159][__main__][INFO] - Iteration 118: Batch indices: [816, 6692, 2595, 2467, 5100, 4144, 4989, 5433]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
121 |
+
[2025-05-01 17:14:00,583][__main__][INFO] - Iteration 119: Batch indices: [3893, 5605, 4149, 2180, 2006, 1531, 2543, 5237]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
122 |
+
[2025-05-01 17:14:19,833][__main__][INFO] - Iteration 120: Batch indices: [5977, 1248, 4786, 1700, 2924, 1767, 1386, 5820]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
123 |
+
[2025-05-01 17:14:40,152][__main__][INFO] - Iteration 121: Batch indices: [5603, 5837, 6878, 3093, 4376, 680, 6157, 5243]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
124 |
+
[2025-05-01 17:14:58,327][__main__][INFO] - Iteration 122: Batch indices: [3138, 1342, 4142, 548, 7154, 1705, 1595, 1617]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
125 |
+
[2025-05-01 17:15:15,842][__main__][INFO] - Iteration 123: Batch indices: [4571, 537, 6078, 4856, 2267, 259, 2315, 6088]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
126 |
+
[2025-05-01 17:15:33,629][__main__][INFO] - Iteration 124: Batch indices: [1212, 4789, 6220, 2141, 4162, 6578, 2215, 2550]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
127 |
+
[2025-05-01 17:15:50,989][__main__][INFO] - Iteration 125: Batch indices: [3343, 4529, 4668, 2560, 3446, 531, 1261, 6618]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
128 |
+
[2025-05-01 17:16:09,584][__main__][INFO] - Iteration 126: Batch indices: [3716, 4199, 1458, 5215, 6327, 3486, 1872, 2101]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
129 |
+
[2025-05-01 17:16:28,959][__main__][INFO] - Iteration 127: Batch indices: [2988, 4127, 6302, 6665, 5553, 1778, 2193, 2648]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
130 |
+
[2025-05-01 17:16:46,831][__main__][INFO] - Iteration 128: Batch indices: [3877, 3284, 384, 1999, 3846, 5608, 643, 2127]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
131 |
+
[2025-05-01 17:17:06,279][__main__][INFO] - Iteration 129: Batch indices: [3787, 3915, 428, 4364, 1770, 1813, 5870, 465]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
132 |
+
[2025-05-01 17:17:24,351][__main__][INFO] - Iteration 130: Batch indices: [478, 6480, 949, 4466, 4578, 5457, 2733, 5332]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
133 |
+
[2025-05-01 17:17:42,976][__main__][INFO] - Iteration 131: Batch indices: [6771, 4311, 5584, 6920, 5893, 691, 3041, 2380]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
134 |
+
[2025-05-01 17:18:00,777][__main__][INFO] - Iteration 132: Batch indices: [6162, 4536, 4027, 3599, 6697, 1956, 5134, 4566]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
135 |
+
[2025-05-01 17:18:18,882][__main__][INFO] - Iteration 133: Batch indices: [4688, 4344, 2170, 1780, 1568, 1273, 2425, 5875]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
136 |
+
[2025-05-01 17:18:37,376][__main__][INFO] - Iteration 134: Batch indices: [5479, 2984, 2370, 4891, 3692, 4873, 209, 314]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
137 |
+
[2025-05-01 17:18:56,945][__main__][INFO] - Iteration 135: Batch indices: [6215, 2865, 6947, 1859, 770, 7189, 6339, 3494]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
138 |
+
[2025-05-01 17:19:14,386][__main__][INFO] - Iteration 136: Batch indices: [5190, 545, 1325, 3393, 6509, 2980, 2886, 4244]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
139 |
+
[2025-05-01 17:19:33,735][__main__][INFO] - Iteration 137: Batch indices: [4038, 1487, 4318, 2761, 7193, 1423, 3907, 487]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
140 |
+
[2025-05-01 17:19:52,473][__main__][INFO] - Iteration 138: Batch indices: [1384, 3024, 705, 2821, 833, 2033, 4409, 3114]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
141 |
+
[2025-05-01 17:20:10,683][__main__][INFO] - Iteration 139: Batch indices: [353, 4506, 2000, 156, 3390, 4661, 1152, 5489]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
142 |
+
[2025-05-01 17:20:29,212][__main__][INFO] - Iteration 140: Batch indices: [5072, 3149, 2805, 910, 2014, 4739, 5933, 5699]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
143 |
+
[2025-05-01 17:20:46,649][__main__][INFO] - Iteration 141: Batch indices: [2139, 4813, 3520, 3190, 1580, 4219, 3225, 2436]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
144 |
+
[2025-05-01 17:21:04,890][__main__][INFO] - Iteration 142: Batch indices: [2301, 6050, 5166, 626, 243, 3462, 1289, 5314]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
145 |
+
[2025-05-01 17:21:23,907][__main__][INFO] - Iteration 143: Batch indices: [6819, 2765, 4652, 5915, 6328, 2419, 4110, 6177]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
146 |
+
[2025-05-01 17:21:42,139][__main__][INFO] - Iteration 144: Batch indices: [1205, 6998, 3527, 7163, 1627, 4255, 4284, 5833]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
147 |
+
[2025-05-01 17:22:00,290][__main__][INFO] - Iteration 145: Batch indices: [976, 6852, 1586, 2360, 3009, 1241, 3496, 6047]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
148 |
+
[2025-05-01 17:22:18,501][__main__][INFO] - Iteration 146: Batch indices: [3979, 884, 5021, 2659, 4462, 3214, 1522, 4471]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
149 |
+
[2025-05-01 17:22:37,672][__main__][INFO] - Iteration 147: Batch indices: [3572, 2453, 2918, 4074, 930, 3715, 2065, 1752]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
150 |
+
[2025-05-01 17:22:56,030][__main__][INFO] - Iteration 148: Batch indices: [2028, 4593, 3408, 2704, 4563, 2742, 511, 2115]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
151 |
+
[2025-05-01 17:23:14,282][__main__][INFO] - Iteration 149: Batch indices: [1548, 1341, 6579, 6194, 4247, 5751, 1139, 2103]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
152 |
+
[2025-05-01 17:23:32,131][__main__][INFO] - Iteration 150: Batch indices: [955, 6352, 93, 792, 2107, 4574, 1800, 4970]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
153 |
+
[2025-05-01 17:23:50,152][__main__][INFO] - Iteration 151: Batch indices: [4965, 4862, 295, 3171, 3733, 1558, 5455, 5906]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
154 |
+
[2025-05-01 17:24:07,682][__main__][INFO] - Iteration 152: Batch indices: [6221, 1876, 2016, 322, 5090, 2504, 4877, 2585]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
155 |
+
[2025-05-01 17:24:27,581][__main__][INFO] - Iteration 153: Batch indices: [4721, 4270, 2053, 4985, 3689, 2606, 521, 888]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
156 |
+
[2025-05-01 17:24:45,514][__main__][INFO] - Iteration 154: Batch indices: [1621, 825, 6031, 5716, 6755, 4449, 1401, 5829]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
157 |
+
[2025-05-01 17:25:05,248][__main__][INFO] - Iteration 155: Batch indices: [2142, 6658, 7012, 3746, 4662, 3833, 5016, 665]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
158 |
+
[2025-05-01 17:25:24,247][__main__][INFO] - Iteration 156: Batch indices: [855, 3540, 5233, 668, 246, 509, 4830, 1082]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
159 |
+
[2025-05-01 17:25:42,974][__main__][INFO] - Iteration 157: Batch indices: [6269, 5744, 2885, 4657, 4806, 3049, 2263, 2261]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
160 |
+
[2025-05-01 17:26:02,212][__main__][INFO] - Iteration 158: Batch indices: [2949, 4307, 2852, 4697, 124, 2345, 6184, 306]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
161 |
+
[2025-05-01 17:26:21,036][__main__][INFO] - Iteration 159: Batch indices: [3232, 6228, 7054, 5703, 4487, 510, 569, 3564]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
162 |
+
[2025-05-01 17:26:40,069][__main__][INFO] - Iteration 160: Batch indices: [6547, 7105, 1173, 4912, 5852, 963, 1027, 168]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
163 |
+
[2025-05-01 17:26:59,103][__main__][INFO] - Iteration 161: Batch indices: [4007, 6679, 3830, 3596, 415, 6610, 4040, 597]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
164 |
+
[2025-05-01 17:27:17,189][__main__][INFO] - Iteration 162: Batch indices: [3140, 2901, 222, 1362, 2607, 803, 113, 542]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
165 |
+
[2025-05-01 17:27:34,941][__main__][INFO] - Iteration 163: Batch indices: [59, 3542, 1078, 2644, 6186, 3000, 1243, 3241]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
166 |
+
[2025-05-01 17:27:53,824][__main__][INFO] - Iteration 164: Batch indices: [454, 203, 2284, 3763, 2499, 5299, 5204, 2934]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
167 |
+
[2025-05-01 17:28:12,701][__main__][INFO] - Iteration 165: Batch indices: [6400, 6204, 596, 4132, 5207, 2979, 2329, 3180]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
168 |
+
[2025-05-01 17:28:31,136][__main__][INFO] - Iteration 166: Batch indices: [4743, 6734, 346, 1043, 8, 7079, 268, 5846]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
169 |
+
[2025-05-01 17:28:49,020][__main__][INFO] - Iteration 167: Batch indices: [6337, 153, 1696, 4125, 1024, 3923, 4516, 2640]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
170 |
+
[2025-05-01 17:29:07,811][__main__][INFO] - Iteration 168: Batch indices: [4366, 3429, 6083, 5928, 3281, 903, 1986, 4105]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
171 |
+
[2025-05-01 17:29:25,960][__main__][INFO] - Iteration 169: Batch indices: [6614, 2973, 3878, 5844, 1271, 2123, 357, 6058]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
172 |
+
[2025-05-01 17:29:44,193][__main__][INFO] - Iteration 170: Batch indices: [3832, 6502, 5624, 2686, 5382, 1097, 6574, 522]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
173 |
+
[2025-05-01 17:30:03,078][__main__][INFO] - Iteration 171: Batch indices: [5926, 2960, 3519, 2186, 4164, 6588, 4777, 3842]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
174 |
+
[2025-05-01 17:30:23,759][__main__][INFO] - Iteration 172: Batch indices: [6678, 3354, 249, 6082, 1158, 1791, 2908, 1245]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
175 |
+
[2025-05-01 17:30:41,550][__main__][INFO] - Iteration 173: Batch indices: [3587, 6085, 2025, 6174, 5947, 2809, 1592, 1438]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
176 |
+
[2025-05-01 17:31:01,146][__main__][INFO] - Iteration 174: Batch indices: [3953, 51, 6696, 5415, 1877, 4945, 5174, 6396]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
177 |
+
[2025-05-01 17:31:20,269][__main__][INFO] - Iteration 175: Batch indices: [6499, 5027, 1473, 4929, 1194, 3234, 4962, 3539]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
178 |
+
[2025-05-01 17:31:39,482][__main__][INFO] - Iteration 176: Batch indices: [4746, 3261, 3943, 4093, 3850, 1941, 3139, 5469]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
179 |
+
[2025-05-01 17:31:57,430][__main__][INFO] - Iteration 177: Batch indices: [3492, 6151, 4858, 2904, 5374, 6751, 3221, 6703]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
180 |
+
[2025-05-01 17:32:15,469][__main__][INFO] - Iteration 178: Batch indices: [552, 7155, 3432, 3860, 786, 2452, 1020, 723]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
181 |
+
[2025-05-01 17:32:33,673][__main__][INFO] - Iteration 179: Batch indices: [1189, 5847, 617, 3179, 1802, 5885, 3723, 999]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
182 |
+
[2025-05-01 17:32:55,697][__main__][INFO] - Iteration 180: Batch indices: [5287, 4117, 5015, 5558, 4783, 6244, 3750, 2981]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
183 |
+
[2025-05-01 17:33:13,836][__main__][INFO] - Iteration 181: Batch indices: [3740, 4621, 4937, 2645, 4790, 1226, 2854, 6685]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
184 |
+
[2025-05-01 17:33:33,368][__main__][INFO] - Iteration 182: Batch indices: [155, 4820, 4009, 3032, 3311, 3262, 4097, 6395]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
185 |
+
[2025-05-01 17:33:51,386][__main__][INFO] - Iteration 183: Batch indices: [80, 5387, 2003, 4086, 4156, 746, 6936, 2529]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
186 |
+
[2025-05-01 17:34:09,414][__main__][INFO] - Iteration 184: Batch indices: [1213, 5347, 6714, 6603, 1471, 873, 3584, 6807]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
187 |
+
[2025-05-01 17:34:30,330][__main__][INFO] - Iteration 185: Batch indices: [3485, 3167, 3377, 4699, 653, 5552, 4419, 1494]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
188 |
+
[2025-05-01 17:34:49,953][__main__][INFO] - Iteration 186: Batch indices: [1939, 4900, 2553, 5189, 2534, 6003, 6935, 5667]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
189 |
+
[2025-05-01 17:35:08,875][__main__][INFO] - Iteration 187: Batch indices: [5865, 3276, 3042, 2608, 5604, 5508, 6122, 3938]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
190 |
+
[2025-05-01 17:35:29,531][__main__][INFO] - Iteration 188: Batch indices: [6069, 3668, 5509, 2278, 5536, 1444, 5054, 6132]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
191 |
+
[2025-05-01 17:35:48,831][__main__][INFO] - Iteration 189: Batch indices: [2172, 4844, 6171, 4209, 5092, 847, 6825, 605]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
192 |
+
[2025-05-01 17:36:07,507][__main__][INFO] - Iteration 190: Batch indices: [3815, 1761, 6249, 2213, 788, 3156, 2125, 5534]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
193 |
+
[2025-05-01 17:36:26,003][__main__][INFO] - Iteration 191: Batch indices: [5312, 2584, 6555, 3871, 6067, 3875, 5114, 2903]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
194 |
+
[2025-05-01 17:36:44,922][__main__][INFO] - Iteration 192: Batch indices: [4191, 5986, 5169, 401, 1577, 3369, 6362, 24]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
195 |
+
[2025-05-01 17:37:05,069][__main__][INFO] - Iteration 193: Batch indices: [3323, 1132, 2573, 2241, 1856, 681, 7191, 3628]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
196 |
+
[2025-05-01 17:37:24,658][__main__][INFO] - Iteration 194: Batch indices: [6754, 951, 6097, 272, 2087, 4332, 953, 6169]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
197 |
+
[2025-05-01 17:37:44,078][__main__][INFO] - Iteration 195: Batch indices: [4855, 520, 2587, 2010, 2624, 939, 1601, 4791]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
198 |
+
[2025-05-01 17:38:05,082][__main__][INFO] - Iteration 196: Batch indices: [4485, 2246, 1316, 6964, 7074, 2289, 1014, 2162]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
199 |
+
[2025-05-01 17:38:23,980][__main__][INFO] - Iteration 197: Batch indices: [2133, 1826, 4570, 5854, 46, 3324, 1292, 6081]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
200 |
+
[2025-05-01 17:38:45,091][__main__][INFO] - Iteration 198: Batch indices: [3347, 16, 1225, 1460, 4134, 3146, 889, 1393]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
201 |
+
[2025-05-01 17:39:04,953][__main__][INFO] - Iteration 199: Batch indices: [5725, 1520, 3153, 4168, 6397, 220, 252, 4941]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
202 |
+
[2025-05-01 17:39:24,121][__main__][INFO] - Iteration 200: Batch indices: [2873, 4194, 667, 1757, 6776, 343, 5499, 6236]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
203 |
+
[2025-05-01 17:39:45,181][__main__][INFO] - Iteration 201: Batch indices: [2519, 7034, 3607, 5359, 682, 2156, 1492, 5164]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
204 |
+
[2025-05-01 17:40:04,496][__main__][INFO] - Iteration 202: Batch indices: [3826, 662, 2089, 2119, 942, 6884, 1994, 4528]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
205 |
+
[2025-05-01 17:40:22,792][__main__][INFO] - Iteration 203: Batch indices: [2948, 6060, 5113, 5397, 954, 905, 3604, 6366]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
206 |
+
[2025-05-01 17:40:41,796][__main__][INFO] - Iteration 204: Batch indices: [2617, 3504, 5133, 1044, 6456, 3613, 6424, 6041]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
207 |
+
[2025-05-01 17:40:59,642][__main__][INFO] - Iteration 205: Batch indices: [385, 1977, 1144, 5077, 4281, 2850, 1923, 6601]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
208 |
+
[2025-05-01 17:41:18,376][__main__][INFO] - Iteration 206: Batch indices: [827, 3590, 6733, 4486, 1631, 91, 2397, 5737]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
209 |
+
[2025-05-01 17:41:37,147][__main__][INFO] - Iteration 207: Batch indices: [5740, 6716, 6795, 2707, 424, 443, 136, 11]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
210 |
+
[2025-05-01 17:41:56,517][__main__][INFO] - Iteration 208: Batch indices: [2725, 4481, 2134, 4674, 4370, 1006, 6917, 5050]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
211 |
+
[2025-05-01 17:42:16,181][__main__][INFO] - Iteration 209: Batch indices: [501, 6527, 4011, 2201, 2894, 4732, 221, 6648]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
212 |
+
[2025-05-01 17:42:36,021][__main__][INFO] - Iteration 210: Batch indices: [3298, 4505, 5149, 1952, 4109, 6120, 3130, 885]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
213 |
+
[2025-05-01 17:42:56,044][__main__][INFO] - Iteration 211: Batch indices: [1727, 2915, 3174, 1098, 1551, 2155, 1810, 3089]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
214 |
+
[2025-05-01 17:43:13,790][__main__][INFO] - Iteration 212: Batch indices: [2869, 242, 6956, 5666, 4580, 5599, 6190, 5485]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
215 |
+
[2025-05-01 17:43:32,265][__main__][INFO] - Iteration 213: Batch indices: [302, 2626, 819, 4059, 4747, 4496, 1720, 561]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
216 |
+
[2025-05-01 17:43:50,040][__main__][INFO] - Iteration 214: Batch indices: [4390, 5304, 834, 5423, 6367, 6363, 2655, 4772]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
217 |
+
[2025-05-01 17:44:09,010][__main__][INFO] - Iteration 215: Batch indices: [2916, 1373, 6851, 15, 2597, 6988, 1944, 4538]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
218 |
+
[2025-05-01 17:44:27,500][__main__][INFO] - Iteration 216: Batch indices: [6944, 1634, 4193, 3912, 6712, 311, 5872, 615]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
219 |
+
[2025-05-01 17:44:45,636][__main__][INFO] - Iteration 217: Batch indices: [1858, 6661, 1536, 3223, 4784, 5150, 2939, 6129]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
220 |
+
[2025-05-01 17:45:06,904][__main__][INFO] - Iteration 218: Batch indices: [2232, 5788, 4057, 3666, 2675, 1722, 3474, 5805]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
221 |
+
[2025-05-01 17:45:24,554][__main__][INFO] - Iteration 219: Batch indices: [6286, 6028, 1196, 6388, 5295, 6586, 5157, 1216]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
222 |
+
[2025-05-01 17:45:43,722][__main__][INFO] - Iteration 220: Batch indices: [2389, 936, 6234, 6261, 2673, 2609, 3594, 2396]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
223 |
+
[2025-05-01 17:46:01,105][__main__][INFO] - Iteration 221: Batch indices: [5290, 3026, 2810, 3108, 2219, 3822, 1199, 3182]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
224 |
+
[2025-05-01 17:46:20,748][__main__][INFO] - Iteration 222: Batch indices: [4211, 2990, 3460, 453, 5177, 749, 6009, 403]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
225 |
+
[2025-05-01 17:46:39,684][__main__][INFO] - Iteration 223: Batch indices: [675, 38, 1937, 1406, 2268, 3421, 2482, 1490]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
226 |
+
[2025-05-01 17:46:57,608][__main__][INFO] - Iteration 224: Batch indices: [4239, 2461, 1270, 135, 5730, 704, 6042, 3756]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
227 |
+
[2025-05-01 17:47:16,295][__main__][INFO] - Iteration 225: Batch indices: [2374, 1934, 7087, 5853, 2339, 3277, 762, 3736]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
228 |
+
[2025-05-01 17:47:35,019][__main__][INFO] - Iteration 226: Batch indices: [6939, 2216, 4555, 2580, 3145, 4925, 4470, 5684]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
229 |
+
[2025-05-01 17:47:53,417][__main__][INFO] - Iteration 227: Batch indices: [2531, 4216, 4373, 4606, 3141, 2811, 2618, 5368]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
230 |
+
[2025-05-01 17:48:11,043][__main__][INFO] - Iteration 228: Batch indices: [1647, 3573, 2627, 2300, 1478, 277, 594, 1426]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
231 |
+
[2025-05-01 17:48:29,294][__main__][INFO] - Iteration 229: Batch indices: [3994, 4177, 3483, 4802, 3645, 1578, 5222, 2638]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
232 |
+
[2025-05-01 17:48:47,005][__main__][INFO] - Iteration 230: Batch indices: [1108, 5048, 6105, 2390, 2666, 696, 2056, 2227]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
233 |
+
[2025-05-01 17:49:06,054][__main__][INFO] - Iteration 231: Batch indices: [6563, 312, 4392, 5575, 2086, 6969, 5720, 5282]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
234 |
+
[2025-05-01 17:49:24,190][__main__][INFO] - Iteration 232: Batch indices: [787, 5346, 6238, 2483, 5419, 3866, 3199, 3250]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
235 |
+
[2025-05-01 17:49:42,158][__main__][INFO] - Iteration 233: Batch indices: [4129, 1593, 1324, 7196, 773, 2562, 5124, 4762]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
236 |
+
[2025-05-01 17:50:00,046][__main__][INFO] - Iteration 234: Batch indices: [1648, 3422, 4966, 6345, 6918, 5276, 3258, 6646]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
237 |
+
[2025-05-01 17:50:17,420][__main__][INFO] - Iteration 235: Batch indices: [2521, 4614, 60, 369, 4432, 5912, 1456, 2434]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
238 |
+
[2025-05-01 17:50:34,930][__main__][INFO] - Iteration 236: Batch indices: [4424, 301, 5384, 1608, 5857, 4079, 3447, 3469]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
239 |
+
[2025-05-01 17:50:53,921][__main__][INFO] - Iteration 237: Batch indices: [5191, 5076, 5452, 823, 5398, 5448, 3078, 4095]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
240 |
+
[2025-05-01 17:51:12,104][__main__][INFO] - Iteration 238: Batch indices: [5549, 6769, 2813, 3122, 393, 2536, 5633, 4795]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
241 |
+
[2025-05-01 17:51:31,645][__main__][INFO] - Iteration 239: Batch indices: [3615, 559, 6743, 2097, 6894, 4111, 6470, 5665]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
242 |
+
[2025-05-01 17:51:51,308][__main__][INFO] - Iteration 240: Batch indices: [6164, 6488, 3754, 3980, 3482, 227, 4565, 4867]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
243 |
+
[2025-05-01 17:52:08,913][__main__][INFO] - Iteration 241: Batch indices: [3861, 519, 5944, 5502, 6913, 4330, 1566, 4943]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
244 |
+
[2025-05-01 17:52:27,153][__main__][INFO] - Iteration 242: Batch indices: [5264, 6965, 5711, 3827, 1899, 5934, 3614, 4055]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
245 |
+
[2025-05-01 17:52:46,381][__main__][INFO] - Iteration 243: Batch indices: [7170, 5995, 6092, 2965, 3463, 3200, 5551, 2481]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
246 |
+
[2025-05-01 17:53:06,017][__main__][INFO] - Iteration 244: Batch indices: [5607, 6114, 2046, 5690, 4155, 5750, 3163, 3325]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
247 |
+
[2025-05-01 17:53:23,837][__main__][INFO] - Iteration 245: Batch indices: [620, 5656, 3150, 5812, 5094, 6550, 3047, 1515]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
248 |
+
[2025-05-01 17:53:42,819][__main__][INFO] - Iteration 246: Batch indices: [4455, 394, 1391, 2072, 110, 1953, 1659, 5927]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
249 |
+
[2025-05-01 17:54:00,886][__main__][INFO] - Iteration 247: Batch indices: [5897, 2037, 463, 6248, 134, 2424, 2100, 1799]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
250 |
+
[2025-05-01 17:54:20,276][__main__][INFO] - Iteration 248: Batch indices: [6181, 1148, 2591, 3399, 2341, 4421, 4687, 3606]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
251 |
+
[2025-05-01 17:54:39,058][__main__][INFO] - Iteration 249: Batch indices: [1131, 4817, 2857, 423, 3999, 1350, 4256, 3473]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
252 |
+
[2025-05-01 17:54:57,965][__main__][INFO] - Iteration 250: Batch indices: [2417, 4643, 945, 2166, 7008, 1422, 5777, 6320]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
253 |
+
[2025-05-01 17:55:16,594][__main__][INFO] - Iteration 251: Batch indices: [365, 5988, 1762, 3992, 1181, 2910, 6454, 4887]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
254 |
+
[2025-05-01 17:55:36,314][__main__][INFO] - Iteration 252: Batch indices: [6474, 5148, 6846, 6650, 2977, 1660, 6839, 1982]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
255 |
+
[2025-05-01 17:55:57,844][__main__][INFO] - Iteration 253: Batch indices: [5365, 4004, 5803, 7128, 4427, 2926, 2734, 1851]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
256 |
+
[2025-05-01 17:56:15,691][__main__][INFO] - Iteration 254: Batch indices: [4411, 6419, 2893, 2159, 5087, 6728, 2224, 5377]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
257 |
+
[2025-05-01 17:56:35,353][__main__][INFO] - Iteration 255: Batch indices: [4650, 2994, 2962, 4061, 4824, 912, 3831, 956]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
258 |
+
[2025-05-01 17:56:53,701][__main__][INFO] - Iteration 256: Batch indices: [4979, 5195, 5717, 2880, 5495, 2054, 2832, 4642]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
259 |
+
[2025-05-01 17:57:12,460][__main__][INFO] - Iteration 257: Batch indices: [796, 13, 3050, 6278, 881, 6617, 398, 6457]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
260 |
+
[2025-05-01 17:57:30,416][__main__][INFO] - Iteration 258: Batch indices: [1036, 6687, 2184, 4407, 821, 7101, 5300, 4963]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
261 |
+
[2025-05-01 17:57:48,473][__main__][INFO] - Iteration 259: Batch indices: [1875, 5778, 4568, 5263, 6405, 1400, 4753, 5985]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
262 |
+
[2025-05-01 17:58:05,806][__main__][INFO] - Iteration 260: Batch indices: [248, 3302, 6996, 1725, 4619, 5694, 2450, 1934]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
263 |
+
[2025-05-01 17:58:23,895][__main__][INFO] - Iteration 261: Batch indices: [5707, 4690, 666, 4839, 6200, 4532, 3874, 206]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
264 |
+
[2025-05-01 17:58:42,773][__main__][INFO] - Iteration 262: Batch indices: [5337, 532, 2522, 2399, 3836, 1873, 6729, 1421]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
265 |
+
[2025-05-01 17:59:00,354][__main__][INFO] - Iteration 263: Batch indices: [2349, 1769, 1314, 4780, 1405, 2621, 6292, 1508]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
266 |
+
[2025-05-01 17:59:18,587][__main__][INFO] - Iteration 264: Batch indices: [3508, 4017, 6300, 6934, 1980, 6590, 6882, 3888]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
267 |
+
[2025-05-01 17:59:37,866][__main__][INFO] - Iteration 265: Batch indices: [1277, 2951, 6787, 689, 4091, 641, 6127, 5442]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
268 |
+
[2025-05-01 17:59:55,059][__main__][INFO] - Iteration 266: Batch indices: [459, 2199, 2384, 1347, 2923, 3958, 5643, 5736]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
269 |
+
[2025-05-01 18:00:12,741][__main__][INFO] - Iteration 267: Batch indices: [6117, 1086, 6746, 1663, 4881, 4431, 1174, 1072]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
270 |
+
[2025-05-01 18:00:34,878][__main__][INFO] - Iteration 268: Batch indices: [4076, 65, 1751, 5756, 3055, 5061, 7111, 4910]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
271 |
+
[2025-05-01 18:00:55,801][__main__][INFO] - Iteration 269: Batch indices: [167, 2604, 1525, 5221, 1105, 1450, 3414, 4306]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
272 |
+
[2025-05-01 18:01:14,646][__main__][INFO] - Iteration 270: Batch indices: [810, 5524, 2605, 632, 1130, 2959, 6374, 3309]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
273 |
+
[2025-05-01 18:01:32,997][__main__][INFO] - Iteration 271: Batch indices: [4023, 1119, 6393, 486, 3541, 5285, 4919, 3928]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
274 |
+
[2025-05-01 18:01:51,903][__main__][INFO] - Iteration 272: Batch indices: [2320, 3879, 6288, 4442, 785, 4208, 5396, 6628]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
275 |
+
[2025-05-01 18:02:10,456][__main__][INFO] - Iteration 273: Batch indices: [3529, 445, 5121, 5504, 558, 6647, 1969, 1889]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
276 |
+
[2025-05-01 18:02:28,796][__main__][INFO] - Iteration 274: Batch indices: [2387, 5813, 4679, 871, 1526, 1154, 6258, 1153]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
277 |
+
[2025-05-01 18:02:46,200][__main__][INFO] - Iteration 275: Batch indices: [6348, 6368, 1779, 3048, 3207, 702, 5156, 1808]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
278 |
+
[2025-05-01 18:03:05,115][__main__][INFO] - Iteration 276: Batch indices: [1765, 3713, 5997, 2052, 7056, 5652, 2474, 4098]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
279 |
+
[2025-05-01 18:03:24,778][__main__][INFO] - Iteration 277: Batch indices: [4048, 5920, 1888, 523, 6170, 3592, 2153, 6710]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
280 |
+
[2025-05-01 18:03:42,455][__main__][INFO] - Iteration 278: Batch indices: [218, 1854, 4016, 1878, 2313, 567, 2475, 4523]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
281 |
+
[2025-05-01 18:03:59,513][__main__][INFO] - Iteration 279: Batch indices: [4089, 3688, 6575, 6125, 3595, 3501, 4099, 3608]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
282 |
+
[2025-05-01 18:04:17,672][__main__][INFO] - Iteration 280: Batch indices: [660, 2277, 1992, 292, 3512, 193, 7058, 3236]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
283 |
+
[2025-05-01 18:04:37,062][__main__][INFO] - Iteration 281: Batch indices: [940, 2292, 6865, 2386, 3605, 6383, 598, 7077]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
284 |
+
[2025-05-01 18:04:54,582][__main__][INFO] - Iteration 282: Batch indices: [6241, 907, 3396, 634, 3194, 6694, 6065, 3493]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
285 |
+
[2025-05-01 18:05:12,946][__main__][INFO] - Iteration 283: Batch indices: [3621, 2487, 5472, 6983, 4206, 6165, 1707, 2440]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
286 |
+
[2025-05-01 18:05:32,258][__main__][INFO] - Iteration 284: Batch indices: [3384, 3909, 3290, 5411, 5781, 5307, 3535, 3057]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
287 |
+
[2025-05-01 18:05:51,469][__main__][INFO] - Iteration 285: Batch indices: [1100, 1467, 4644, 4573, 5252, 2251, 1424, 1786]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
288 |
+
[2025-05-01 18:06:09,333][__main__][INFO] - Iteration 286: Batch indices: [3825, 3350, 7141, 3051, 6021, 3844, 2658, 1734]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
289 |
+
[2025-05-01 18:06:29,211][__main__][INFO] - Iteration 287: Batch indices: [325, 5746, 1879, 6945, 3767, 4410, 2233, 4440]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
290 |
+
[2025-05-01 18:06:47,264][__main__][INFO] - Iteration 288: Batch indices: [6096, 5668, 5493, 3265, 3630, 2763, 5291, 3872]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
291 |
+
[2025-05-01 18:07:05,951][__main__][INFO] - Iteration 289: Batch indices: [5379, 6986, 874, 1031, 516, 5586, 7177, 5450]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
292 |
+
[2025-05-01 18:07:23,058][__main__][INFO] - Iteration 290: Batch indices: [586, 4863, 3904, 7151, 6816, 5331, 1023, 4892]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
293 |
+
[2025-05-01 18:07:41,182][__main__][INFO] - Iteration 291: Batch indices: [3461, 4646, 3035, 4146, 1931, 5045, 6747, 6862]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
294 |
+
[2025-05-01 18:08:00,595][__main__][INFO] - Iteration 292: Batch indices: [7142, 1776, 1661, 2470, 6034, 1012, 4385, 161]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
295 |
+
[2025-05-01 18:08:19,424][__main__][INFO] - Iteration 293: Batch indices: [7166, 5961, 6430, 860, 7053, 2322, 7091, 5595]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
296 |
+
[2025-05-01 18:08:37,946][__main__][INFO] - Iteration 294: Batch indices: [4907, 5974, 139, 914, 2433, 1702, 7039, 6565]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
297 |
+
[2025-05-01 18:08:56,463][__main__][INFO] - Iteration 295: Batch indices: [121, 3105, 2175, 2491, 2102, 215, 5053, 6272]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
298 |
+
[2025-05-01 18:09:13,684][__main__][INFO] - Iteration 296: Batch indices: [6725, 351, 2335, 4077, 2570, 775, 2530, 289]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
299 |
+
[2025-05-01 18:09:32,537][__main__][INFO] - Iteration 297: Batch indices: [1581, 2703, 102, 235, 3424, 237, 81, 2194]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
300 |
+
[2025-05-01 18:09:53,039][__main__][INFO] - Iteration 298: Batch indices: [5602, 2968, 363, 7046, 1367, 5767, 6629, 2250]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
301 |
+
[2025-05-01 18:10:12,806][__main__][INFO] - Iteration 299: Batch indices: [2476, 1598, 6727, 303, 1951, 3742, 2043, 3128]: Task Difficulties: [0 0 0 0 0 0 0 0]
|
302 |
+
[2025-05-01 18:10:31,019][__main__][INFO] - Iteration 300: Batch indices: [149, 6948, 6872, 429, 3985, 4022, 4800, 6559]: Task Difficulties: [1 1 1 1 1 1 1 1]
|
303 |
+
[2025-05-01 18:18:37,907][__main__][INFO] - Iteration 301: Batch indices: [5705, 3065, 560, 760, 360, 3908, 2294, 2338]: Task Difficulties: [1 1 1 1 1 1 1 1]
|
304 |
+
[2025-05-01 18:18:59,187][__main__][INFO] - Iteration 302: Batch indices: [70, 3112, 3441, 766, 2438, 154, 228, 3125]: Task Difficulties: [1 1 1 1 1 1 1 1]
|
305 |
+
[2025-05-01 18:19:20,045][__main__][INFO] - Iteration 303: Batch indices: [3457, 2439, 1001, 4767, 6861, 798, 4996, 1712]: Task Difficulties: [1 1 1 1 1 1 1 1]
|
model-00001-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:debd7d752e86bea26776ee22b621b5f8fad3c8a65972245e91bfa860af6f1dd5
|
3 |
+
size 4965799096
|
model-00002-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29449e57aa497319b288f73ae209c1e6f39d9dd72f757134dbc354ec71ffa7bf
|
3 |
+
size 1459729952
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,261 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 6425499648
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
13 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
14 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
15 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
16 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
17 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
18 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
19 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
20 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
21 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
22 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
23 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
24 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
25 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
26 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
27 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
28 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
29 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
30 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
31 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
32 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
33 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
34 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
35 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
36 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
37 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
38 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
39 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
40 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
41 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
42 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
43 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
44 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
45 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
46 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
47 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
48 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
49 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
50 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
51 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
52 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
53 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
54 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
55 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
56 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
57 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
58 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
59 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
60 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
61 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
62 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
63 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
64 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
65 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
66 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
67 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
68 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
69 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
70 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
71 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
72 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
73 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
74 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
75 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
76 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
77 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
78 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
79 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
80 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
81 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
82 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
83 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
84 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
85 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
86 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
87 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
88 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
89 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
90 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
91 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
92 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
93 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
94 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
95 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
96 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
97 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
98 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
99 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
100 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
101 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
102 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
103 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
104 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
105 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
106 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
107 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
108 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
109 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
110 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
111 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
112 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
113 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
114 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
115 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
116 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
117 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
118 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
119 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
120 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
121 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
122 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
123 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
124 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
125 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
126 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
127 |
+
"model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
128 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
129 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
130 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
131 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
132 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
133 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
134 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
135 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
136 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
137 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
138 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
139 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
140 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
141 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
142 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
143 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
144 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
145 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
146 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
147 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
148 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
149 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
150 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
151 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
152 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
153 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
154 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
155 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
156 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
157 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
158 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
159 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
160 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
161 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
162 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
163 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
164 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
165 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
166 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
167 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
168 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
169 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
170 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
171 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
172 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
173 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
174 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
175 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
176 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
177 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
178 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
179 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
180 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
181 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
182 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
183 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
184 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
185 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
186 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
187 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
188 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
189 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
190 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
191 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
192 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
193 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
194 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
195 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
196 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
197 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
198 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
199 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
200 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
201 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
202 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
203 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
204 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
205 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
206 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
207 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
208 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
209 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
210 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
211 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
212 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
213 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
214 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
215 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
216 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
217 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
218 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
219 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
220 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
221 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
222 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
223 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
224 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
225 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
226 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
227 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
228 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
229 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
230 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
231 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
232 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
233 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
234 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
235 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
236 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
237 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
238 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
239 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
240 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
241 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
242 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
243 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
244 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
245 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
246 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
247 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
248 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
249 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
250 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
251 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
252 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
253 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
254 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
255 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
256 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
257 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
258 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
259 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
260 |
+
}
|
261 |
+
}
|
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 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65ff5472d095ccd9332d9e723153d7bc7226cb6be9c1bffda738b5ba2e71bf26
|
3 |
+
size 17210084
|
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 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3f5ade8e56da68e79cd103506cab45963e83da87ad42e3746432fd9b6bea8e9d
|
3 |
+
size 6968
|