Instructions to use Priyanship/eval_cache_hindi_only with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Priyanship/eval_cache_hindi_only with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Priyanship/eval_cache_hindi_only")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("Priyanship/eval_cache_hindi_only") model = AutoModelForCTC.from_pretrained("Priyanship/eval_cache_hindi_only", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| wandb: Currently logged in as: priyanshi-pal (priyanshipal). Use `wandb login --relogin` to force relogin | |
| wandb: wandb version 0.17.7 is available! To upgrade, please run: | |
| wandb: $ pip install wandb --upgrade | |
| wandb: Tracking run with wandb version 0.17.6 | |
| wandb: Run data is saved locally in /scratch/elec/t405-puhe/p/palp3/MUCS/wandb/run-20240822_174142-upry9j53 | |
| wandb: Run `wandb offline` to turn off syncing. | |
| wandb: Syncing run eval_pd20000_w500_s300_shuff100_hinglish | |
| wandb: ⭐️ View project at https://wandb.ai/priyanshipal/huggingface | |
| wandb: 🚀 View run at https://wandb.ai/priyanshipal/huggingface/runs/upry9j53 | |
| /scratch/work/palp3/myenv/lib/python3.11/site-packages/transformers/training_args.py:1525: FutureWarning: `evaluation_strategy` is deprecated and will be removed in version 4.46 of 🤗 Transformers. Use `eval_strategy` instead | |
| warnings.warn( | |
| Generating train split: 0 examples [00:00, ? examples/s] Generating train split: 572 examples [00:00, 27863.95 examples/s] | |
| /scratch/work/palp3/myenv/lib/python3.11/site-packages/transformers/models/auto/configuration_auto.py:957: FutureWarning: The `use_auth_token` argument is deprecated and will be removed in v5 of Transformers. Please use `token` instead. | |
| warnings.warn( | |
| /scratch/work/palp3/myenv/lib/python3.11/site-packages/transformers/models/auto/feature_extraction_auto.py:329: FutureWarning: The `use_auth_token` argument is deprecated and will be removed in v5 of Transformers. Please use `token` instead. | |
| warnings.warn( | |
| /scratch/work/palp3/myenv/lib/python3.11/site-packages/accelerate/accelerator.py:488: FutureWarning: `torch.cuda.amp.GradScaler(args...)` is deprecated. Please use `torch.amp.GradScaler('cuda', args...)` instead. | |
| self.scaler = torch.cuda.amp.GradScaler(**kwargs) | |
| max_steps is given, it will override any value given in num_train_epochs | |
| Wav2Vec2CTCTokenizer(name_or_path='', vocab_size=149, model_max_length=1000000000000000019884624838656, is_fast=False, padding_side='right', truncation_side='right', special_tokens={'bos_token': '<s>', 'eos_token': '</s>', 'unk_token': '[UNK]', 'pad_token': '[PAD]'}, clean_up_tokenization_spaces=True), added_tokens_decoder={ | |
| 147: AddedToken("[UNK]", rstrip=True, lstrip=True, single_word=False, normalized=False, special=False), | |
| 148: AddedToken("[PAD]", rstrip=True, lstrip=True, single_word=False, normalized=False, special=False), | |
| 149: AddedToken("<s>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True), | |
| 150: AddedToken("</s>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True), | |
| } | |
| CHECK MODEL PARAMS Wav2Vec2ForCTC( | |
| (wav2vec2): Wav2Vec2Model( | |
| (feature_extractor): Wav2Vec2FeatureEncoder( | |
| (conv_layers): ModuleList( | |
| (0): Wav2Vec2LayerNormConvLayer( | |
| (conv): Conv1d(1, 512, kernel_size=(10,), stride=(5,)) | |
| (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True) | |
| (activation): GELUActivation() | |
| ) | |
| (1-4): 4 x Wav2Vec2LayerNormConvLayer( | |
| (conv): Conv1d(512, 512, kernel_size=(3,), stride=(2,)) | |
| (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True) | |
| (activation): GELUActivation() | |
| ) | |
| (5-6): 2 x Wav2Vec2LayerNormConvLayer( | |
| (conv): Conv1d(512, 512, kernel_size=(2,), stride=(2,)) | |
| (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True) | |
| (activation): GELUActivation() | |
| ) | |
| ) | |
| ) | |
| (feature_projection): Wav2Vec2FeatureProjection( | |
| (layer_norm): LayerNorm((512,), eps=1e-05, elementwise_affine=True) | |
| (projection): Linear(in_features=512, out_features=1024, bias=True) | |
| (dropout): Dropout(p=0.3, inplace=False) | |
| ) | |
| (encoder): Wav2Vec2EncoderStableLayerNorm( | |
| (pos_conv_embed): Wav2Vec2PositionalConvEmbedding( | |
| (conv): ParametrizedConv1d( | |
| 1024, 1024, kernel_size=(128,), stride=(1,), padding=(64,), groups=16 | |
| (parametrizations): ModuleDict( | |
| (weight): ParametrizationList( | |
| (0): _WeightNorm() | |
| ) | |
| ) | |
| ) | |
| (padding): Wav2Vec2SamePadLayer() | |
| (activation): GELUActivation() | |
| ) | |
| (layer_norm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True) | |
| (dropout): Dropout(p=0.2, inplace=False) | |
| (layers): ModuleList( | |
| (0-23): 24 x Wav2Vec2EncoderLayerStableLayerNorm( | |
| (attention): Wav2Vec2SdpaAttention( | |
| (k_proj): Linear(in_features=1024, out_features=1024, bias=True) | |
| (v_proj): Linear(in_features=1024, out_features=1024, bias=True) | |
| (q_proj): Linear(in_features=1024, out_features=1024, bias=True) | |
| (out_proj): Linear(in_features=1024, out_features=1024, bias=True) | |
| ) | |
| (dropout): Dropout(p=0.2, inplace=False) | |
| (layer_norm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True) | |
| (feed_forward): Wav2Vec2FeedForward( | |
| (intermediate_dropout): Dropout(p=0.0, inplace=False) | |
| (intermediate_dense): Linear(in_features=1024, out_features=4096, bias=True) | |
| (intermediate_act_fn): GELUActivation() | |
| (output_dense): Linear(in_features=4096, out_features=1024, bias=True) | |
| (output_dropout): Dropout(p=0.2, inplace=False) | |
| ) | |
| (final_layer_norm): LayerNorm((1024,), eps=1e-05, elementwise_affine=True) | |
| ) | |
| ) | |
| ) | |
| ) | |
| (dropout): Dropout(p=0.0, inplace=False) | |
| (lm_head): Linear(in_features=1024, out_features=151, bias=True) | |
| ) | |
| check the eval set length 572 | |
| 08/22/2024 17:41:50 - INFO - __main__ - *** Evaluate *** | |
| /scratch/work/palp3/myenv/lib/python3.11/site-packages/transformers/models/wav2vec2/processing_wav2vec2.py:157: UserWarning: `as_target_processor` is deprecated and will be removed in v5 of Transformers. You can process your labels by using the argument `text` of the regular `__call__` method (either in the same call as your audio inputs, or in a separate call. | |
| warnings.warn( | |
| 0%| | 0/36 [00:00<?, ?it/s] 6%|▌ | 2/36 [00:01<00:23, 1.43it/s] 8%|▊ | 3/36 [00:02<00:31, 1.04it/s] 11%|█ | 4/36 [00:04<00:40, 1.26s/it] 14%|█▍ | 5/36 [00:06<00:42, 1.36s/it] 17%|█▋ | 6/36 [00:07<00:40, 1.36s/it] 19%|█▉ | 7/36 [00:08<00:35, 1.21s/it] 22%|██▏ | 8/36 [00:08<00:27, 1.04it/s] 25%|██▌ | 9/36 [00:09<00:22, 1.20it/s] 28%|██▊ | 10/36 [00:09<00:20, 1.24it/s] 31%|███ | 11/36 [00:10<00:20, 1.21it/s] 33%|███▎ | 12/36 [00:11<00:19, 1.22it/s] 36%|███▌ | 13/36 [00:12<00:17, 1.31it/s] 39%|███▉ | 14/36 [00:12<00:14, 1.50it/s] 42%|████▏ | 15/36 [00:13<00:12, 1.68it/s] 44%|████▍ | 16/36 [00:13<00:10, 1.83it/s] 47%|████▋ | 17/36 [00:14<00:09, 1.92it/s] 50%|█████ | 18/36 [00:14<00:09, 1.86it/s] 53%|█████▎ | 19/36 [00:15<00:09, 1.78it/s] 56%|█████▌ | 20/36 [00:15<00:08, 1.83it/s] 58%|█████▊ | 21/36 [00:16<00:07, 1.97it/s] 61%|██████ | 22/36 [00:16<00:07, 1.97it/s] 64%|██████▍ | 23/36 [00:17<00:06, 1.94it/s] 67%|██████▋ | 24/36 [00:17<00:06, 1.93it/s] 69%|██████▉ | 25/36 [00:18<00:05, 1.85it/s] 72%|███████▏ | 26/36 [00:18<00:05, 1.87it/s] 75%|███████▌ | 27/36 [00:19<00:04, 1.96it/s] 78%|███████▊ | 28/36 [00:20<00:04, 1.63it/s] 81%|████████ | 29/36 [00:21<00:06, 1.07it/s] 83%|████████▎ | 30/36 [00:23<00:06, 1.08s/it] 86%|████████▌ | 31/36 [00:25<00:06, 1.35s/it] 89%|████████▉ | 32/36 [00:25<00:04, 1.12s/it] 92%|█████████▏| 33/36 [00:26<00:02, 1.04it/s] 94%|█████████▍| 34/36 [00:26<00:01, 1.20it/s] 97%|█████████▋| 35/36 [00:27<00:00, 1.35it/s] 100%|██████████| 36/36 [00:27<00:00, 1.79it/s] 100%|██████████| 36/36 [00:29<00:00, 1.23it/s] | |
| Printing predictions for a few samples: | |
| Sample 1: | |
| Reference: हम उनका उपयोग ऐसे ही कर सकते हैं या आवश्यकता अनुसार कुछ बदलाव करके उपयोग कर सकते हैं | |
| ###### | |
| Prediction: हम उनका उपयोग ऐसे ही कर सकते हैं | |
| Sample 2: | |
| Reference: अतः शीर्षक इस तरह से जोड़ सकते हैं | |
| ###### | |
| Prediction: अतः शीर्ष है | |
| Sample 3: | |
| Reference: प्रेसेंटेशन के अंत में आपने स्लाइड की एक कॉपी बना ली है | |
| ###### | |
| Prediction: presentation के अंत में आपने स ैंैं | |
| Sample 4: | |
| Reference: चलिए अब फोंट्स और फोंट्स को फॉर्मेट करने के कुछ तरीके देखते हैं | |
| ###### | |
| Prediction: चलिए अब fonts और fonts को format करने के कुछ तरीके देेहं | |
| Sample 5: | |
| Reference: यह एक डायलॉग बॉक्स खोलेगा जिसमें हम अपनी आवश्यकतानुसार फॉन्ट स्टाइल और साइज़ सेट कर सकते हैं | |
| ###### | |
| Prediction: यह एक dialog box खोलेगा जिसमें हम अपनी आवश्यकत हैहै | |
| last Reference string यह स्क्रिप्ट लता द्वारा अनुवादित है आईआईटी मुंबई की ओर से मैं रवि कुमार अब आपसे विदा लेता हूँहमसे जुड़ने के लिए धन्यवाद | |
| last prediction string लता द्वारा अनुवादित है आई आई टी मुmबई की ओर से मैं रवि कुमार अब आपसे विदा लेता हूँ हमसे जुड़ने के लिए धन्यवाद | |
| ***** eval metrics ***** | |
| eval_cer = 0.4569 | |
| eval_loss = 2.2188 | |
| eval_model_preparation_time = 0.0045 | |
| eval_runtime = 0:00:31.20 | |
| eval_samples = 572 | |
| eval_samples_per_second = 18.329 | |
| eval_steps_per_second = 1.154 | |
| eval_wer = 0.5264 | |
| json-train.arrow: 0%| | 0.00/161k [00:00<?, ?B/s] | |
| model.safetensors: 0%| | 0.00/1.26G [00:00<?, ?B/s][A | |
| Upload 3 LFS files: 0%| | 0/3 [00:00<?, ?it/s][A[A | |
| training_args.bin: 0%| | 0.00/5.43k [00:00<?, ?B/s][A[A[A | |
| model.safetensors: 0%| | 2.41M/1.26G [00:00<01:33, 13.5MB/s][A | |
| model.safetensors: 0%| | 3.77M/1.26G [00:00<02:01, 10.4MB/s][A | |
| model.safetensors: 0%| | 4.80M/1.26G [00:00<02:28, 8.48MB/s][A training_args.bin: 100%|██████████| 5.43k/5.43k [00:00<00:00, 10.1kB/s] | |
| model.safetensors: 1%| | 6.52M/1.26G [00:00<02:08, 9.78MB/s][A | |
| model.safetensors: 1%| | 9.40M/1.26G [00:00<01:26, 14.5MB/s][A json-train.arrow: 100%|██████████| 161k/161k [00:01<00:00, 155kB/s] | |
| model.safetensors: 1%|▏ | 16.0M/1.26G [00:01<01:37, 12.8MB/s][A | |
| Upload 3 LFS files: 33%|███▎ | 1/3 [00:01<00:02, 1.31s/it][A[A | |
| model.safetensors: 2%|▏ | 19.5M/1.26G [00:01<01:21, 15.2MB/s][A | |
| model.safetensors: 2%|▏ | 21.3M/1.26G [00:01<01:28, 14.1MB/s][A | |
| model.safetensors: 2%|▏ | 22.9M/1.26G [00:01<01:29, 13.9MB/s][A | |
| model.safetensors: 2%|▏ | 24.4M/1.26G [00:02<02:29, 8.28MB/s][A | |
| model.safetensors: 2%|▏ | 25.5M/1.26G [00:02<02:25, 8.52MB/s][A | |
| model.safetensors: 2%|▏ | 27.8M/1.26G [00:02<01:57, 10.5MB/s][A | |
| model.safetensors: 3%|▎ | 32.0M/1.26G [00:02<02:03, 9.97MB/s][A | |
| model.safetensors: 4%|▎ | 46.3M/1.26G [00:02<00:43, 28.2MB/s][A | |
| model.safetensors: 4%|▍ | 51.3M/1.26G [00:03<00:47, 25.3MB/s][A | |
| model.safetensors: 5%|▍ | 62.6M/1.26G [00:03<00:30, 38.9MB/s][A | |
| model.safetensors: 5%|▌ | 68.8M/1.26G [00:03<00:39, 30.5MB/s][A | |
| model.safetensors: 6%|▋ | 79.5M/1.26G [00:03<00:28, 41.9MB/s][A | |
| model.safetensors: 7%|▋ | 85.9M/1.26G [00:04<00:38, 30.9MB/s][A | |
| model.safetensors: 8%|▊ | 96.0M/1.26G [00:04<00:36, 31.7MB/s][A | |
| model.safetensors: 9%|▊ | 110M/1.26G [00:04<00:24, 46.9MB/s] [A | |
| model.safetensors: 9%|▉ | 117M/1.26G [00:05<00:42, 27.1MB/s][A | |
| model.safetensors: 10%|▉ | 123M/1.26G [00:05<00:51, 22.0MB/s][A | |
| model.safetensors: 10%|█ | 128M/1.26G [00:06<01:01, 18.5MB/s][A | |
| model.safetensors: 10%|█ | 132M/1.26G [00:06<01:03, 17.8MB/s][A | |
| model.safetensors: 11%|█ | 134M/1.26G [00:06<01:12, 15.6MB/s][A | |
| model.safetensors: 11%|█ | 137M/1.26G [00:06<01:30, 12.5MB/s][A | |
| model.safetensors: 11%|█ | 138M/1.26G [00:07<01:27, 12.8MB/s][A | |
| model.safetensors: 11%|█ | 140M/1.26G [00:07<01:26, 13.0MB/s][A | |
| model.safetensors: 11%|█▏ | 144M/1.26G [00:07<01:06, 16.9MB/s][A | |
| model.safetensors: 12%|█▏ | 146M/1.26G [00:07<01:33, 11.9MB/s][A | |
| model.safetensors: 13%|█▎ | 158M/1.26G [00:07<00:39, 28.3MB/s][A | |
| model.safetensors: 13%|█▎ | 163M/1.26G [00:08<00:48, 22.7MB/s][A | |
| model.safetensors: 14%|█▍ | 174M/1.26G [00:08<00:30, 36.1MB/s][A | |
| model.safetensors: 14%|█▍ | 180M/1.26G [00:08<00:38, 28.0MB/s][A | |
| model.safetensors: 15%|█▌ | 190M/1.26G [00:08<00:27, 38.9MB/s][A | |
| model.safetensors: 16%|█▌ | 197M/1.26G [00:09<00:44, 23.8MB/s][A | |
| model.safetensors: 16%|█▌ | 201M/1.26G [00:10<01:15, 14.1MB/s][A | |
| model.safetensors: 16%|█▌ | 205M/1.26G [00:10<01:07, 15.6MB/s][A | |
| model.safetensors: 16%|█▋ | 208M/1.26G [00:10<01:27, 12.0MB/s][A | |
| model.safetensors: 18%|█▊ | 222M/1.26G [00:10<00:43, 24.1MB/s][A | |
| model.safetensors: 18%|█▊ | 228M/1.26G [00:11<00:48, 21.4MB/s][A | |
| model.safetensors: 19%|█▉ | 240M/1.26G [00:11<00:32, 31.8MB/s][A | |
| model.safetensors: 20%|█▉ | 246M/1.26G [00:11<00:32, 31.5MB/s][A | |
| model.safetensors: 20%|██ | 256M/1.26G [00:11<00:33, 30.1MB/s][A | |
| model.safetensors: 21%|██▏ | 270M/1.26G [00:11<00:22, 44.8MB/s][A | |
| model.safetensors: 22%|██▏ | 278M/1.26G [00:12<00:27, 35.6MB/s][A | |
| model.safetensors: 23%|██▎ | 288M/1.26G [00:12<00:31, 30.8MB/s][A | |
| model.safetensors: 24%|██▍ | 302M/1.26G [00:12<00:21, 44.1MB/s][A | |
| model.safetensors: 25%|██▍ | 310M/1.26G [00:13<00:25, 37.4MB/s][A | |
| model.safetensors: 25%|██▌ | 320M/1.26G [00:13<00:28, 33.6MB/s][A | |
| model.safetensors: 26%|██▋ | 334M/1.26G [00:13<00:20, 46.3MB/s][A | |
| model.safetensors: 27%|██▋ | 341M/1.26G [00:14<00:28, 32.9MB/s][A | |
| model.safetensors: 28%|██▊ | 352M/1.26G [00:14<00:29, 31.4MB/s][A | |
| model.safetensors: 29%|██▉ | 365M/1.26G [00:14<00:21, 42.3MB/s][A | |
| model.safetensors: 29%|██▉ | 372M/1.26G [00:14<00:22, 39.9MB/s][A | |
| model.safetensors: 30%|███ | 382M/1.26G [00:14<00:17, 49.8MB/s][A | |
| model.safetensors: 31%|███ | 390M/1.26G [00:15<00:22, 38.2MB/s][A | |
| model.safetensors: 32%|███▏ | 400M/1.26G [00:15<00:26, 32.9MB/s][A | |
| model.safetensors: 33%|███▎ | 414M/1.26G [00:15<00:18, 46.7MB/s][A | |
| model.safetensors: 33%|███▎ | 422M/1.26G [00:15<00:21, 39.3MB/s][A | |
| model.safetensors: 34%|███▍ | 432M/1.26G [00:16<00:23, 35.4MB/s][A | |
| model.safetensors: 35%|███▌ | 446M/1.26G [00:16<00:16, 49.3MB/s][A | |
| model.safetensors: 36%|███▌ | 454M/1.26G [00:16<00:18, 43.6MB/s][A | |
| model.safetensors: 37%|███▋ | 464M/1.26G [00:17<00:25, 31.7MB/s][A | |
| model.safetensors: 38%|███▊ | 478M/1.26G [00:17<00:17, 44.1MB/s][A | |
| model.safetensors: 38%|███▊ | 485M/1.26G [00:17<00:21, 36.7MB/s][A | |
| model.safetensors: 39%|███▉ | 496M/1.26G [00:18<00:22, 34.2MB/s][A | |
| model.safetensors: 40%|████ | 510M/1.26G [00:18<00:15, 47.5MB/s][A | |
| model.safetensors: 41%|████ | 518M/1.26G [00:18<00:19, 37.4MB/s][A | |
| model.safetensors: 42%|████▏ | 528M/1.26G [00:18<00:22, 32.1MB/s][A | |
| model.safetensors: 43%|████▎ | 542M/1.26G [00:18<00:16, 44.8MB/s][A | |
| model.safetensors: 44%|████▎ | 550M/1.26G [00:19<00:20, 34.7MB/s][A | |
| model.safetensors: 44%|████▍ | 560M/1.26G [00:19<00:20, 34.2MB/s][A | |
| model.safetensors: 45%|████▌ | 574M/1.26G [00:19<00:14, 47.5MB/s][A | |
| model.safetensors: 46%|████▌ | 582M/1.26G [00:20<00:18, 37.1MB/s][A | |
| model.safetensors: 47%|████▋ | 592M/1.26G [00:20<00:19, 35.0MB/s][A | |
| model.safetensors: 48%|████▊ | 606M/1.26G [00:20<00:13, 48.4MB/s][A | |
| model.safetensors: 49%|████▊ | 614M/1.26G [00:20<00:15, 40.7MB/s][A | |
| model.safetensors: 49%|████▉ | 624M/1.26G [00:21<00:17, 36.0MB/s][A | |
| model.safetensors: 50%|█████ | 637M/1.26G [00:21<00:12, 48.6MB/s][A | |
| model.safetensors: 51%|█████ | 645M/1.26G [00:21<00:15, 40.0MB/s][A | |
| model.safetensors: 52%|█████▏ | 656M/1.26G [00:22<00:17, 33.7MB/s][A | |
| model.safetensors: 53%|█████▎ | 671M/1.26G [00:22<00:12, 47.1MB/s][A | |
| model.safetensors: 54%|█████▎ | 678M/1.26G [00:22<00:15, 38.2MB/s][A | |
| model.safetensors: 54%|█████▍ | 688M/1.26G [00:22<00:17, 33.3MB/s][A | |
| model.safetensors: 56%|█████▌ | 702M/1.26G [00:23<00:12, 46.2MB/s][A | |
| model.safetensors: 56%|█████▌ | 710M/1.26G [00:23<00:14, 37.9MB/s][A | |
| model.safetensors: 57%|█████▋ | 720M/1.26G [00:23<00:16, 33.1MB/s][A | |
| model.safetensors: 58%|█████▊ | 734M/1.26G [00:23<00:11, 46.2MB/s][A | |
| model.safetensors: 59%|█████▉ | 742M/1.26G [00:24<00:12, 40.3MB/s][A | |
| model.safetensors: 60%|█████▉ | 752M/1.26G [00:24<00:14, 34.6MB/s][A | |
| model.safetensors: 61%|██████ | 766M/1.26G [00:24<00:10, 47.8MB/s][A | |
| model.safetensors: 61%|██████▏ | 774M/1.26G [00:24<00:12, 38.6MB/s][A | |
| model.safetensors: 62%|██████▏ | 784M/1.26G [00:25<00:14, 33.5MB/s][A | |
| model.safetensors: 63%|██████▎ | 798M/1.26G [00:25<00:09, 46.6MB/s][A | |
| model.safetensors: 64%|██████▍ | 806M/1.26G [00:25<00:10, 42.1MB/s][A | |
| model.safetensors: 65%|██████▍ | 816M/1.26G [00:26<00:12, 35.9MB/s][A | |
| model.safetensors: 66%|██████▌ | 830M/1.26G [00:26<00:08, 49.5MB/s][A | |
| model.safetensors: 66%|██████▋ | 838M/1.26G [00:26<00:10, 39.7MB/s][A | |
| model.safetensors: 67%|██████▋ | 848M/1.26G [00:26<00:12, 34.2MB/s][A | |
| model.safetensors: 68%|██████▊ | 862M/1.26G [00:27<00:08, 47.4MB/s][A | |
| model.safetensors: 69%|██████▉ | 870M/1.26G [00:27<00:09, 39.8MB/s][A | |
| model.safetensors: 70%|██████▉ | 880M/1.26G [00:27<00:10, 34.8MB/s][A | |
| model.safetensors: 71%|███████ | 894M/1.26G [00:27<00:07, 48.3MB/s][A | |
| model.safetensors: 71%|███████▏ | 902M/1.26G [00:28<00:09, 37.1MB/s][A | |
| model.safetensors: 72%|███████▏ | 912M/1.26G [00:28<00:11, 31.1MB/s][A | |
| model.safetensors: 73%|███████▎ | 926M/1.26G [00:28<00:07, 43.8MB/s][A | |
| model.safetensors: 74%|███████▍ | 934M/1.26G [00:29<00:09, 35.4MB/s][A | |
| model.safetensors: 75%|███████▍ | 944M/1.26G [00:29<00:09, 32.6MB/s][A | |
| model.safetensors: 76%|███████▌ | 958M/1.26G [00:29<00:06, 45.6MB/s][A | |
| model.safetensors: 77%|███████▋ | 966M/1.26G [00:29<00:08, 36.0MB/s][A | |
| model.safetensors: 77%|███████▋ | 976M/1.26G [00:30<00:08, 32.8MB/s][A | |
| model.safetensors: 78%|███████▊ | 990M/1.26G [00:30<00:05, 45.6MB/s][A | |
| model.safetensors: 79%|███████▉ | 998M/1.26G [00:30<00:07, 34.2MB/s][A | |
| model.safetensors: 80%|███████▉ | 1.01G/1.26G [00:31<00:07, 34.3MB/s][A | |
| model.safetensors: 81%|████████ | 1.02G/1.26G [00:31<00:05, 47.7MB/s][A | |
| model.safetensors: 82%|████████▏ | 1.03G/1.26G [00:31<00:07, 30.4MB/s][A | |
| model.safetensors: 82%|████████▏ | 1.04G/1.26G [00:32<00:08, 27.7MB/s][A | |
| model.safetensors: 83%|████████▎ | 1.05G/1.26G [00:32<00:05, 39.3MB/s][A | |
| model.safetensors: 84%|████████▍ | 1.06G/1.26G [00:32<00:05, 35.1MB/s][A | |
| model.safetensors: 85%|████████▍ | 1.07G/1.26G [00:33<00:06, 31.4MB/s][A | |
| model.safetensors: 86%|████████▌ | 1.09G/1.26G [00:33<00:03, 44.1MB/s][A | |
| model.safetensors: 87%|████████▋ | 1.09G/1.26G [00:33<00:04, 35.1MB/s][A | |
| model.safetensors: 87%|████████▋ | 1.10G/1.26G [00:34<00:05, 26.6MB/s][A | |
| model.safetensors: 89%|████████▊ | 1.12G/1.26G [00:34<00:03, 38.0MB/s][A | |
| model.safetensors: 89%|████████▉ | 1.13G/1.26G [00:34<00:03, 34.2MB/s][A | |
| model.safetensors: 90%|████████▉ | 1.14G/1.26G [00:34<00:03, 32.9MB/s][A | |
| model.safetensors: 91%|█████████ | 1.15G/1.26G [00:34<00:02, 46.0MB/s][A | |
| model.safetensors: 92%|█████████▏| 1.16G/1.26G [00:35<00:02, 38.9MB/s][A | |
| model.safetensors: 93%|█████████▎| 1.17G/1.26G [00:35<00:03, 31.5MB/s][A | |
| model.safetensors: 94%|█████████▎| 1.18G/1.26G [00:35<00:01, 44.2MB/s][A | |
| model.safetensors: 94%|█████████▍| 1.19G/1.26G [00:36<00:01, 38.0MB/s][A | |
| model.safetensors: 95%|█████████▌| 1.20G/1.26G [00:36<00:01, 33.6MB/s][A | |
| model.safetensors: 96%|█████████▌| 1.21G/1.26G [00:36<00:01, 45.2MB/s][A | |
| model.safetensors: 97%|█████████▋| 1.22G/1.26G [00:37<00:01, 29.0MB/s][A | |
| model.safetensors: 98%|█████████▊| 1.23G/1.26G [00:37<00:00, 38.2MB/s][A | |
| model.safetensors: 98%|█████████▊| 1.24G/1.26G [00:37<00:00, 32.4MB/s][A | |
| model.safetensors: 99%|█████████▉| 1.25G/1.26G [00:37<00:00, 31.1MB/s][A | |
| model.safetensors: 100%|█████████▉| 1.26G/1.26G [00:38<00:00, 42.7MB/s][A model.safetensors: 100%|██████████| 1.26G/1.26G [00:38<00:00, 32.9MB/s] | |
| Upload 3 LFS files: 67%|██████▋ | 2/3 [00:38<00:22, 22.52s/it][A[A Upload 3 LFS files: 100%|██████████| 3/3 [00:38<00:00, 12.89s/it] | |
| wandb: - 0.005 MB of 0.005 MB uploaded wandb: \ 0.037 MB of 0.037 MB uploaded wandb: | |
| wandb: Run history: | |
| wandb: eval/cer ▁ | |
| wandb: eval/loss ▁ | |
| wandb: eval/model_preparation_time ▁ | |
| wandb: eval/runtime ▁ | |
| wandb: eval/samples_per_second ▁ | |
| wandb: eval/steps_per_second ▁ | |
| wandb: eval/wer ▁ | |
| wandb: eval_cer ▁ | |
| wandb: eval_loss ▁ | |
| wandb: eval_model_preparation_time ▁ | |
| wandb: eval_runtime ▁ | |
| wandb: eval_samples ▁ | |
| wandb: eval_samples_per_second ▁ | |
| wandb: eval_steps_per_second ▁ | |
| wandb: eval_wer ▁ | |
| wandb: train/global_step ▁▁ | |
| wandb: | |
| wandb: Run summary: | |
| wandb: eval/cer 0.4569 | |
| wandb: eval/loss 2.21876 | |
| wandb: eval/model_preparation_time 0.0045 | |
| wandb: eval/runtime 31.2077 | |
| wandb: eval/samples_per_second 18.329 | |
| wandb: eval/steps_per_second 1.154 | |
| wandb: eval/wer 0.5264 | |
| wandb: eval_cer 0.4569 | |
| wandb: eval_loss 2.21876 | |
| wandb: eval_model_preparation_time 0.0045 | |
| wandb: eval_runtime 31.2077 | |
| wandb: eval_samples 572 | |
| wandb: eval_samples_per_second 18.329 | |
| wandb: eval_steps_per_second 1.154 | |
| wandb: eval_wer 0.5264 | |
| wandb: train/global_step 0 | |
| wandb: | |
| wandb: 🚀 View run eval_pd20000_w500_s300_shuff100_hinglish at: https://wandb.ai/priyanshipal/huggingface/runs/upry9j53 | |
| wandb: ⭐️ View project at: https://wandb.ai/priyanshipal/huggingface | |
| wandb: Synced 6 W&B file(s), 0 media file(s), 0 artifact file(s) and 0 other file(s) | |
| wandb: Find logs at: ./wandb/run-20240822_174142-upry9j53/logs | |
| wandb: WARNING The new W&B backend becomes opt-out in version 0.18.0; try it out with `wandb.require("core")`! See https://wandb.me/wandb-core for more information. | |