ayameRushia
commited on
Commit
·
26931fb
1
Parent(s):
307620d
Training in progress, step 2000
Browse files- .ipynb_checkpoints/run_speech_recognition_ctc-checkpoint.py +9 -9
- pytorch_model.bin +1 -1
- run_speech_recognition_ctc.py +9 -9
- wandb/run-20220130_033240-1ciqu2rb/files/output.log +761 -0
- wandb/run-20220130_033240-1ciqu2rb/files/wandb-summary.json +0 -0
- wandb/run-20220130_033240-1ciqu2rb/logs/debug-internal.log +0 -0
- wandb/run-20220130_033240-1ciqu2rb/run-1ciqu2rb.wandb +0 -0
.ipynb_checkpoints/run_speech_recognition_ctc-checkpoint.py
CHANGED
@@ -439,16 +439,16 @@ def main():
|
|
439 |
|
440 |
def remove_special_characters(batch):
|
441 |
if chars_to_ignore_regex is not None:
|
442 |
-
batch["
|
443 |
-
batch["
|
444 |
-
batch["
|
445 |
-
batch["
|
446 |
-
batch["
|
447 |
-
batch["
|
448 |
-
batch["
|
449 |
-
batch["
|
450 |
else:
|
451 |
-
batch["
|
452 |
return batch
|
453 |
|
454 |
with training_args.main_process_first(desc="dataset map special characters removal"):
|
|
|
439 |
|
440 |
def remove_special_characters(batch):
|
441 |
if chars_to_ignore_regex is not None:
|
442 |
+
batch["target_text"] = re.sub(chars_to_ignore_regex, "", batch[text_column_name]).lower() + " "
|
443 |
+
batch["target_text"] = re.sub('!', '', batch[text_column_name]).lower() + " "
|
444 |
+
batch["target_text"] = batch[text_column_name].replace('â', 'a').replace('á', 'a').replace('ō', 'o').lower() + " "
|
445 |
+
batch["target_text"] = batch[text_column_name].replace('û', 'u').replace('ł', 'l').replace('é', 'e').lower() + " "
|
446 |
+
batch["target_text"] = batch[text_column_name].replace('ń',"n").replace('î',"").replace('ô',"").replace('û',"").lower() + " "
|
447 |
+
batch["target_text"] = batch[text_column_name].replace('\"',"").replace("&","").replace("'","").replace("(","").lower() + " "
|
448 |
+
batch["target_text"] = batch[text_column_name].replace('[',"").replace("]","").replace("\\","").replace(")","").lower() + " "
|
449 |
+
batch["target_text"] = batch[text_column_name].replace(" "," ").replace(" "," ").replace(" "," ").lower() + " "
|
450 |
else:
|
451 |
+
batch["target_text"] = batch[text_column_name].lower() + " "
|
452 |
return batch
|
453 |
|
454 |
with training_args.main_process_first(desc="dataset map special characters removal"):
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 1262091761
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3b6bd912ef48444b62711fe5203a6934a9fa50720110880b269ad85a4b98e93
|
3 |
size 1262091761
|
run_speech_recognition_ctc.py
CHANGED
@@ -439,16 +439,16 @@ def main():
|
|
439 |
|
440 |
def remove_special_characters(batch):
|
441 |
if chars_to_ignore_regex is not None:
|
442 |
-
batch["
|
443 |
-
batch["
|
444 |
-
batch["
|
445 |
-
batch["
|
446 |
-
batch["
|
447 |
-
batch["
|
448 |
-
batch["
|
449 |
-
batch["
|
450 |
else:
|
451 |
-
batch["
|
452 |
return batch
|
453 |
|
454 |
with training_args.main_process_first(desc="dataset map special characters removal"):
|
|
|
439 |
|
440 |
def remove_special_characters(batch):
|
441 |
if chars_to_ignore_regex is not None:
|
442 |
+
batch["target_text"] = re.sub(chars_to_ignore_regex, "", batch[text_column_name]).lower() + " "
|
443 |
+
batch["target_text"] = re.sub('!', '', batch[text_column_name]).lower() + " "
|
444 |
+
batch["target_text"] = batch[text_column_name].replace('â', 'a').replace('á', 'a').replace('ō', 'o').lower() + " "
|
445 |
+
batch["target_text"] = batch[text_column_name].replace('û', 'u').replace('ł', 'l').replace('é', 'e').lower() + " "
|
446 |
+
batch["target_text"] = batch[text_column_name].replace('ń',"n").replace('î',"").replace('ô',"").replace('û',"").lower() + " "
|
447 |
+
batch["target_text"] = batch[text_column_name].replace('\"',"").replace("&","").replace("'","").replace("(","").lower() + " "
|
448 |
+
batch["target_text"] = batch[text_column_name].replace('[',"").replace("]","").replace("\\","").replace(")","").lower() + " "
|
449 |
+
batch["target_text"] = batch[text_column_name].replace(" "," ").replace(" "," ").replace(" "," ").lower() + " "
|
450 |
else:
|
451 |
+
batch["target_text"] = batch[text_column_name].lower() + " "
|
452 |
return batch
|
453 |
|
454 |
with training_args.main_process_first(desc="dataset map special characters removal"):
|
wandb/run-20220130_033240-1ciqu2rb/files/output.log
CHANGED
@@ -3050,3 +3050,764 @@ Configuration saved in ./checkpoint-1600/config.json
|
|
3050 |
{'eval_loss': 0.3882218301296234, 'eval_wer': 0.3162186087685785, 'eval_runtime': 175.3702, 'eval_samples_per_second': 20.574, 'eval_steps_per_second': 2.572, 'epoch': 12.4}
|
3051 |
Model weights saved in ./checkpoint-1600/pytorch_model.bin
|
3052 |
Configuration saved in ./checkpoint-1600/preprocessor_config.json
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3050 |
{'eval_loss': 0.3882218301296234, 'eval_wer': 0.3162186087685785, 'eval_runtime': 175.3702, 'eval_samples_per_second': 20.574, 'eval_steps_per_second': 2.572, 'epoch': 12.4}
|
3051 |
Model weights saved in ./checkpoint-1600/pytorch_model.bin
|
3052 |
Configuration saved in ./checkpoint-1600/preprocessor_config.json
|
3053 |
+
Configuration saved in ./preprocessor_config.json
|
3054 |
+
Deleting older checkpoint [checkpoint-800] due to args.save_total_limit
|
3055 |
+
|
3056 |
+
|
3057 |
+
|
3058 |
+
|
3059 |
+
|
3060 |
+
|
3061 |
+
|
3062 |
+
|
3063 |
+
|
3064 |
+
|
3065 |
+
|
3066 |
+
|
3067 |
+
|
3068 |
+
|
3069 |
+
|
3070 |
+
|
3071 |
+
|
3072 |
+
|
3073 |
+
|
3074 |
+
|
3075 |
+
|
3076 |
+
|
3077 |
+
|
3078 |
+
|
3079 |
+
|
3080 |
+
|
3081 |
+
|
3082 |
+
|
3083 |
+
|
3084 |
+
|
3085 |
+
|
3086 |
+
|
3087 |
+
|
3088 |
+
|
3089 |
+
|
3090 |
+
|
3091 |
+
|
3092 |
+
|
3093 |
+
|
3094 |
+
|
3095 |
+
|
3096 |
+
|
3097 |
+
|
3098 |
+
|
3099 |
+
|
3100 |
+
|
3101 |
+
|
3102 |
+
|
3103 |
+
|
3104 |
+
|
3105 |
+
|
3106 |
+
|
3107 |
+
|
3108 |
+
|
3109 |
+
|
3110 |
+
|
3111 |
+
|
3112 |
+
|
3113 |
+
|
3114 |
+
|
3115 |
+
|
3116 |
+
|
3117 |
+
|
3118 |
+
|
3119 |
+
|
3120 |
+
|
3121 |
+
|
3122 |
+
|
3123 |
+
|
3124 |
+
|
3125 |
+
|
3126 |
+
|
3127 |
+
|
3128 |
+
|
3129 |
+
|
3130 |
+
|
3131 |
+
|
3132 |
+
|
3133 |
+
|
3134 |
+
|
3135 |
+
|
3136 |
+
|
3137 |
+
|
3138 |
+
|
3139 |
+
|
3140 |
+
|
3141 |
+
|
3142 |
+
|
3143 |
+
|
3144 |
+
|
3145 |
+
|
3146 |
+
|
3147 |
+
|
3148 |
+
|
3149 |
+
|
3150 |
+
|
3151 |
+
|
3152 |
+
|
3153 |
+
44%|█████████████████████████████████████████████████▋ | 1700/3870 [2:41:10<1:59:31, 3.31s/it]The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.
|
3154 |
+
***** Running Evaluation *****
|
3155 |
+
Num examples = 3608
|
3156 |
+
Batch size = 8
|
3157 |
+
|
3158 |
+
|
3159 |
+
|
3160 |
+
|
3161 |
+
|
3162 |
+
|
3163 |
+
|
3164 |
+
|
3165 |
+
|
3166 |
+
|
3167 |
+
|
3168 |
+
|
3169 |
+
|
3170 |
+
|
3171 |
+
|
3172 |
+
|
3173 |
+
|
3174 |
+
|
3175 |
+
|
3176 |
+
|
3177 |
+
|
3178 |
+
|
3179 |
+
|
3180 |
+
|
3181 |
+
|
3182 |
+
|
3183 |
+
|
3184 |
+
|
3185 |
+
|
3186 |
+
|
3187 |
+
|
3188 |
+
|
3189 |
+
|
3190 |
+
|
3191 |
+
|
3192 |
+
|
3193 |
+
|
3194 |
+
|
3195 |
+
|
3196 |
+
|
3197 |
+
|
3198 |
+
|
3199 |
+
|
3200 |
+
|
3201 |
+
|
3202 |
+
|
3203 |
+
|
3204 |
+
|
3205 |
+
|
3206 |
+
|
3207 |
+
|
3208 |
+
|
3209 |
+
|
3210 |
+
|
3211 |
+
|
3212 |
+
|
3213 |
+
|
3214 |
+
|
3215 |
+
|
3216 |
+
|
3217 |
+
|
3218 |
+
|
3219 |
+
|
3220 |
+
|
3221 |
+
|
3222 |
+
|
3223 |
+
|
3224 |
+
|
3225 |
+
|
3226 |
+
|
3227 |
+
|
3228 |
+
|
3229 |
+
|
3230 |
+
|
3231 |
+
|
3232 |
+
|
3233 |
+
|
3234 |
+
|
3235 |
+
|
3236 |
+
|
3237 |
+
|
3238 |
+
|
3239 |
+
|
3240 |
+
|
3241 |
+
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████| 451/451 [02:51<00:00, 2.55it/s]
|
3242 |
+
|
3243 |
+
|
3244 |
+
|
3245 |
+
|
3246 |
+
|
3247 |
+
|
3248 |
+
|
3249 |
+
|
3250 |
+
|
3251 |
+
|
3252 |
+
|
3253 |
+
|
3254 |
+
|
3255 |
+
|
3256 |
+
|
3257 |
+
|
3258 |
+
|
3259 |
+
|
3260 |
+
|
3261 |
+
|
3262 |
+
|
3263 |
+
|
3264 |
+
|
3265 |
+
|
3266 |
+
|
3267 |
+
|
3268 |
+
|
3269 |
+
|
3270 |
+
|
3271 |
+
|
3272 |
+
|
3273 |
+
|
3274 |
+
|
3275 |
+
|
3276 |
+
|
3277 |
+
|
3278 |
+
|
3279 |
+
|
3280 |
+
|
3281 |
+
|
3282 |
+
|
3283 |
+
|
3284 |
+
|
3285 |
+
|
3286 |
+
|
3287 |
+
|
3288 |
+
|
3289 |
+
|
3290 |
+
|
3291 |
+
|
3292 |
+
|
3293 |
+
|
3294 |
+
|
3295 |
+
|
3296 |
+
|
3297 |
+
|
3298 |
+
|
3299 |
+
|
3300 |
+
|
3301 |
+
|
3302 |
+
|
3303 |
+
|
3304 |
+
|
3305 |
+
|
3306 |
+
|
3307 |
+
|
3308 |
+
|
3309 |
+
|
3310 |
+
|
3311 |
+
|
3312 |
+
|
3313 |
+
|
3314 |
+
|
3315 |
+
|
3316 |
+
|
3317 |
+
|
3318 |
+
|
3319 |
+
|
3320 |
+
|
3321 |
+
|
3322 |
+
|
3323 |
+
|
3324 |
+
|
3325 |
+
|
3326 |
+
|
3327 |
+
|
3328 |
+
|
3329 |
+
|
3330 |
+
|
3331 |
+
|
3332 |
+
|
3333 |
+
|
3334 |
+
|
3335 |
+
|
3336 |
+
|
3337 |
+
|
3338 |
+
|
3339 |
+
|
3340 |
+
|
3341 |
+
|
3342 |
+
47%|████████████████████████████████████████████████████▌ | 1800/3870 [2:50:26<1:41:19, 2.94s/it]The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.
|
3343 |
+
***** Running Evaluation *****
|
3344 |
+
Num examples = 3608
|
3345 |
+
Batch size = 8
|
3346 |
+
|
3347 |
+
|
3348 |
+
|
3349 |
+
|
3350 |
+
|
3351 |
+
|
3352 |
+
|
3353 |
+
|
3354 |
+
|
3355 |
+
|
3356 |
+
|
3357 |
+
|
3358 |
+
|
3359 |
+
|
3360 |
+
|
3361 |
+
|
3362 |
+
|
3363 |
+
|
3364 |
+
|
3365 |
+
|
3366 |
+
|
3367 |
+
|
3368 |
+
|
3369 |
+
|
3370 |
+
|
3371 |
+
|
3372 |
+
|
3373 |
+
|
3374 |
+
|
3375 |
+
|
3376 |
+
|
3377 |
+
|
3378 |
+
|
3379 |
+
|
3380 |
+
|
3381 |
+
|
3382 |
+
|
3383 |
+
|
3384 |
+
|
3385 |
+
|
3386 |
+
|
3387 |
+
|
3388 |
+
|
3389 |
+
|
3390 |
+
|
3391 |
+
|
3392 |
+
|
3393 |
+
|
3394 |
+
|
3395 |
+
|
3396 |
+
|
3397 |
+
|
3398 |
+
|
3399 |
+
|
3400 |
+
|
3401 |
+
|
3402 |
+
|
3403 |
+
|
3404 |
+
|
3405 |
+
|
3406 |
+
|
3407 |
+
|
3408 |
+
|
3409 |
+
|
3410 |
+
|
3411 |
+
|
3412 |
+
|
3413 |
+
|
3414 |
+
|
3415 |
+
|
3416 |
+
|
3417 |
+
|
3418 |
+
|
3419 |
+
|
3420 |
+
|
3421 |
+
|
3422 |
+
|
3423 |
+
|
3424 |
+
|
3425 |
+
|
3426 |
+
|
3427 |
+
|
3428 |
+
|
3429 |
+
|
3430 |
+
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████| 451/451 [02:53<00:00, 2.55it/s]
|
3431 |
+
|
3432 |
+
|
3433 |
+
|
3434 |
+
|
3435 |
+
|
3436 |
+
|
3437 |
+
|
3438 |
+
|
3439 |
+
|
3440 |
+
|
3441 |
+
|
3442 |
+
|
3443 |
+
|
3444 |
+
|
3445 |
+
|
3446 |
+
|
3447 |
+
|
3448 |
+
|
3449 |
+
|
3450 |
+
|
3451 |
+
|
3452 |
+
|
3453 |
+
|
3454 |
+
|
3455 |
+
|
3456 |
+
|
3457 |
+
|
3458 |
+
|
3459 |
+
|
3460 |
+
|
3461 |
+
|
3462 |
+
|
3463 |
+
|
3464 |
+
|
3465 |
+
|
3466 |
+
|
3467 |
+
|
3468 |
+
|
3469 |
+
|
3470 |
+
|
3471 |
+
|
3472 |
+
|
3473 |
+
|
3474 |
+
|
3475 |
+
|
3476 |
+
|
3477 |
+
|
3478 |
+
|
3479 |
+
|
3480 |
+
|
3481 |
+
|
3482 |
+
|
3483 |
+
|
3484 |
+
|
3485 |
+
|
3486 |
+
|
3487 |
+
|
3488 |
+
|
3489 |
+
|
3490 |
+
|
3491 |
+
|
3492 |
+
|
3493 |
+
|
3494 |
+
|
3495 |
+
|
3496 |
+
|
3497 |
+
|
3498 |
+
|
3499 |
+
|
3500 |
+
|
3501 |
+
|
3502 |
+
|
3503 |
+
|
3504 |
+
|
3505 |
+
|
3506 |
+
|
3507 |
+
|
3508 |
+
|
3509 |
+
|
3510 |
+
|
3511 |
+
|
3512 |
+
|
3513 |
+
|
3514 |
+
|
3515 |
+
|
3516 |
+
|
3517 |
+
|
3518 |
+
|
3519 |
+
|
3520 |
+
|
3521 |
+
|
3522 |
+
|
3523 |
+
|
3524 |
+
|
3525 |
+
|
3526 |
+
|
3527 |
+
|
3528 |
+
|
3529 |
+
|
3530 |
+
|
3531 |
+
49%|███████████████████████████████████████████████████████▍ | 1900/3870 [2:59:42<1:25:54, 2.62s/it]The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.
|
3532 |
+
***** Running Evaluation *****
|
3533 |
+
Num examples = 3608
|
3534 |
+
Batch size = 8
|
3535 |
+
|
3536 |
+
|
3537 |
+
|
3538 |
+
|
3539 |
+
|
3540 |
+
|
3541 |
+
|
3542 |
+
|
3543 |
+
|
3544 |
+
|
3545 |
+
|
3546 |
+
|
3547 |
+
|
3548 |
+
|
3549 |
+
|
3550 |
+
|
3551 |
+
|
3552 |
+
|
3553 |
+
|
3554 |
+
|
3555 |
+
|
3556 |
+
|
3557 |
+
|
3558 |
+
|
3559 |
+
|
3560 |
+
|
3561 |
+
|
3562 |
+
|
3563 |
+
|
3564 |
+
|
3565 |
+
|
3566 |
+
|
3567 |
+
|
3568 |
+
|
3569 |
+
|
3570 |
+
|
3571 |
+
|
3572 |
+
|
3573 |
+
|
3574 |
+
|
3575 |
+
|
3576 |
+
|
3577 |
+
|
3578 |
+
|
3579 |
+
|
3580 |
+
|
3581 |
+
|
3582 |
+
|
3583 |
+
|
3584 |
+
|
3585 |
+
|
3586 |
+
|
3587 |
+
|
3588 |
+
|
3589 |
+
|
3590 |
+
|
3591 |
+
|
3592 |
+
|
3593 |
+
|
3594 |
+
|
3595 |
+
|
3596 |
+
|
3597 |
+
|
3598 |
+
|
3599 |
+
|
3600 |
+
|
3601 |
+
|
3602 |
+
|
3603 |
+
|
3604 |
+
|
3605 |
+
|
3606 |
+
|
3607 |
+
|
3608 |
+
|
3609 |
+
|
3610 |
+
|
3611 |
+
|
3612 |
+
|
3613 |
+
|
3614 |
+
|
3615 |
+
|
3616 |
+
|
3617 |
+
|
3618 |
+
|
3619 |
+
|
3620 |
+
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 451/451 [02:51<00:00, 2.53it/s]
|
3621 |
+
|
3622 |
+
|
3623 |
+
|
3624 |
+
|
3625 |
+
|
3626 |
+
|
3627 |
+
|
3628 |
+
|
3629 |
+
|
3630 |
+
|
3631 |
+
|
3632 |
+
|
3633 |
+
|
3634 |
+
|
3635 |
+
|
3636 |
+
|
3637 |
+
|
3638 |
+
|
3639 |
+
|
3640 |
+
|
3641 |
+
|
3642 |
+
|
3643 |
+
|
3644 |
+
|
3645 |
+
|
3646 |
+
|
3647 |
+
|
3648 |
+
|
3649 |
+
|
3650 |
+
|
3651 |
+
|
3652 |
+
|
3653 |
+
|
3654 |
+
|
3655 |
+
|
3656 |
+
|
3657 |
+
|
3658 |
+
|
3659 |
+
|
3660 |
+
|
3661 |
+
|
3662 |
+
|
3663 |
+
|
3664 |
+
|
3665 |
+
|
3666 |
+
|
3667 |
+
|
3668 |
+
|
3669 |
+
|
3670 |
+
|
3671 |
+
|
3672 |
+
|
3673 |
+
|
3674 |
+
|
3675 |
+
|
3676 |
+
|
3677 |
+
|
3678 |
+
|
3679 |
+
|
3680 |
+
|
3681 |
+
|
3682 |
+
|
3683 |
+
|
3684 |
+
|
3685 |
+
|
3686 |
+
|
3687 |
+
|
3688 |
+
|
3689 |
+
|
3690 |
+
|
3691 |
+
|
3692 |
+
|
3693 |
+
|
3694 |
+
|
3695 |
+
|
3696 |
+
|
3697 |
+
|
3698 |
+
|
3699 |
+
|
3700 |
+
|
3701 |
+
|
3702 |
+
|
3703 |
+
|
3704 |
+
|
3705 |
+
|
3706 |
+
|
3707 |
+
|
3708 |
+
|
3709 |
+
|
3710 |
+
|
3711 |
+
|
3712 |
+
|
3713 |
+
|
3714 |
+
|
3715 |
+
|
3716 |
+
|
3717 |
+
|
3718 |
+
|
3719 |
+
|
3720 |
+
52%|██████████████████████████████████████████████████████████▎ | 1999/3870 [3:08:55<1:13:02, 2.34s/it]
|
3721 |
+
52%|██████████████████████████████████████████████████████████▍ | 2000/3870 [3:09:03<1:59:17, 3.83s/it]The following columns in the evaluation set don't have a corresponding argument in `Wav2Vec2ForCTC.forward` and have been ignored: input_length.
|
3722 |
+
***** Running Evaluation *****
|
3723 |
+
Num examples = 3608
|
3724 |
+
Batch size = 8
|
3725 |
+
2%|██▏ | 8/451 [00:02<02:09, 3.42it/s]
|
3726 |
+
3%|███▍ | 13/451 [00:04<02:46, 2.63it/s]
|
3727 |
+
4%|█████ | 19/451 [00:06<02:25, 2.96it/s]
|
3728 |
+
5%|██████ | 23/451 [00:08<03:34, 1.99it/s]
|
3729 |
+
6%|███████▏ | 27/451 [00:10<03:16, 2.16it/s]
|
3730 |
+
7%|████████▌ | 32/451 [00:12<02:46, 2.52it/s]
|
3731 |
+
8%|█████████▌ | 36/451 [00:14<03:19, 2.08it/s]
|
3732 |
+
9%|██████████▋ | 40/451 [00:16<03:12, 2.13it/s]
|
3733 |
+
10%|███████████▉ | 45/451 [00:18<02:58, 2.28it/s]
|
3734 |
+
11%|█████████████▌ | 51/451 [00:20<02:34, 2.60it/s]
|
3735 |
+
12%|██████████████▉ | 56/451 [00:22<02:38, 2.49it/s]
|
3736 |
+
13%|███████████████▉ | 60/451 [00:24<02:48, 2.31it/s]
|
3737 |
+
14%|█████████████████▎ | 65/451 [00:26<02:29, 2.58it/s]
|
3738 |
+
16%|██████████████████▉ | 71/451 [00:29<02:28, 2.56it/s]
|
3739 |
+
17%|████████████████████▏ | 76/451 [00:31<02:39, 2.34it/s]
|
3740 |
+
18%|█████████████████████▌ | 81/451 [00:32<02:02, 3.02it/s]
|
3741 |
+
19%|██████████████████████▉ | 86/451 [00:34<01:54, 3.20it/s]
|
3742 |
+
20%|████████████████████████▏ | 91/451 [00:36<02:36, 2.29it/s]
|
3743 |
+
21%|█████████████████████████▌ | 96/451 [00:38<02:22, 2.49it/s]
|
3744 |
+
22%|██████████████████████████▋ | 101/451 [00:41<02:42, 2.16it/s]
|
3745 |
+
23%|███████████████████████████▋ | 105/451 [00:42<02:34, 2.25it/s]
|
3746 |
+
25%|█████████████████████████████▎ | 111/451 [00:45<02:09, 2.63it/s]
|
3747 |
+
26%|██████████████████████████████▌ | 116/451 [00:47<02:23, 2.33it/s]
|
3748 |
+
27%|███████████████████████████████▋ | 120/451 [00:49<02:31, 2.19it/s]
|
3749 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3750 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3751 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3752 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3753 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3754 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3755 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3756 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3757 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3758 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3759 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3760 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3761 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3762 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3763 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3764 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3765 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3766 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3767 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3768 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3769 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3770 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3771 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3772 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3773 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3774 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3775 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3776 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3777 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3778 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3779 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3780 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3781 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3782 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3783 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3784 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3785 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3786 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3787 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3788 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3789 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3790 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3791 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3792 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3793 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3794 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3795 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3796 |
+
28%|██████████████████████���█████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3797 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3798 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3799 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3800 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3801 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3802 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3803 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3804 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3805 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3806 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3807 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3808 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3809 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3810 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3811 |
+
{'eval_loss': 0.3732178211212158, 'eval_wer': 0.3125844476541024, 'eval_runtime': 175.4721, 'eval_samples_per_second': 20.562, 'eval_steps_per_second': 2.57, 'epoch': 15.5}
|
3812 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
3813 |
+
28%|████████████████████████████████▉ | 125/451 [00:51<02:10, 2.50it/s]
|
wandb/run-20220130_033240-1ciqu2rb/files/wandb-summary.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
wandb/run-20220130_033240-1ciqu2rb/logs/debug-internal.log
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
wandb/run-20220130_033240-1ciqu2rb/run-1ciqu2rb.wandb
CHANGED
Binary files a/wandb/run-20220130_033240-1ciqu2rb/run-1ciqu2rb.wandb and b/wandb/run-20220130_033240-1ciqu2rb/run-1ciqu2rb.wandb differ
|
|