{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "9959861f-5a74-427b-9ff1-168c10d68ef3", "metadata": {}, "outputs": [], "source": [ "# !pip list" ] }, { "cell_type": "code", "execution_count": 2, "id": "5b3838f4-99be-40b6-bf22-7ae634c6539f", "metadata": {}, "outputs": [], "source": [ "# !python3 -m pip install --upgrade pip" ] }, { "cell_type": "code", "execution_count": 3, "id": "eec4a78b-cf34-4e7a-9250-16cc91a1c09d", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/audio/mhubert/venv/lib/python3.10/site-packages/transformers/utils/hub.py:127: FutureWarning: Using `TRANSFORMERS_CACHE` is deprecated and will be removed in v5 of Transformers. Use `HF_HOME` instead.\n", " warnings.warn(\n" ] } ], "source": [ "import numpy as np\n", "from transformers import (\n", " HubertForCTC,\n", " Wav2Vec2Processor,\n", " Wav2Vec2CTCTokenizer,\n", " Wav2Vec2FeatureExtractor,\n", " TrainingArguments,\n", " Trainer,\n", ")\n", "import torch\n", "from transformers import Wav2Vec2Processor\n", "from dataclasses import dataclass, field\n", "from typing import Any, Dict, List, Optional, Union\n", "from datasets import load_metric, concatenate_datasets, load_dataset, Audio" ] }, { "cell_type": "code", "execution_count": 4, "id": "20521c22-4d57-4e6d-b361-b600c97c5358", "metadata": {}, "outputs": [], "source": [ "@dataclass\n", "class DataCollatorCTCWithPadding:\n", " processor: Wav2Vec2Processor\n", " padding: Union[bool, str] = True\n", "\n", " def __call__(\n", " self, features: List[Dict[str, Union[List[int], torch.Tensor]]]\n", " ) -> Dict[str, torch.Tensor]:\n", " # split inputs and labels since they have to be of different lengths and need\n", " # different padding methods\n", " input_features = [{\"input_values\": feature[\"input_values\"]} for feature in features]\n", " label_features = [{\"input_ids\": feature[\"labels\"]} for feature in features]\n", "\n", " batch = self.processor.pad(\n", " input_features,\n", " padding=self.padding,\n", " return_tensors=\"pt\",\n", " )\n", " with self.processor.as_target_processor():\n", " labels_batch = self.processor.pad(\n", " label_features,\n", " padding=self.padding,\n", " return_tensors=\"pt\",\n", " )\n", "\n", " # replace padding with -100 to ignore loss correctly\n", " labels = labels_batch[\"input_ids\"].masked_fill(\n", " labels_batch.attention_mask.ne(1), -100\n", " )\n", "\n", " batch[\"labels\"] = labels\n", " return batch" ] }, { "cell_type": "code", "execution_count": 10, "id": "0a9b6c9e-fa72-4822-b3d9-7fcb585b7b36", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Token is valid (permission: write).\n", "Your token has been saved in your configured git credential helpers (store).\n", "Your token has been saved to /root/.cache/huggingface/token\n", "Login successful\n" ] } ], "source": [ "from huggingface_hub import notebook_login, login\n", "\n", "login(\"hf_token\", True)" ] }, { "cell_type": "code", "execution_count": 11, "id": "24042af6-9380-45cb-81c9-7f21ac6c631c", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/root/audio/mhubert/venv/lib/python3.10/site-packages/datasets/load.py:2554: FutureWarning: 'use_auth_token' was deprecated in favor of 'token' in version 2.14.0 and will be removed in 3.0.0.\n", "You can remove this warning by passing 'token=' instead.\n", " warnings.warn(\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4551f7a040594f61b0a125f2206e8cc9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Downloading builder script: 0%| | 0.00/8.19k [00:00=0.12.1\" -U" ] }, { "cell_type": "code", "execution_count": 13, "id": "bcc9140d-df99-4920-86fe-38733344514c", "metadata": {}, "outputs": [], "source": [ "# !pip list" ] }, { "cell_type": "code", "execution_count": 14, "id": "46011fa3-13c2-4639-b978-d37022380e97", "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
client_idaudiosentenceup_votesdown_votesagegenderaccentlocalesegmentvariant
096f58b0274d05b4b890c7e21fab8fab819a27c284ab68b9614a5dc3c435ed553464c27d8fa81720e0e5bca6e7fd13c8d0a3f7bcb258487312d889f4a7317b1f9{'path': '/root/.cache/huggingface/datasets/downloads/extracted/944fc7c543869badc9d8d8062f5e8e33351fb7826c2bd639f752d45bf1d9f1b9/ba_train_2/common_voice_ba_26163821.mp3', 'array': [9.094947017729282e-13, -7.275957614183426e-12, -1.6370904631912708e-11, -1.0459189070388675e-11, -9.094947017729282e-13, 8.185452315956354e-12, 9.549694368615746e-12, 1.0913936421275139e-11, 6.366462912410498e-12, 5.4569682106375694e-12, 7.275957614183426e-12, 1.4551915228366852e-11, 1.2732925824820995e-11, 8.185452315956354e-12, 9.094947017729282e-13, 0.0, 6.366462912410498e-12, 1.546140993013978e-11, 2.637534635141492e-11, 4.001776687800884e-11, 4.18367562815547e-11, 4.001776687800884e-11, 3.728928277269006e-11, 2.546585164964199e-11, -2.7284841053187847e-12, -3.456079866737127e-11, -6.184563972055912e-11, -7.09405867382884e-11, -7.639755494892597e-11, -8.549250196665525e-11, -8.458300726488233e-11, -6.366462912410498e-11, -1.9099388737231493e-11, 4.547473508864641e-13, -9.094947017729282e-12, -3.865352482534945e-11, -5.275069270282984e-11, -4.774847184307873e-11, -2.2737367544323206e-11, -2.000888343900442e-11, -6.275513442233205e-11, -1.1186784831807017e-10, -1.0868461686186492e-10, -8.185452315956354e-12, 1.532498572487384e-10, 2.864908310584724e-10, 3.510649548843503e-10, 4.1154635255225003e-10, 5.607034836430103e-10, 7.880771590862423e-10, 9.840732673183084e-10, 9.777068044058979e-10, 6.978098099352792e-10, 3.019522409886122e-10, -1.1823431123048067e-11, -2.637534635141492e-10, -5.966285243630409e-10, -1.0741132427938282e-09, -1.6589183360338211e-09, -2.2646418074145913e-09, -2.7303030947223306e-09, -2.9849616112187505e-09, -3.1641320674680173e-09, -3.4297045203857124e-09, -3.7630343285854906e-09, -3.997683961642906e-09, -3.952663973905146e-09, -3.613422450143844e-09, -3.1768649932928383e-09, -2.890374162234366e-09, -2.8194335754960775e-09, -2.8958311304450035e-09, -3.0831870390102267e-09, -3.335117071401328e-09, -3.6325218388810754e-09, -4.101821104995906e-09, -4.895355232292786e-09, -5.923084245296195e-09, -6.874188329675235e-09, -7.451262717950158e-09, -7.58791429689154e-09, -7.504240784328431e-09, -7.523340173065662e-09, -7.736161933280528e-09, -7.905327947810292e-09, -7.670678314752877e-09, -6.804839358665049e-09, -5.420588422566652e-09, -3.939931048080325e-09, -2.7321220841258764e-09, -1.6316334949806333e-09, -1.3369572116062045e-10, 1.9681465346366167e-09, 4.1009116102941334e-09, 5.2159521146677434e-09, 4.790308594238013e-09, 3.4287950256839395e-09, 2.241904439870268e-09, 1.724401954561472e-09, 1.4679244486615062e-09, ...], 'sampling_rate': 48000}Был минең ҡыҙым20ba
1e160b36a4c95f67d0d0f35c1f0e262e3275c4ce49a92410607bd64f89a96ccfce73003ec9b45f94c1eaf91c358b3728ddcbbe62c970c2a729b39eedc5b44d296{'path': '/root/.cache/huggingface/datasets/downloads/extracted/944fc7c543869badc9d8d8062f5e8e33351fb7826c2bd639f752d45bf1d9f1b9/ba_train_2/common_voice_ba_26031663.mp3', 'array': [1.9645539548134407e-24, -3.799860938915471e-24, -1.9128551665288765e-24, -4.1359030627651384e-25, -6.72084247699335e-25, -5.686866711302065e-25, -2.274746684520826e-24, -4.497794580757088e-24, -4.446095792472524e-24, -3.308722450212111e-24, 2.481541837659083e-24, -8.271806125530277e-25, -8.06501097239202e-24, -2.0679515313825692e-24, -2.5332406259436473e-24, -1.2149215246872594e-24, 1.5800442169469943e-24, 2.1196503196671334e-24, -2.6366382025127757e-24, -1.1632227364026952e-24, 2.7788098702953273e-25, -6.462348535570529e-25, 1.7771458472818954e-25, 4.937234281175884e-24, 8.271806125530277e-24, 4.226375942263126e-24, 1.173562494059608e-23, 6.2038545941477076e-24, 9.228233708794715e-24, 3.677076316739631e-24, 7.005185812558453e-24, 6.814546530759123e-24, 5.686866711302065e-25, -2.3264454728053903e-25, 5.169878828456423e-26, -5.790264287871194e-24, -7.858215819253763e-24, -4.963083675318166e-24, -8.271806125530277e-25, -4.1359030627651384e-25, -3.7223127564886245e-24, -7.444625512977249e-24, -1.6543612251060553e-24, -1.6543612251060553e-23, -1.6543612251060553e-24, 1.2407709188295415e-23, 2.895132143935597e-24, -1.809457589959748e-24, -8.788794008375919e-25, -1.0081263715490025e-24, -3.5155176033503676e-24, -5.118180040171859e-24, 1.6672859221771964e-24, 3.166550782429559e-24, -1.9128551665288765e-24, -4.7748677742196744e-24, 3.7481621506309067e-25, 1.9387045606711586e-26, 2.859589226989959e-24, 1.0766272660260501e-23, -2.1584244108805566e-24, -3.457356466530233e-24, -2.8046592644376095e-24, 7.94868869875175e-25, -1.2569267901684678e-24, -1.124448645189272e-24, 2.0097903945624344e-24, 4.9695460238537366e-24, -9.17653492051015e-25, -6.526972020926234e-25, 1.2149215246872594e-24, 2.8822074468644558e-24, -1.0662875083691372e-25, -1.8611563782443123e-24, -1.1813173123022926e-23, -1.5037481145489147e-23, -1.4359338446037715e-23, -9.65474871214237e-24, -1.6285118309637732e-24, -5.428372769879244e-25, -6.371875656072541e-24, -5.2603517079544104e-24, 3.903258515484599e-24, 8.019774532643026e-24, -3.360421238496675e-24, 2.0679515313825692e-25, 5.450990989753741e-24, 8.271806125530277e-25, -1.83530698410203e-24, -1.357093192469811e-24, 0.0, 3.748162150630907e-24, 4.872610795820179e-24, 1.7060600133906196e-24, -3.799860938915471e-24, -1.9516292577422997e-24, -1.0339757656912846e-25, 2.0679515313825692e-24, 1.8611563782443123e-24, 8.271806125530277e-24, ...], 'sampling_rate': 48000}- Шәңгәрәй эшһеҙ-шөғөлһөҙ ятыуҙан ағарып, нәҙегәйеп ҡалған бармаҡтары менән үңәсен ышҡыны.20sixtiesmale_masculineba
23024459e489b395b30fe5221c17d7c0c4d287cca2a69df62c78155d6167a423e173bfa262b7e1ce379b6c0a3cbd3b904b25364980cb92b5dbcfee5061f163d5c{'path': '/root/.cache/huggingface/datasets/downloads/extracted/c2c22acf185d9d78077a9485cc6687145cc56b7e1780652a4e8aa43aff5cd21f/ba_train_1/common_voice_ba_26226950.mp3', 'array': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, ...], 'sampling_rate': 48000}— Үлемде күргәнем бар...20thirtiesfemale_feminineba
38861729e0f44d9e23ab916bd84784292790a58ce9d7059f6b58f6429815c16e5516a68561a95872da770523482b21141b0a5a384340604ad0f63d8f371de4df7{'path': '/root/.cache/huggingface/datasets/downloads/extracted/aba413718ed4fe3f7cc687eda89d7f07fad095a757c628c75c723633e666fd56/ba_train_0/common_voice_ba_26258558.mp3', 'array': [4.263256414560601e-14, -1.2079226507921703e-13, 1.7763568394002505e-14, 2.842170943040401e-14, -5.542233338928781e-13, -1.3358203432289883e-12, -2.0179413695586845e-12, -2.3021584638627246e-12, -1.7195134205394424e-12, -1.0516032489249483e-12, -6.536993168992922e-13, -8.810729923425242e-13, -1.2931877790833823e-12, -1.9610979506978765e-12, -1.9610979506978765e-12, -9.947598300641403e-13, 8.810729923425242e-13, 2.0179413695586845e-12, 2.8137492336099967e-12, 3.240074875066057e-12, 2.7995383788947947e-12, 2.1884716261411086e-12, 2.0179413695586845e-12, 1.4779288903810084e-12, 1.5631940186722204e-13, -1.3358203432289883e-12, -2.4655832930875476e-12, -3.588240815588506e-12, -4.675371201301459e-12, -5.9259264162392356e-12, -7.51754214434186e-12, -6.494360604847316e-12, -2.0534685063466895e-12, 4.206412995699793e-12, 9.350742402602918e-12, 1.1141310096718371e-11, 8.469669410260394e-12, 4.803268893738277e-12, 6.707523425575346e-12, 1.6228796084760688e-11, 2.9245939003885724e-11, 3.9193537304527126e-11, 3.929301328753354e-11, 2.744826588241267e-11, 1.0658141036401503e-11, -9.805489753489383e-13, -2.9558577807620168e-12, 5.400124791776761e-13, 1.5774048733874224e-12, -4.526157226791838e-12, -1.3805845355818747e-11, -1.5219825399981346e-11, -4.831690603168681e-13, 2.6005864128819667e-11, 4.7265302782761864e-11, 4.6213699533836916e-11, 1.956834694283316e-11, -1.8317791727895383e-11, -4.249045559845399e-11, -3.171862772433087e-11, 1.3500311979441904e-11, 6.716049938404467e-11, 9.689671287560486e-11, 8.910205906431656e-11, 5.297806637827307e-11, 1.1084466677857563e-11, -1.0544454198679887e-11, 1.6768808563938364e-12, 3.809930149145657e-11, 7.831602033547824e-11, 1.1007728062395472e-10, 1.3307044355315156e-10, 1.4998136066424195e-10, 1.5910472939140163e-10, 1.5052137314341962e-10, 1.1198153515579179e-10, 4.4508396968012676e-11, -2.9956481739645824e-11, -7.315748007385992e-11, -5.0818016461562365e-11, 3.8824055081931874e-11, 1.5234036254696548e-10, 2.233377927041147e-10, 2.0662582755903713e-10, 1.0723510968091432e-10, -1.659827830735594e-11, -8.427036846114788e-11, -5.17843545821961e-11, 5.061906449554954e-11, 1.4171064321999438e-10, 1.4918555280019064e-10, 5.88329385209363e-11, -7.281641956069507e-11, -1.5580781109747477e-10, -1.4165379980113357e-10, -6.110667527536862e-11, 1.0828671292983927e-11, 1.5148771126405336e-11, -4.480682491703192e-11, -9.902123565552756e-11, ...], 'sampling_rate': 48000}— Һаңғыраулыҡ та барҙыр, юғиһә фиал ығы-зығыһын ишетер инем.20thirtiesfemale_feminineba
421328583ed4c54d1c02eb9acb67e2480a97a2bc0425a5aa56c8408c6ffc65bd2647b13af168e0f9484a36a69cf256984618b9dab49dac4d08d911617df135a30{'path': '/root/.cache/huggingface/datasets/downloads/extracted/aba413718ed4fe3f7cc687eda89d7f07fad095a757c628c75c723633e666fd56/ba_train_0/common_voice_ba_26091873.mp3', 'array': [1.0658141036401503e-14, 1.7763568394002505e-14, -1.7763568394002505e-14, -2.842170943040401e-14, -8.881784197001252e-14, -1.971756091734278e-13, -2.984279490192421e-13, -1.6342482922482304e-13, 3.197442310920451e-14, 1.2079226507921703e-13, -1.0658141036401503e-14, -2.2026824808563106e-13, -1.1013412404281553e-13, 2.899902540320909e-13, 5.364597654988756e-13, 3.232969447708456e-13, 3.197442310920451e-14, 1.0658141036401503e-14, 5.329070518200751e-15, -3.7125857943465235e-13, -7.922551503725117e-13, -6.536993168992922e-13, 1.0835776720341528e-13, 5.400124791776761e-13, 0.0, -6.217248937900877e-13, -8.171241461241152e-14, 1.1262102361797588e-12, 1.4450662888521038e-12, 6.181721801112872e-13, -7.105427357601002e-14, -5.3290705182007514e-14, -3.197442310920451e-13, -1.5862866575844237e-12, -2.5863755581667647e-12, -1.588063014423824e-12, 7.638334409421077e-13, 1.4086509736443986e-12, -5.613287612504791e-13, -2.1458390619955026e-12, -4.476419235288631e-13, 3.282707439211663e-12, 5.258016244624741e-12, 3.808509063674137e-12, 1.2541079286165768e-12, 2.1316282072803006e-13, 3.765876499528531e-13, 1.687538997430238e-14, -1.2079226507921703e-12, -2.632560835991171e-12, -3.6841640849161195e-12, -3.112177182629239e-12, -2.2737367544323206e-13, 2.5224267119483557e-12, 1.9610979506978765e-12, -3.019806626980426e-13, 8.952838470577262e-13, 5.9685589803848416e-12, 7.617018127348274e-12, 7.389644451905042e-13, -8.08242361927114e-12, -7.565503779005667e-12, 7.709388682997087e-13, 3.623767952376511e-12, -3.4852121189032914e-12, -7.315037464650231e-12, 1.815436689867056e-12, 1.1496581464598421e-11, 4.533262654149439e-12, -1.0409451078885468e-11, -6.206590796864475e-12, 2.148858868622483e-11, 4.149569576838985e-11, 2.8137492336099967e-11, -1.6413537196058314e-12, -1.1908696251339279e-11, 2.0268231537556858e-12, 1.1610268302320037e-11, 1.5916157281026244e-12, -9.00435281891987e-12, -1.6484591469634324e-12, 9.386269539390923e-12, -7.105427357601002e-15, -2.2637891561316792e-11, -2.7490898446558276e-11, -4.192202140984591e-12, 2.220446049250313e-11, 2.559730205575761e-11, 1.0189182830799837e-11, -2.0037305148434825e-12, -1.4495071809506044e-12, 2.618349981275969e-12, -1.6413537196058314e-12, -1.6218137943724287e-11, -3.108269197582558e-11, -3.000977244482783e-11, -8.903100479074055e-12, 1.1230127938688383e-11, 6.778577699151356e-12, -8.881784197001252e-12, ...], 'sampling_rate': 48000}Ҡатының яман булһа, һарғайып киберһең.20twentiesfemale_feminineba
5e160b36a4c95f67d0d0f35c1f0e262e3275c4ce49a92410607bd64f89a96ccfce73003ec9b45f94c1eaf91c358b3728ddcbbe62c970c2a729b39eedc5b44d296{'path': '/root/.cache/huggingface/datasets/downloads/extracted/944fc7c543869badc9d8d8062f5e8e33351fb7826c2bd639f752d45bf1d9f1b9/ba_train_2/common_voice_ba_25876729.mp3', 'array': [-1.990403348955723e-24, 2.68833699079734e-24, -4.1359030627651384e-25, 3.9291079096268815e-24, -3.101927297073854e-25, -4.342698215903395e-24, -2.042102137240287e-24, 1.34416849539867e-24, 1.7512964531396133e-24, 1.809457589959748e-24, 7.237830359838992e-25, -2.0679515313825692e-25, -1.2795450100429647e-24, -3.7223127564886245e-24, -2.3781442610899546e-24, 7.302453845194697e-25, 2.4492300949812304e-24, 4.426708746865812e-25, 1.6414365280349143e-24, -1.5057272087879332e-24, -1.1002148381808825e-24, -3.2440989648564054e-24, 1.34416849539867e-24, 2.235972593307403e-24, 2.1842738050228387e-24, 1.6802106192483375e-24, -2.0808762284537102e-24, -2.055026834311428e-24, -8.077935669463161e-25, -5.62224322594636e-25, -1.6026624368214911e-24, 2.6495628995839168e-24, 1.7642211502107543e-24, -2.9985297205047253e-24, -1.5509636485369269e-24, 2.274746684520826e-24, -2.0679515313825692e-24, -1.2407709188295415e-24, -2.481541837659083e-24, 2.68833699079734e-24, -2.714186384939622e-25, 2.0679515313825692e-25, -4.1359030627651384e-25, -4.963083675318166e-24, -6.462348535570529e-26, 8.271806125530277e-24, 3.308722450212111e-24, 1.2924697071141057e-25, -2.0679515313825692e-24, 3.101927297073854e-25, 4.3943970041879595e-25, -3.2053248736429822e-24, 2.5849394142282115e-25, 3.2570236619275465e-24, 2.3522948669476725e-24, 7.884065213396045e-25, -1.783608195817466e-24, -9.822769774067204e-25, 2.946830932220161e-24, 4.1746771539785615e-24, -2.5849394142282115e-25, -6.898557061721539e-25, -2.0679515313825692e-24, -3.101927297073854e-25, -1.822382287030889e-24, -1.932242212135588e-24, 1.4217166778255163e-25, 2.772347521759757e-24, 2.959755629291302e-24, 2.1196503196671334e-24, 3.1172753748458338e-24, 1.550963648536927e-25, -1.4604907690389395e-24, -1.6349741794993438e-24, -3.360421238496675e-24, -1.770683498746325e-24, 7.754818242684634e-26, 7.754818242684634e-24, 5.906586561511463e-24, -1.0469004627624257e-24, -1.9645539548134407e-24, -1.4411037234322279e-24, 2.5849394142282115e-26, 2.895132143935597e-24, 3.0986961228060685e-24, 8.013312184107456e-25, -7.754818242684634e-25, -8.659547037664508e-25, 1.8611563782443123e-24, 7.237830359838992e-25, -8.271806125530277e-25, 2.5849394142282115e-25, 5.945360652724886e-25, -2.4039936552322367e-24, -2.895132143935597e-24, 1.2407709188295415e-24, -1.2924697071141057e-24, -1.2407709188295415e-24, -3.308722450212111e-24, 0.0, ...], 'sampling_rate': 48000}- Әптеләхәт күҙҙәрен асты ла түшәмгә ҡарап ята бирҙе.20sixtiesmale_masculineba
64b7938fa6ff8aae5574194abc152b8905e72203d160a8920ab44c550eabfd9baae1932cd3170fd503efe5fd16051c568b90f201f290aba4245072e9ab8dd3dc5{'path': '/root/.cache/huggingface/datasets/downloads/extracted/e024c6558d9897612fd8f5a6b3c29f7c888176fe04022cbd549f5518312bfd53/ba_dev_0/common_voice_ba_26054132.mp3', 'array': [6.815758221109542e-28, -6.058451752097371e-28, -3.0292258760486853e-28, -1.2116903504194741e-27, 1.5146129380243427e-28, -6.310887241768094e-28, -1.2874209973206913e-27, -2.0952145642670074e-27, -7.573064690121713e-28, -7.068193710780266e-28, 6.058451752097371e-28, 1.5146129380243427e-28, -2.0194839173657902e-28, -1.1107161545511846e-27, -1.6408306828597046e-28, -5.679798517591285e-29, -2.4296915880807164e-28, 5.806016262426647e-28, 7.9201634884189585e-28, 6.68954047627418e-28, 2.9030081312133234e-28, 1.3142422680982057e-27, 2.865142807762715e-27, 1.5777218104420236e-27, -2.477023242393977e-28, 1.4956802762990384e-27, 2.5180440094654697e-27, 2.1125695041818696e-27, 7.573064690121713e-28, 2.524354896707238e-29, 3.281661365719409e-28, 7.573064690121713e-28, 6.310887241768094e-28, 6.058451752097371e-28, -1.0097419586828951e-27, 0.0, -1.0097419586828951e-27, -1.4136387421560532e-27, -1.4136387421560532e-27, -1.4136387421560532e-27, -1.8175355256292112e-27, -4.0389678347315804e-28, -2.4233807008389483e-27, -1.6155871338926322e-27, -1.2116903504194741e-27, 2.0194839173657902e-28, -1.2116903504194741e-27, -3.0292258760486853e-28, 3.0292258760486853e-28, -3.0292258760486853e-28, -2.1078363387505435e-27, -1.7039395552773855e-27, -6.437104986603456e-28, 3.34477023813709e-28, -1.1675141397270975e-27, -1.0196027199981578e-27, 2.524354896707238e-29, -2.524354896707238e-28, -7.667727998748235e-28, -4.165185579566942e-28, -7.9201634884189585e-28, -8.456588903969247e-28, -1.6218980211344003e-27, -8.993014319519535e-29, 1.1296488162764889e-27, -3.7865323450608567e-28, -1.606909663935201e-27, 3.7234234726431757e-28, -6.500213859021137e-28, -7.809722961688017e-28, -8.330371159133885e-28, 1.4515040656066617e-28, -3.9758589623138995e-28, -2.0194839173657902e-28, -1.9753077066734136e-27, -1.4136387421560532e-27, -2.865142807762715e-27, -2.328717392212427e-27, -1.2495556738700827e-27, 2.398137151871876e-28, -8.393480031551566e-28, -1.0349855076499675e-27, 5.427363027920561e-28, 6.184669496932733e-28, 1.2116903504194741e-27, -5.301145283085199e-28, 1.539856486991415e-27, 5.806016262426647e-28, 3.9127500898962186e-28, 8.077935669463161e-28, 1.792291976662139e-27, -1.135959703518257e-28, 1.2621774483536189e-27, 1.666074231826777e-27, 1.5651000359584874e-27, 6.058451752097371e-28, 1.7670484276950664e-27, 1.6155871338926322e-27, 1.6155871338926322e-27, 8.077935669463161e-28, ...], 'sampling_rate': 48000}Фәҡирлек ғәйеп түгел, ялҡаулыҡ ғәйеп.20twentiesmale_masculineba
78535f9f4ecb07a3756bb1d71743cc8bb29c29fb868c41b32d3d67929aae8f2d34a481cd8340cd267ecd9d156b1473a60ac1d46b8e1e9080b01a09ce6fea8e374{'path': '/root/.cache/huggingface/datasets/downloads/extracted/c2c22acf185d9d78077a9485cc6687145cc56b7e1780652a4e8aa43aff5cd21f/ba_train_1/common_voice_ba_26190836.mp3', 'array': [1.1368683772161603e-13, 4.149569576838985e-12, 6.707523425575346e-12, 5.059064278611913e-12, 3.694822225952521e-12, 4.547473508864641e-12, 3.751665644813329e-12, 2.7284841053187847e-12, 1.8189894035458565e-12, 7.673861546209082e-13, -8.526512829121202e-13, -9.094947017729282e-13, -1.9042545318370685e-12, -4.263256414560601e-12, -4.888534022029489e-12, -5.7980287238024175e-12, -8.58335624798201e-12, -8.810729923425242e-12, -5.4569682106375694e-12, -6.252776074688882e-13, 5.9117155615240335e-12, 1.2732925824820995e-11, 1.3528733688872308e-11, 8.753886504564434e-12, 1.1368683772161603e-13, -9.094947017729282e-12, -1.7280399333685637e-11, -1.878674993349705e-11, -1.0686562745831907e-11, 3.183231456205249e-12, 1.5802470443304628e-11, 2.3703705664956942e-11, 2.8819613362429664e-11, 3.12070369545836e-11, 2.9331204132176936e-11, 2.2680524125462398e-11, 1.5688783605583012e-11, 1.0913936421275139e-11, 5.7980287238024175e-12, -7.958078640513122e-12, -3.2514435588382185e-11, -5.843503458891064e-11, -6.917844075360335e-11, -7.102585186657961e-11, -8.495248948747758e-11, -1.1465317584224977e-10, -1.4443912732531317e-10, -1.581099695613375e-10, -1.4358647604240105e-10, -9.515588317299262e-11, -1.91562321560923e-11, 6.650680006714538e-11, 1.2937562132719904e-10, 1.2812506611226127e-10, 4.6497916628140956e-11, -7.821654435247183e-11, -1.8451373762218282e-10, -2.276010491186753e-10, -2.0406787371030077e-10, -1.475655153626576e-10, -9.947598300641403e-11, -7.844391802791506e-11, -8.662937034387141e-11, -1.1436895874794573e-10, -1.3147882782504894e-10, -1.1590373105718754e-10, -7.992184691829607e-11, -4.4565240386873484e-11, -2.5920599000528455e-11, -3.956301952712238e-11, -7.742073648842052e-11, -1.007265382213518e-10, -7.707967597525567e-11, 1.8758328224066645e-12, 1.0203393685515039e-10, 1.4983925211708993e-10, 8.799361239653081e-11, -4.922640073345974e-11, -1.7757884052116424e-10, -2.362412487855181e-10, -2.15550244320184e-10, -1.4506440493278205e-10, -8.29913915367797e-11, -8.174083632184193e-11, -1.8309265215066262e-10, -4.0688519220566377e-10, -6.920117812114768e-10, -8.89428974915063e-10, -8.675442586536519e-10, -6.17319528828375e-10, -2.710294211283326e-10, -3.956301952712238e-11, -5.275069270282984e-11, -2.53749021794647e-10, -5.029505700804293e-10, -7.360085874097422e-10, -9.46556610870175e-10, -1.1033307600882836e-09, -1.163925844593905e-09, -1.136641003540717e-09, ...], 'sampling_rate': 48000}Өс-дүрт көндән ярҙам килеп етергә тейеш.20ba
89d5f6665597f4ddc6a310d5323b128cc1336a83a3ae499c21039f1c634bdf6ab06e029e7d7ded7462137a61433af2cbc70d34e5ef86cb0cfc01d08a1588993a1{'path': '/root/.cache/huggingface/datasets/downloads/extracted/944fc7c543869badc9d8d8062f5e8e33351fb7826c2bd639f752d45bf1d9f1b9/ba_train_2/common_voice_ba_26096270.mp3', 'array': [-3.680953725860973e-23, 1.075334796318936e-23, 2.481541837659083e-23, 4.9217246446905147e-23, 1.3855275260263214e-23, -3.639594695233322e-23, -2.936491174563248e-23, 1.613002194478404e-23, -2.68833699079734e-23, -4.963083675318166e-24, -1.6543612251060553e-23, 3.970466940254533e-23, 1.7887780746459223e-23, -2.150669592637872e-23, -4.880365614062863e-23, -1.34416849539867e-23, 2.2333876538931747e-23, 2.9158116592494226e-23, -9.822769774067204e-25, -1.8301371052735737e-23, -1.5509636485369269e-24, -2.016252743098005e-23, -4.8596860987490376e-23, 3.5361971186641933e-23, 2.3290304122196185e-23, -6.2038545941477076e-24, 1.3648480107124957e-23, -1.7577588016751838e-24, 3.019209235818551e-23, 2.088631046696395e-23, 1.6543612251060553e-24, 2.0679515313825692e-23, -2.4608623223452573e-23, -4.963083675318166e-23, 1.819797347616661e-23, 4.1359030627651384e-24, -1.9852334701272664e-23, 1.6543612251060553e-23, -2.481541837659083e-23, -3.680953725860973e-23, -5.790264287871194e-23, 1.3234889800848443e-23, -2.6469779601696886e-23, -5.293955920339377e-23, 9.926167350636332e-24, 3.970466940254533e-23, -5.955700410381799e-23, -2.285086442177739e-23, -1.3648480107124957e-23, 0.0, 1.406207041340147e-23, -1.111523948118131e-23, 3.4638188150658034e-23, 2.212708138579349e-23, -1.9102702271146483e-23, -2.750375536738817e-23, -2.2023683809224362e-23, 1.760343741089412e-23, 3.474158572722716e-23, 6.162495563520056e-23, 3.618915179919496e-24, 1.8404768629304866e-23, 1.002956492720546e-23, -2.223047896236262e-23, -5.997059441009451e-24, -8.478601278668534e-24, -8.375203702099405e-24, 1.075334796318936e-23, -1.7784383169890095e-23, -2.750375536738817e-23, 2.6056189295420372e-23, 2.90547190159251e-23, -1.2407709188295415e-24, -4.487454823100175e-23, -9.952016744778614e-23, -7.982292911136717e-23, -1.406207041340147e-23, -8.271806125530277e-25, 4.880365614062863e-23, -3.908428394313056e-23, -3.288042934898285e-23, -1.5302841332231012e-23, 1.675040740419881e-23, 6.493367808541267e-23, 3.1846453583291565e-23, 7.651420666115506e-24, -9.512577044359818e-24, -4.1359030627651384e-24, 2.6469779601696886e-23, 2.9778502051908996e-23, -3.970466940254533e-23, -3.308722450212111e-24, 8.271806125530277e-24, 1.9025154088719637e-23, -6.617444900424222e-24, 1.3234889800848443e-23, -5.790264287871194e-24, 3.3087224502121107e-23, 1.3234889800848443e-23, 1.9852334701272664e-23, ...], 'sampling_rate': 48000}Туйығыҙ ҡотло булһын!20ba
92708e2fb869bc54793cf48dd35de1f5c15a613e160eb915e0d6508145f03d906e467db8b6933ce3e028ee9efc39e5bbf70011ad653be23ad1c483e913a4b3c23{'path': '/root/.cache/huggingface/datasets/downloads/extracted/aba413718ed4fe3f7cc687eda89d7f07fad095a757c628c75c723633e666fd56/ba_train_0/common_voice_ba_25938224.mp3', 'array': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, ...], 'sampling_rate': 48000}Йәш, һылыу ҡатынын көнләшеү тойғоһо ҡапыл тынын ҡурһа, шаҡшы хистәрҙе үҙенән тиҙерәк ҡыуырға тырышты.20twentiesfemale_feminineba
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "show_random_elements(common_voice_train.remove_columns([\"path\"]), num_examples=10)" ] }, { "cell_type": "code", "execution_count": 15, "id": "b112f847-595f-48df-a78c-f5c4b2749a91", "metadata": {}, "outputs": [], "source": [ "import re\n", "chars_to_remove_regex = '[\\,\\?\\.\\!\\-\\;\\:\\\"\\“\\%\\‘\\”\\�\\'\\«\\»\\–\\—aijno]'\n", "\n", "def remove_special_characters(batch):\n", " batch[\"sentence\"] = re.sub(chars_to_remove_regex, ' ', batch[\"sentence\"]).lower()\n", " return batch" ] }, { "cell_type": "code", "execution_count": 16, "id": "d0bc29a2-f32a-4861-80c5-f679ea90251a", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a663afae3b842f1a662fd69dd6f9897", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Map: 0%| | 0/133675 [00:00\n", " \n", " \n", " [246372/250680 151:06:36 < 2:38:32, 0.45 it/s, Epoch 58.97/60]\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
StepTraining LossValidation LossWer
100051.27460038.1449131.003135
200031.06950022.2755051.000000
300025.91850018.9954301.000000
400022.79950016.6842481.000000
500018.79900013.7933331.000000
600014.72460010.6010751.000000
700010.0615007.5084811.000000
80006.4954005.1959691.000000
90004.3991003.9368901.000000
100003.5461003.4370781.000000
110003.3468003.3105321.000000
120003.2927003.2628451.000000
130003.1628003.1256201.000000
140002.8922002.8130621.000000
150002.1710001.9566891.017752
160001.5491001.2633180.764204
170001.1192000.8790320.599000
180000.8418000.6251730.501725
190000.6805000.4897230.445919
200000.5703000.4059010.404730
210000.4754000.3563880.373732
220000.4441000.3220660.351868
230000.4655000.2948380.330790
240000.3695000.2820530.314791
250000.3551000.2635100.301062
260000.3253000.2505180.289096
270000.3298000.2368350.275367
280000.3094000.2296430.268569
290000.3055000.2295600.262008
300000.2831000.2127000.251458
310000.2682000.2143100.246469
320000.2635000.2090610.241964
330000.2669000.1993980.236324
340000.2627000.1990290.230953
350000.2889000.1949220.225909
360000.2421000.1902730.219269
370000.2283000.1905110.218943
380000.2355000.1885430.215224
390000.2457000.1832560.212482
400000.2361000.1793550.208011
410000.3127000.1805640.206707
420000.2132000.1805650.203303
430000.2100000.1759250.199011
440000.2118000.1798040.200438
450000.1992000.1710600.197382
460000.2101000.1689370.194865
470000.2097000.1710200.192854
480000.2029000.1670840.190147
490000.2470000.1674190.188517
500000.1932000.1685260.189124
510000.1813000.1652310.184023
520000.1932000.1636030.183091
530000.1801000.1629110.181810
540000.1758000.1634300.179889
550000.1865000.1629610.178518
560000.1829000.1618850.178012
570000.1831000.1621330.177698
580000.1786000.1589520.175305
590000.1770000.1597280.174619
600000.1722000.1563440.172327
610000.1621000.1628930.171507
620000.1672000.1566550.171384
630000.1593000.1555760.167743
640000.1733000.1542010.168384
650000.1621000.1553970.166901
660000.1660000.1524550.166373
670000.1638000.1544830.164721
680000.1587000.1558350.164553
690000.1653000.1504480.163069
700000.1553000.1511920.163744
710000.1575000.1501810.161834
720000.2144000.1494560.161384
730000.1700000.1497360.161159
740000.1603000.1541060.160115
750000.1450000.1504800.157800
760000.1419000.1495120.157317
770000.1424000.1515840.158193
780000.2559000.1500460.157980
790000.1591000.1488350.155924
800000.2104000.1494990.156744
810000.1392000.1482600.154519
820000.1476000.1489450.153227
830000.1348000.1439570.152587
840000.1527000.1474640.153014
850000.1323000.1453500.150508
860000.1431000.1442240.150610
870000.1456000.1431850.151115
880000.1465000.1443870.149902
890000.1353000.1499180.149913
900000.1468000.1443720.148452
910000.1374000.1435310.146632
920000.1310000.1462360.148362
930000.1411000.1438360.147340
940000.1362000.1448880.147610
950000.1319000.1411010.146610
960000.1304000.1408920.145194
970000.1376000.1439720.146430
980000.1426000.1423650.145846
990000.1259000.1438960.146947
1000000.1338000.1425450.143700
1010000.1179000.1428680.144554
1020000.2212000.1407610.143857
1030000.1248000.1421820.143913
1040000.1203000.1428670.143632
1050000.1222000.1433670.142161
1060000.1638000.1418670.141947
1070000.2444000.1385910.142408
1080000.1222000.1419870.140588
1090000.1582000.1400950.140408
1100000.1175000.1443890.141206
1110000.1263000.1414680.141520
1120000.1250000.1375730.139543
1130000.1209000.1402670.140060
1140000.1244000.1416990.140172
1150000.1184000.1409430.138992
1160000.1138000.1411390.137442
1170000.1157000.1386940.138060
1180000.1175000.1422190.139251
1190000.1151000.1436730.137981
1200000.1130000.1417720.137341
1210000.1209000.1418470.136813
1220000.1237000.1376460.135329
1230000.1119000.1408960.136779
1240000.1064000.1414500.136431
1250000.2035000.1383620.134813
1260000.1170000.1403000.135498
1270000.1155000.1429520.135790
1280000.1126000.1392240.134790
1290000.1305000.1378220.135037
1300000.1057000.1424700.133970
1310000.1074000.1419090.134779
1320000.1097000.1399690.133981
1330000.1128000.1400870.133745
1340000.1124000.1383600.133644
1350000.1420000.1408580.134577
1360000.1088000.1402480.132105
1370000.1090000.1415200.133026
1380000.0999000.1407550.132464
1390000.1042000.1390960.133442
1400000.1411000.1402020.132420
1410000.1086000.1383240.131498
1420000.1026000.1400810.132184
1430000.1035000.1431270.131217
1440000.1049000.1408580.130554
1450000.1110000.1405860.131172
1460000.1161000.1417420.130476
1470000.1001000.1391870.130566
1480000.1019000.1380040.130172
1490000.1046000.1388730.130588
1500000.1057000.1385540.129498
1510000.0911000.1402810.129431
1520000.1028000.1407110.129240
1530000.1118000.1409820.129678
1540000.1144000.1367380.128633
1550000.1347000.1386430.128970
1560000.1073000.1385470.128060
1570000.1032000.1404630.128644
1580000.0986000.1376490.127937
1590000.1225000.1394530.128218
1600000.0986000.1398710.128757
1610000.1008000.1380310.128083
1620000.1073000.1369440.127611
1630000.0999000.1394940.127072
1640000.1044000.1375280.126723
1650000.1038000.1377210.126678
1660000.1019000.1413100.127060
1670000.0986000.1402030.126678
1680000.1269000.1395290.126004
1690000.1122000.1404270.126678
1700000.1014000.1391960.126521
1710000.1032000.1404400.126386
1720000.1002000.1380060.125735
1730000.1063000.1390070.125555
1740000.0974000.1396190.125690
1750000.1320000.1360170.125162
1760000.0956000.1364590.124959
1770000.1059000.1379030.125690
1780000.0932000.1396040.125779
1790000.0984000.1367790.125049
1800000.0922000.1402590.125510
1810000.0894000.1384100.124656
1820000.0969000.1393850.126161
1830000.1031000.1341980.125162
1840000.1028000.1382340.125150
1850000.1079000.1374570.125712
1860000.0970000.1388920.124802
1870000.0914000.1380460.125364
1880000.0984000.1366430.124173
1890000.0886000.1368800.124633
1900000.0926000.1369220.123386
1910000.0966000.1383730.123521
1920000.0931000.1350870.123600
1930000.1066000.1362680.123510
1940000.0950000.1349880.123083
1950000.0961000.1361010.123914
1960000.1052000.1355970.122746
1970000.0976000.1373790.123971
1980000.0962000.1361100.123162
1990000.1067000.1358900.122892
2000000.0943000.1330590.122330
2010000.0905000.1364870.123420
2020000.1319000.1370810.123802
2030000.1026000.1376880.123746
2040000.0980000.1390550.123027
2050000.0982000.1374930.122645
2060000.0957000.1380000.123195
2070000.0945000.1372770.122645
2080000.0952000.1364670.122319
2090000.1038000.1366500.122634
2100000.0921000.1356710.121589
2110000.0892000.1355710.122207
2120000.0892000.1373770.122252
2130000.2185000.1370720.122634
2140000.0938000.1385140.122252
2150000.0925000.1375380.122555
2160000.0939000.1368740.122083
2170000.0956000.1370480.122004
2180000.0916000.1377050.121667
2190000.0954000.1376850.122184
2200000.0926000.1379370.121701
2210000.0887000.1373580.121319
2220000.0928000.1373700.121532
2230000.0809000.1375750.121308
2240000.0957000.1375680.120544
2250000.0829000.1376230.121094
2260000.0885000.1374650.121016
2270000.0962000.1376850.120577
2280000.0920000.1362490.120431
2290000.0829000.1382420.120858
2300000.0891000.1379480.121274
2310000.0868000.1383000.121521
2320000.0825000.1373980.120712
2330000.0850000.1385320.121274
2340000.1107000.1371650.120634
2350000.0848000.1381830.120780
2360000.0842000.1372100.120386
2370000.1249000.1363960.120813
2380000.0873000.1374560.120364
2390000.0854000.1377420.120319
2400000.0892000.1373010.120106
2410000.0841000.1374910.120375
2420000.0930000.1374590.120431
2430000.0875000.1367500.119881
2440000.0909000.1373860.120184
2450000.0918000.1374900.120510
2460000.0992000.1368670.120184

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "/root/audio/mhubert/venv/lib/python3.10/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.\n", " warnings.warn(\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n", "IOPub message rate exceeded.\n", "The notebook server will temporarily stop sending output\n", "to the client in order to avoid crashing it.\n", "To change this limit, set the config variable\n", "`--NotebookApp.iopub_msg_rate_limit`.\n", "\n", "Current values:\n", "NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n", "NotebookApp.rate_limit_window=3.0 (secs)\n", "\n" ] } ], "source": [ "trainer.train()" ] }, { "cell_type": "code", "execution_count": 46, "id": "7774bede-d68e-49d2-b4b4-6bd527b4fd5d", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0944d4ceb7849ae8ad34482e86499f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "events.out.tfevents.1720638005.sciencebrick.3579461.1: 0%| | 0.00/625k [00:00