├── README.md ├── LICENSE ├── text_to_speech_chatbot.py └── Text_to_Speech_Chatbot.ipynb /README.md: -------------------------------------------------------------------------------- 1 | # Text-To-Speech-Chatbot -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Kousar Raza 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /text_to_speech_chatbot.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Text-to-Speech Chatbot 3 | 4 | Automatically generated by Colab. 5 | 6 | Original file is located at 7 | https://colab.research.google.com/drive/1DYFSd6Kg4dfBNag0no3Nwqpd99rMxt-c 8 | """ 9 | 10 | !pip install transformers 11 | 12 | !pip install soundfile 13 | 14 | !pip install gradio 15 | 16 | from transformers import AutoTokenizer, AutoModelForTextToWaveform 17 | 18 | tokenizer = AutoTokenizer.from_pretrained("facebook/mms-tts-eng") 19 | model = AutoModelForTextToWaveform.from_pretrained("facebook/mms-tts-eng") 20 | 21 | import torch 22 | import soundfile as sf 23 | 24 | def text_to_speech(text): 25 | inputs = tokenizer(text, return_tensors="pt") 26 | with torch.no_grad(): 27 | waveform = model(**inputs).waveform[0] 28 | sf.write("output.wav", waveform.numpy(), 16000) 29 | return "output.wav" 30 | 31 | import gradio as gr 32 | 33 | def generate_audio(text): 34 | audio_file = text_to_speech(text) 35 | return audio_file 36 | 37 | interface = gr.Interface( 38 | fn=generate_audio, 39 | inputs="text", 40 | outputs="audio", 41 | title="Text-to-Speech Chatbot", 42 | description="Enter text and hear it spoken aloud by the model." 43 | ) 44 | 45 | interface.launch() -------------------------------------------------------------------------------- /Text_to_Speech_Chatbot.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "nbformat": 4, 3 | "nbformat_minor": 0, 4 | "metadata": { 5 | "colab": { 6 | "provenance": [] 7 | }, 8 | "kernelspec": { 9 | "name": "python3", 10 | "display_name": "Python 3" 11 | }, 12 | "language_info": { 13 | "name": "python" 14 | }, 15 | "widgets": { 16 | "application/vnd.jupyter.widget-state+json": { 17 | "60669577a2974003989157839d8f4aff": { 18 | "model_module": "@jupyter-widgets/controls", 19 | "model_name": "HBoxModel", 20 | "model_module_version": "1.5.0", 21 | "state": { 22 | "_dom_classes": [], 23 | "_model_module": "@jupyter-widgets/controls", 24 | "_model_module_version": "1.5.0", 25 | "_model_name": "HBoxModel", 26 | "_view_count": null, 27 | "_view_module": "@jupyter-widgets/controls", 28 | "_view_module_version": "1.5.0", 29 | "_view_name": "HBoxView", 30 | "box_style": "", 31 | "children": [ 32 | "IPY_MODEL_9aedd6fe18124a878e5773885dc3a2c8", 33 | "IPY_MODEL_d10f80764f7340c086f02646a89f46a8", 34 | "IPY_MODEL_80cff100553a411692eb2ae615362d7f" 35 | ], 36 | "layout": "IPY_MODEL_23435d838858435baa604ec003b1a9b8" 37 | } 38 | }, 39 | "9aedd6fe18124a878e5773885dc3a2c8": { 40 | "model_module": "@jupyter-widgets/controls", 41 | "model_name": "HTMLModel", 42 | "model_module_version": "1.5.0", 43 | "state": { 44 | "_dom_classes": [], 45 | "_model_module": "@jupyter-widgets/controls", 46 | "_model_module_version": "1.5.0", 47 | "_model_name": "HTMLModel", 48 | "_view_count": null, 49 | "_view_module": "@jupyter-widgets/controls", 50 | "_view_module_version": "1.5.0", 51 | "_view_name": "HTMLView", 52 | "description": "", 53 | "description_tooltip": null, 54 | "layout": "IPY_MODEL_1ccadf58c15e495886e2f3a9d7590b9c", 55 | "placeholder": "​", 56 | "style": "IPY_MODEL_9ccc1c044b2140aca519af49a781ba55", 57 | "value": "tokenizer_config.json: 100%" 58 | } 59 | }, 60 | "d10f80764f7340c086f02646a89f46a8": { 61 | "model_module": "@jupyter-widgets/controls", 62 | "model_name": "FloatProgressModel", 63 | "model_module_version": "1.5.0", 64 | "state": { 65 | "_dom_classes": [], 66 | "_model_module": "@jupyter-widgets/controls", 67 | "_model_module_version": "1.5.0", 68 | "_model_name": "FloatProgressModel", 69 | "_view_count": null, 70 | "_view_module": "@jupyter-widgets/controls", 71 | "_view_module_version": "1.5.0", 72 | "_view_name": "ProgressView", 73 | "bar_style": "success", 74 | "description": "", 75 | "description_tooltip": null, 76 | "layout": "IPY_MODEL_7cb9e5351c674567b5717dc059ebce0b", 77 | "max": 287, 78 | "min": 0, 79 | "orientation": "horizontal", 80 | "style": "IPY_MODEL_ea7cf07375c641ce84e41066a8061d6c", 81 | "value": 287 82 | } 83 | }, 84 | "80cff100553a411692eb2ae615362d7f": { 85 | "model_module": "@jupyter-widgets/controls", 86 | "model_name": "HTMLModel", 87 | "model_module_version": "1.5.0", 88 | "state": { 89 | "_dom_classes": [], 90 | "_model_module": "@jupyter-widgets/controls", 91 | "_model_module_version": "1.5.0", 92 | "_model_name": "HTMLModel", 93 | "_view_count": null, 94 | "_view_module": "@jupyter-widgets/controls", 95 | "_view_module_version": "1.5.0", 96 | "_view_name": "HTMLView", 97 | "description": "", 98 | "description_tooltip": null, 99 | "layout": "IPY_MODEL_7b93d9a42e434d99ab1cb85eff06c7b0", 100 | "placeholder": "​", 101 | "style": "IPY_MODEL_d7be5276100241ea8a3049bcf0cd49b0", 102 | "value": " 287/287 [00:00<00:00, 10.4kB/s]" 103 | } 104 | }, 105 | "23435d838858435baa604ec003b1a9b8": { 106 | "model_module": "@jupyter-widgets/base", 107 | "model_name": "LayoutModel", 108 | "model_module_version": "1.2.0", 109 | "state": { 110 | "_model_module": "@jupyter-widgets/base", 111 | "_model_module_version": "1.2.0", 112 | "_model_name": "LayoutModel", 113 | "_view_count": null, 114 | "_view_module": "@jupyter-widgets/base", 115 | "_view_module_version": "1.2.0", 116 | "_view_name": "LayoutView", 117 | "align_content": null, 118 | "align_items": null, 119 | "align_self": null, 120 | "border": null, 121 | "bottom": null, 122 | "display": null, 123 | "flex": null, 124 | "flex_flow": null, 125 | "grid_area": null, 126 | "grid_auto_columns": null, 127 | "grid_auto_flow": null, 128 | "grid_auto_rows": null, 129 | "grid_column": null, 130 | "grid_gap": null, 131 | "grid_row": null, 132 | "grid_template_areas": null, 133 | "grid_template_columns": null, 134 | "grid_template_rows": null, 135 | "height": null, 136 | "justify_content": null, 137 | "justify_items": null, 138 | "left": null, 139 | "margin": null, 140 | "max_height": null, 141 | "max_width": null, 142 | "min_height": null, 143 | "min_width": null, 144 | "object_fit": null, 145 | "object_position": null, 146 | "order": null, 147 | "overflow": null, 148 | "overflow_x": null, 149 | "overflow_y": null, 150 | "padding": null, 151 | "right": null, 152 | "top": null, 153 | "visibility": null, 154 | "width": null 155 | } 156 | }, 157 | "1ccadf58c15e495886e2f3a9d7590b9c": { 158 | "model_module": "@jupyter-widgets/base", 159 | "model_name": "LayoutModel", 160 | "model_module_version": "1.2.0", 161 | "state": { 162 | "_model_module": "@jupyter-widgets/base", 163 | "_model_module_version": "1.2.0", 164 | "_model_name": "LayoutModel", 165 | "_view_count": null, 166 | "_view_module": "@jupyter-widgets/base", 167 | "_view_module_version": "1.2.0", 168 | "_view_name": "LayoutView", 169 | "align_content": null, 170 | "align_items": null, 171 | "align_self": null, 172 | "border": null, 173 | "bottom": null, 174 | "display": null, 175 | "flex": null, 176 | "flex_flow": null, 177 | "grid_area": null, 178 | "grid_auto_columns": null, 179 | "grid_auto_flow": null, 180 | "grid_auto_rows": null, 181 | "grid_column": null, 182 | "grid_gap": null, 183 | "grid_row": null, 184 | "grid_template_areas": null, 185 | "grid_template_columns": null, 186 | "grid_template_rows": null, 187 | "height": null, 188 | "justify_content": null, 189 | "justify_items": null, 190 | "left": null, 191 | "margin": null, 192 | "max_height": null, 193 | "max_width": null, 194 | "min_height": null, 195 | "min_width": null, 196 | "object_fit": null, 197 | "object_position": null, 198 | "order": null, 199 | "overflow": null, 200 | "overflow_x": null, 201 | "overflow_y": null, 202 | "padding": null, 203 | "right": null, 204 | "top": null, 205 | "visibility": null, 206 | "width": null 207 | } 208 | }, 209 | "9ccc1c044b2140aca519af49a781ba55": { 210 | "model_module": "@jupyter-widgets/controls", 211 | "model_name": "DescriptionStyleModel", 212 | "model_module_version": "1.5.0", 213 | "state": { 214 | "_model_module": "@jupyter-widgets/controls", 215 | "_model_module_version": "1.5.0", 216 | "_model_name": "DescriptionStyleModel", 217 | "_view_count": null, 218 | "_view_module": "@jupyter-widgets/base", 219 | "_view_module_version": "1.2.0", 220 | "_view_name": "StyleView", 221 | "description_width": "" 222 | } 223 | }, 224 | "7cb9e5351c674567b5717dc059ebce0b": { 225 | "model_module": "@jupyter-widgets/base", 226 | "model_name": "LayoutModel", 227 | "model_module_version": "1.2.0", 228 | "state": { 229 | "_model_module": "@jupyter-widgets/base", 230 | "_model_module_version": "1.2.0", 231 | "_model_name": "LayoutModel", 232 | "_view_count": null, 233 | "_view_module": "@jupyter-widgets/base", 234 | "_view_module_version": "1.2.0", 235 | "_view_name": "LayoutView", 236 | "align_content": null, 237 | "align_items": null, 238 | "align_self": null, 239 | "border": null, 240 | "bottom": null, 241 | "display": null, 242 | "flex": null, 243 | "flex_flow": null, 244 | "grid_area": null, 245 | "grid_auto_columns": null, 246 | "grid_auto_flow": null, 247 | "grid_auto_rows": null, 248 | "grid_column": null, 249 | "grid_gap": null, 250 | "grid_row": null, 251 | "grid_template_areas": null, 252 | "grid_template_columns": null, 253 | "grid_template_rows": null, 254 | "height": null, 255 | "justify_content": null, 256 | "justify_items": null, 257 | "left": null, 258 | "margin": null, 259 | "max_height": null, 260 | "max_width": null, 261 | "min_height": null, 262 | "min_width": null, 263 | "object_fit": null, 264 | "object_position": null, 265 | "order": null, 266 | "overflow": null, 267 | "overflow_x": null, 268 | "overflow_y": null, 269 | "padding": null, 270 | "right": null, 271 | "top": null, 272 | "visibility": null, 273 | "width": null 274 | } 275 | }, 276 | "ea7cf07375c641ce84e41066a8061d6c": { 277 | "model_module": "@jupyter-widgets/controls", 278 | "model_name": "ProgressStyleModel", 279 | "model_module_version": "1.5.0", 280 | "state": { 281 | "_model_module": "@jupyter-widgets/controls", 282 | "_model_module_version": "1.5.0", 283 | "_model_name": "ProgressStyleModel", 284 | "_view_count": null, 285 | "_view_module": "@jupyter-widgets/base", 286 | "_view_module_version": "1.2.0", 287 | "_view_name": "StyleView", 288 | "bar_color": null, 289 | "description_width": "" 290 | } 291 | }, 292 | "7b93d9a42e434d99ab1cb85eff06c7b0": { 293 | "model_module": "@jupyter-widgets/base", 294 | "model_name": "LayoutModel", 295 | "model_module_version": "1.2.0", 296 | "state": { 297 | "_model_module": "@jupyter-widgets/base", 298 | "_model_module_version": "1.2.0", 299 | "_model_name": "LayoutModel", 300 | "_view_count": null, 301 | "_view_module": "@jupyter-widgets/base", 302 | "_view_module_version": "1.2.0", 303 | "_view_name": "LayoutView", 304 | "align_content": null, 305 | "align_items": null, 306 | "align_self": null, 307 | "border": null, 308 | "bottom": null, 309 | "display": null, 310 | "flex": null, 311 | "flex_flow": null, 312 | "grid_area": null, 313 | "grid_auto_columns": null, 314 | "grid_auto_flow": null, 315 | "grid_auto_rows": null, 316 | "grid_column": null, 317 | "grid_gap": null, 318 | "grid_row": null, 319 | "grid_template_areas": null, 320 | "grid_template_columns": null, 321 | "grid_template_rows": null, 322 | "height": null, 323 | "justify_content": null, 324 | "justify_items": null, 325 | "left": null, 326 | "margin": null, 327 | "max_height": null, 328 | "max_width": null, 329 | "min_height": null, 330 | "min_width": null, 331 | "object_fit": null, 332 | "object_position": null, 333 | "order": null, 334 | "overflow": null, 335 | "overflow_x": null, 336 | "overflow_y": null, 337 | "padding": null, 338 | "right": null, 339 | "top": null, 340 | "visibility": null, 341 | "width": null 342 | } 343 | }, 344 | "d7be5276100241ea8a3049bcf0cd49b0": { 345 | "model_module": "@jupyter-widgets/controls", 346 | "model_name": "DescriptionStyleModel", 347 | "model_module_version": "1.5.0", 348 | "state": { 349 | "_model_module": "@jupyter-widgets/controls", 350 | "_model_module_version": "1.5.0", 351 | "_model_name": "DescriptionStyleModel", 352 | "_view_count": null, 353 | "_view_module": "@jupyter-widgets/base", 354 | "_view_module_version": "1.2.0", 355 | "_view_name": "StyleView", 356 | "description_width": "" 357 | } 358 | }, 359 | "31b3c50ab4cf4043a1f88013dafc1864": { 360 | "model_module": "@jupyter-widgets/controls", 361 | "model_name": "HBoxModel", 362 | "model_module_version": "1.5.0", 363 | "state": { 364 | "_dom_classes": [], 365 | "_model_module": "@jupyter-widgets/controls", 366 | "_model_module_version": "1.5.0", 367 | "_model_name": "HBoxModel", 368 | "_view_count": null, 369 | "_view_module": "@jupyter-widgets/controls", 370 | "_view_module_version": "1.5.0", 371 | "_view_name": "HBoxView", 372 | "box_style": "", 373 | "children": [ 374 | "IPY_MODEL_c2f23fe930334ad290cb038911db15e8", 375 | "IPY_MODEL_cd8c210616e44dfd83683f0f04e520fd", 376 | "IPY_MODEL_130b14c873e840d4834ee302860c2f53" 377 | ], 378 | "layout": "IPY_MODEL_f3f9ffbfef264a85964214849cd79b0b" 379 | } 380 | }, 381 | "c2f23fe930334ad290cb038911db15e8": { 382 | "model_module": "@jupyter-widgets/controls", 383 | "model_name": "HTMLModel", 384 | "model_module_version": "1.5.0", 385 | "state": { 386 | "_dom_classes": [], 387 | "_model_module": "@jupyter-widgets/controls", 388 | "_model_module_version": "1.5.0", 389 | "_model_name": "HTMLModel", 390 | "_view_count": null, 391 | "_view_module": "@jupyter-widgets/controls", 392 | "_view_module_version": "1.5.0", 393 | "_view_name": "HTMLView", 394 | "description": "", 395 | "description_tooltip": null, 396 | "layout": "IPY_MODEL_e22e1a369528433dbe3226020236bb2d", 397 | "placeholder": "​", 398 | "style": "IPY_MODEL_b0bf693b0651478c8b97866c7a99156f", 399 | "value": "vocab.json: 100%" 400 | } 401 | }, 402 | "cd8c210616e44dfd83683f0f04e520fd": { 403 | "model_module": "@jupyter-widgets/controls", 404 | "model_name": "FloatProgressModel", 405 | "model_module_version": "1.5.0", 406 | "state": { 407 | "_dom_classes": [], 408 | "_model_module": "@jupyter-widgets/controls", 409 | "_model_module_version": "1.5.0", 410 | "_model_name": "FloatProgressModel", 411 | "_view_count": null, 412 | "_view_module": "@jupyter-widgets/controls", 413 | "_view_module_version": "1.5.0", 414 | "_view_name": "ProgressView", 415 | "bar_style": "success", 416 | "description": "", 417 | "description_tooltip": null, 418 | "layout": "IPY_MODEL_447dc5d9a32b45f089f9c974938640f3", 419 | "max": 413, 420 | "min": 0, 421 | "orientation": "horizontal", 422 | "style": "IPY_MODEL_78abafd85ffb4754abbe3f30d3ddff91", 423 | "value": 413 424 | } 425 | }, 426 | "130b14c873e840d4834ee302860c2f53": { 427 | "model_module": "@jupyter-widgets/controls", 428 | "model_name": "HTMLModel", 429 | "model_module_version": "1.5.0", 430 | "state": { 431 | "_dom_classes": [], 432 | "_model_module": "@jupyter-widgets/controls", 433 | "_model_module_version": "1.5.0", 434 | "_model_name": "HTMLModel", 435 | "_view_count": null, 436 | "_view_module": "@jupyter-widgets/controls", 437 | "_view_module_version": "1.5.0", 438 | "_view_name": "HTMLView", 439 | "description": "", 440 | "description_tooltip": null, 441 | "layout": "IPY_MODEL_568ec8ac6a69477aa0abf456aaf2300f", 442 | "placeholder": "​", 443 | "style": "IPY_MODEL_715fafad1f8841b09826e2440ab9d618", 444 | "value": " 413/413 [00:00<00:00, 24.7kB/s]" 445 | } 446 | }, 447 | "f3f9ffbfef264a85964214849cd79b0b": { 448 | "model_module": "@jupyter-widgets/base", 449 | "model_name": "LayoutModel", 450 | "model_module_version": "1.2.0", 451 | "state": { 452 | "_model_module": "@jupyter-widgets/base", 453 | "_model_module_version": "1.2.0", 454 | "_model_name": "LayoutModel", 455 | "_view_count": null, 456 | "_view_module": "@jupyter-widgets/base", 457 | "_view_module_version": "1.2.0", 458 | "_view_name": "LayoutView", 459 | "align_content": null, 460 | "align_items": null, 461 | "align_self": null, 462 | "border": null, 463 | "bottom": null, 464 | "display": null, 465 | "flex": null, 466 | "flex_flow": null, 467 | "grid_area": null, 468 | "grid_auto_columns": null, 469 | "grid_auto_flow": null, 470 | "grid_auto_rows": null, 471 | "grid_column": null, 472 | "grid_gap": null, 473 | "grid_row": null, 474 | "grid_template_areas": null, 475 | "grid_template_columns": null, 476 | "grid_template_rows": null, 477 | "height": null, 478 | "justify_content": null, 479 | "justify_items": null, 480 | "left": null, 481 | "margin": null, 482 | "max_height": null, 483 | "max_width": null, 484 | "min_height": null, 485 | "min_width": null, 486 | "object_fit": null, 487 | "object_position": null, 488 | "order": null, 489 | "overflow": null, 490 | "overflow_x": null, 491 | "overflow_y": null, 492 | "padding": null, 493 | "right": null, 494 | "top": null, 495 | "visibility": null, 496 | "width": null 497 | } 498 | }, 499 | "e22e1a369528433dbe3226020236bb2d": { 500 | "model_module": "@jupyter-widgets/base", 501 | "model_name": "LayoutModel", 502 | "model_module_version": "1.2.0", 503 | "state": { 504 | "_model_module": "@jupyter-widgets/base", 505 | "_model_module_version": "1.2.0", 506 | "_model_name": "LayoutModel", 507 | "_view_count": null, 508 | "_view_module": "@jupyter-widgets/base", 509 | "_view_module_version": "1.2.0", 510 | "_view_name": "LayoutView", 511 | "align_content": null, 512 | "align_items": null, 513 | "align_self": null, 514 | "border": null, 515 | "bottom": null, 516 | "display": null, 517 | "flex": null, 518 | "flex_flow": null, 519 | "grid_area": null, 520 | "grid_auto_columns": null, 521 | "grid_auto_flow": null, 522 | "grid_auto_rows": null, 523 | "grid_column": null, 524 | "grid_gap": null, 525 | "grid_row": null, 526 | "grid_template_areas": null, 527 | "grid_template_columns": null, 528 | "grid_template_rows": null, 529 | "height": null, 530 | "justify_content": null, 531 | "justify_items": null, 532 | "left": null, 533 | "margin": null, 534 | "max_height": null, 535 | "max_width": null, 536 | "min_height": null, 537 | "min_width": null, 538 | "object_fit": null, 539 | "object_position": null, 540 | "order": null, 541 | "overflow": null, 542 | "overflow_x": null, 543 | "overflow_y": null, 544 | "padding": null, 545 | "right": null, 546 | "top": null, 547 | "visibility": null, 548 | "width": null 549 | } 550 | }, 551 | "b0bf693b0651478c8b97866c7a99156f": { 552 | "model_module": "@jupyter-widgets/controls", 553 | "model_name": "DescriptionStyleModel", 554 | "model_module_version": "1.5.0", 555 | "state": { 556 | "_model_module": "@jupyter-widgets/controls", 557 | "_model_module_version": "1.5.0", 558 | "_model_name": "DescriptionStyleModel", 559 | "_view_count": null, 560 | "_view_module": "@jupyter-widgets/base", 561 | "_view_module_version": "1.2.0", 562 | "_view_name": "StyleView", 563 | "description_width": "" 564 | } 565 | }, 566 | "447dc5d9a32b45f089f9c974938640f3": { 567 | "model_module": "@jupyter-widgets/base", 568 | "model_name": "LayoutModel", 569 | "model_module_version": "1.2.0", 570 | "state": { 571 | "_model_module": "@jupyter-widgets/base", 572 | "_model_module_version": "1.2.0", 573 | "_model_name": "LayoutModel", 574 | "_view_count": null, 575 | "_view_module": "@jupyter-widgets/base", 576 | "_view_module_version": "1.2.0", 577 | "_view_name": "LayoutView", 578 | "align_content": null, 579 | "align_items": null, 580 | "align_self": null, 581 | "border": null, 582 | "bottom": null, 583 | "display": null, 584 | "flex": null, 585 | "flex_flow": null, 586 | "grid_area": null, 587 | "grid_auto_columns": null, 588 | "grid_auto_flow": null, 589 | "grid_auto_rows": null, 590 | "grid_column": null, 591 | "grid_gap": null, 592 | "grid_row": null, 593 | "grid_template_areas": null, 594 | "grid_template_columns": null, 595 | "grid_template_rows": null, 596 | "height": null, 597 | "justify_content": null, 598 | "justify_items": null, 599 | "left": null, 600 | "margin": null, 601 | "max_height": null, 602 | "max_width": null, 603 | "min_height": null, 604 | "min_width": null, 605 | "object_fit": null, 606 | "object_position": null, 607 | "order": null, 608 | "overflow": null, 609 | "overflow_x": null, 610 | "overflow_y": null, 611 | "padding": null, 612 | "right": null, 613 | "top": null, 614 | "visibility": null, 615 | "width": null 616 | } 617 | }, 618 | "78abafd85ffb4754abbe3f30d3ddff91": { 619 | "model_module": "@jupyter-widgets/controls", 620 | "model_name": "ProgressStyleModel", 621 | "model_module_version": "1.5.0", 622 | "state": { 623 | "_model_module": "@jupyter-widgets/controls", 624 | "_model_module_version": "1.5.0", 625 | "_model_name": "ProgressStyleModel", 626 | "_view_count": null, 627 | "_view_module": "@jupyter-widgets/base", 628 | "_view_module_version": "1.2.0", 629 | "_view_name": "StyleView", 630 | "bar_color": null, 631 | "description_width": "" 632 | } 633 | }, 634 | "568ec8ac6a69477aa0abf456aaf2300f": { 635 | "model_module": "@jupyter-widgets/base", 636 | "model_name": "LayoutModel", 637 | "model_module_version": "1.2.0", 638 | "state": { 639 | "_model_module": "@jupyter-widgets/base", 640 | "_model_module_version": "1.2.0", 641 | "_model_name": "LayoutModel", 642 | "_view_count": null, 643 | "_view_module": "@jupyter-widgets/base", 644 | "_view_module_version": "1.2.0", 645 | "_view_name": "LayoutView", 646 | "align_content": null, 647 | "align_items": null, 648 | "align_self": null, 649 | "border": null, 650 | "bottom": null, 651 | "display": null, 652 | "flex": null, 653 | "flex_flow": null, 654 | "grid_area": null, 655 | "grid_auto_columns": null, 656 | "grid_auto_flow": null, 657 | "grid_auto_rows": null, 658 | "grid_column": null, 659 | "grid_gap": null, 660 | "grid_row": null, 661 | "grid_template_areas": null, 662 | "grid_template_columns": null, 663 | "grid_template_rows": null, 664 | "height": null, 665 | "justify_content": null, 666 | "justify_items": null, 667 | "left": null, 668 | "margin": null, 669 | "max_height": null, 670 | "max_width": null, 671 | "min_height": null, 672 | "min_width": null, 673 | "object_fit": null, 674 | "object_position": null, 675 | "order": null, 676 | "overflow": null, 677 | "overflow_x": null, 678 | "overflow_y": null, 679 | "padding": null, 680 | "right": null, 681 | "top": null, 682 | "visibility": null, 683 | "width": null 684 | } 685 | }, 686 | "715fafad1f8841b09826e2440ab9d618": { 687 | "model_module": "@jupyter-widgets/controls", 688 | "model_name": "DescriptionStyleModel", 689 | "model_module_version": "1.5.0", 690 | "state": { 691 | "_model_module": "@jupyter-widgets/controls", 692 | "_model_module_version": "1.5.0", 693 | "_model_name": "DescriptionStyleModel", 694 | "_view_count": null, 695 | "_view_module": "@jupyter-widgets/base", 696 | "_view_module_version": "1.2.0", 697 | "_view_name": "StyleView", 698 | "description_width": "" 699 | } 700 | }, 701 | "80a89622b808449ab44c146a84c40df7": { 702 | "model_module": "@jupyter-widgets/controls", 703 | "model_name": "HBoxModel", 704 | "model_module_version": "1.5.0", 705 | "state": { 706 | "_dom_classes": [], 707 | "_model_module": "@jupyter-widgets/controls", 708 | "_model_module_version": "1.5.0", 709 | "_model_name": "HBoxModel", 710 | "_view_count": null, 711 | "_view_module": "@jupyter-widgets/controls", 712 | "_view_module_version": "1.5.0", 713 | "_view_name": "HBoxView", 714 | "box_style": "", 715 | "children": [ 716 | "IPY_MODEL_f19d4505839d4f55aaf9348da392e267", 717 | "IPY_MODEL_7b97c68f54b2409da19ba4600d7ea533", 718 | "IPY_MODEL_23f3e1ad167e46d28f7d7b0fc660a37e" 719 | ], 720 | "layout": "IPY_MODEL_8529ffa62cc3410eb81c2d1f5f780fbd" 721 | } 722 | }, 723 | "f19d4505839d4f55aaf9348da392e267": { 724 | "model_module": "@jupyter-widgets/controls", 725 | "model_name": "HTMLModel", 726 | "model_module_version": "1.5.0", 727 | "state": { 728 | "_dom_classes": [], 729 | "_model_module": "@jupyter-widgets/controls", 730 | "_model_module_version": "1.5.0", 731 | "_model_name": "HTMLModel", 732 | "_view_count": null, 733 | "_view_module": "@jupyter-widgets/controls", 734 | "_view_module_version": "1.5.0", 735 | "_view_name": "HTMLView", 736 | "description": "", 737 | "description_tooltip": null, 738 | "layout": "IPY_MODEL_69dd77fc5d4f43cc96676b2eb4512c19", 739 | "placeholder": "​", 740 | "style": "IPY_MODEL_a5b3fb2c753e45dbb8ebbf718457f0a6", 741 | "value": "special_tokens_map.json: 100%" 742 | } 743 | }, 744 | "7b97c68f54b2409da19ba4600d7ea533": { 745 | "model_module": "@jupyter-widgets/controls", 746 | "model_name": "FloatProgressModel", 747 | "model_module_version": "1.5.0", 748 | "state": { 749 | "_dom_classes": [], 750 | "_model_module": "@jupyter-widgets/controls", 751 | "_model_module_version": "1.5.0", 752 | "_model_name": "FloatProgressModel", 753 | "_view_count": null, 754 | "_view_module": "@jupyter-widgets/controls", 755 | "_view_module_version": "1.5.0", 756 | "_view_name": "ProgressView", 757 | "bar_style": "success", 758 | "description": "", 759 | "description_tooltip": null, 760 | "layout": "IPY_MODEL_8df06f0b97bd453bb05f9bc6c9a705ea", 761 | "max": 47, 762 | "min": 0, 763 | "orientation": "horizontal", 764 | "style": "IPY_MODEL_3b50c4f54b4b4107b4099bd5854241fd", 765 | "value": 47 766 | } 767 | }, 768 | "23f3e1ad167e46d28f7d7b0fc660a37e": { 769 | "model_module": "@jupyter-widgets/controls", 770 | "model_name": "HTMLModel", 771 | "model_module_version": "1.5.0", 772 | "state": { 773 | "_dom_classes": [], 774 | "_model_module": "@jupyter-widgets/controls", 775 | "_model_module_version": "1.5.0", 776 | "_model_name": "HTMLModel", 777 | "_view_count": null, 778 | "_view_module": "@jupyter-widgets/controls", 779 | "_view_module_version": "1.5.0", 780 | "_view_name": "HTMLView", 781 | "description": "", 782 | "description_tooltip": null, 783 | "layout": "IPY_MODEL_11a158af60414b208288a0a6d72ff691", 784 | "placeholder": "​", 785 | "style": "IPY_MODEL_b7c8684f2a2b48f093f393269abcde6f", 786 | "value": " 47.0/47.0 [00:00<00:00, 2.08kB/s]" 787 | } 788 | }, 789 | "8529ffa62cc3410eb81c2d1f5f780fbd": { 790 | "model_module": "@jupyter-widgets/base", 791 | "model_name": "LayoutModel", 792 | "model_module_version": "1.2.0", 793 | "state": { 794 | "_model_module": "@jupyter-widgets/base", 795 | "_model_module_version": "1.2.0", 796 | "_model_name": "LayoutModel", 797 | "_view_count": null, 798 | "_view_module": "@jupyter-widgets/base", 799 | "_view_module_version": "1.2.0", 800 | "_view_name": "LayoutView", 801 | "align_content": null, 802 | "align_items": null, 803 | "align_self": null, 804 | "border": null, 805 | "bottom": null, 806 | "display": null, 807 | "flex": null, 808 | "flex_flow": null, 809 | "grid_area": null, 810 | "grid_auto_columns": null, 811 | "grid_auto_flow": null, 812 | "grid_auto_rows": null, 813 | "grid_column": null, 814 | "grid_gap": null, 815 | "grid_row": null, 816 | "grid_template_areas": null, 817 | "grid_template_columns": null, 818 | "grid_template_rows": null, 819 | "height": null, 820 | "justify_content": null, 821 | "justify_items": null, 822 | "left": null, 823 | "margin": null, 824 | "max_height": null, 825 | "max_width": null, 826 | "min_height": null, 827 | "min_width": null, 828 | "object_fit": null, 829 | "object_position": null, 830 | "order": null, 831 | "overflow": null, 832 | "overflow_x": null, 833 | "overflow_y": null, 834 | "padding": null, 835 | "right": null, 836 | "top": null, 837 | "visibility": null, 838 | "width": null 839 | } 840 | }, 841 | "69dd77fc5d4f43cc96676b2eb4512c19": { 842 | "model_module": "@jupyter-widgets/base", 843 | "model_name": "LayoutModel", 844 | "model_module_version": "1.2.0", 845 | "state": { 846 | "_model_module": "@jupyter-widgets/base", 847 | "_model_module_version": "1.2.0", 848 | "_model_name": "LayoutModel", 849 | "_view_count": null, 850 | "_view_module": "@jupyter-widgets/base", 851 | "_view_module_version": "1.2.0", 852 | "_view_name": "LayoutView", 853 | "align_content": null, 854 | "align_items": null, 855 | "align_self": null, 856 | "border": null, 857 | "bottom": null, 858 | "display": null, 859 | "flex": null, 860 | "flex_flow": null, 861 | "grid_area": null, 862 | "grid_auto_columns": null, 863 | "grid_auto_flow": null, 864 | "grid_auto_rows": null, 865 | "grid_column": null, 866 | "grid_gap": null, 867 | "grid_row": null, 868 | "grid_template_areas": null, 869 | "grid_template_columns": null, 870 | "grid_template_rows": null, 871 | "height": null, 872 | "justify_content": null, 873 | "justify_items": null, 874 | "left": null, 875 | "margin": null, 876 | "max_height": null, 877 | "max_width": null, 878 | "min_height": null, 879 | "min_width": null, 880 | "object_fit": null, 881 | "object_position": null, 882 | "order": null, 883 | "overflow": null, 884 | "overflow_x": null, 885 | "overflow_y": null, 886 | "padding": null, 887 | "right": null, 888 | "top": null, 889 | "visibility": null, 890 | "width": null 891 | } 892 | }, 893 | "a5b3fb2c753e45dbb8ebbf718457f0a6": { 894 | "model_module": "@jupyter-widgets/controls", 895 | "model_name": "DescriptionStyleModel", 896 | "model_module_version": "1.5.0", 897 | "state": { 898 | "_model_module": "@jupyter-widgets/controls", 899 | "_model_module_version": "1.5.0", 900 | "_model_name": "DescriptionStyleModel", 901 | "_view_count": null, 902 | "_view_module": "@jupyter-widgets/base", 903 | "_view_module_version": "1.2.0", 904 | "_view_name": "StyleView", 905 | "description_width": "" 906 | } 907 | }, 908 | "8df06f0b97bd453bb05f9bc6c9a705ea": { 909 | "model_module": "@jupyter-widgets/base", 910 | "model_name": "LayoutModel", 911 | "model_module_version": "1.2.0", 912 | "state": { 913 | "_model_module": "@jupyter-widgets/base", 914 | "_model_module_version": "1.2.0", 915 | "_model_name": "LayoutModel", 916 | "_view_count": null, 917 | "_view_module": "@jupyter-widgets/base", 918 | "_view_module_version": "1.2.0", 919 | "_view_name": "LayoutView", 920 | "align_content": null, 921 | "align_items": null, 922 | "align_self": null, 923 | "border": null, 924 | "bottom": null, 925 | "display": null, 926 | "flex": null, 927 | "flex_flow": null, 928 | "grid_area": null, 929 | "grid_auto_columns": null, 930 | "grid_auto_flow": null, 931 | "grid_auto_rows": null, 932 | "grid_column": null, 933 | "grid_gap": null, 934 | "grid_row": null, 935 | "grid_template_areas": null, 936 | "grid_template_columns": null, 937 | "grid_template_rows": null, 938 | "height": null, 939 | "justify_content": null, 940 | "justify_items": null, 941 | "left": null, 942 | "margin": null, 943 | "max_height": null, 944 | "max_width": null, 945 | "min_height": null, 946 | "min_width": null, 947 | "object_fit": null, 948 | "object_position": null, 949 | "order": null, 950 | "overflow": null, 951 | "overflow_x": null, 952 | "overflow_y": null, 953 | "padding": null, 954 | "right": null, 955 | "top": null, 956 | "visibility": null, 957 | "width": null 958 | } 959 | }, 960 | "3b50c4f54b4b4107b4099bd5854241fd": { 961 | "model_module": "@jupyter-widgets/controls", 962 | "model_name": "ProgressStyleModel", 963 | "model_module_version": "1.5.0", 964 | "state": { 965 | "_model_module": "@jupyter-widgets/controls", 966 | "_model_module_version": "1.5.0", 967 | "_model_name": "ProgressStyleModel", 968 | "_view_count": null, 969 | "_view_module": "@jupyter-widgets/base", 970 | "_view_module_version": "1.2.0", 971 | "_view_name": "StyleView", 972 | "bar_color": null, 973 | "description_width": "" 974 | } 975 | }, 976 | "11a158af60414b208288a0a6d72ff691": { 977 | "model_module": "@jupyter-widgets/base", 978 | "model_name": "LayoutModel", 979 | "model_module_version": "1.2.0", 980 | "state": { 981 | "_model_module": "@jupyter-widgets/base", 982 | "_model_module_version": "1.2.0", 983 | "_model_name": "LayoutModel", 984 | "_view_count": null, 985 | "_view_module": "@jupyter-widgets/base", 986 | "_view_module_version": "1.2.0", 987 | "_view_name": "LayoutView", 988 | "align_content": null, 989 | "align_items": null, 990 | "align_self": null, 991 | "border": null, 992 | "bottom": null, 993 | "display": null, 994 | "flex": null, 995 | "flex_flow": null, 996 | "grid_area": null, 997 | "grid_auto_columns": null, 998 | "grid_auto_flow": null, 999 | "grid_auto_rows": null, 1000 | "grid_column": null, 1001 | "grid_gap": null, 1002 | "grid_row": null, 1003 | "grid_template_areas": null, 1004 | "grid_template_columns": null, 1005 | "grid_template_rows": null, 1006 | "height": null, 1007 | "justify_content": null, 1008 | "justify_items": null, 1009 | "left": null, 1010 | "margin": null, 1011 | "max_height": null, 1012 | "max_width": null, 1013 | "min_height": null, 1014 | "min_width": null, 1015 | "object_fit": null, 1016 | "object_position": null, 1017 | "order": null, 1018 | "overflow": null, 1019 | "overflow_x": null, 1020 | "overflow_y": null, 1021 | "padding": null, 1022 | "right": null, 1023 | "top": null, 1024 | "visibility": null, 1025 | "width": null 1026 | } 1027 | }, 1028 | "b7c8684f2a2b48f093f393269abcde6f": { 1029 | "model_module": "@jupyter-widgets/controls", 1030 | "model_name": "DescriptionStyleModel", 1031 | "model_module_version": "1.5.0", 1032 | "state": { 1033 | "_model_module": "@jupyter-widgets/controls", 1034 | "_model_module_version": "1.5.0", 1035 | "_model_name": "DescriptionStyleModel", 1036 | "_view_count": null, 1037 | "_view_module": "@jupyter-widgets/base", 1038 | "_view_module_version": "1.2.0", 1039 | "_view_name": "StyleView", 1040 | "description_width": "" 1041 | } 1042 | }, 1043 | "a506b4e5d2f745dba753dfab49679ac0": { 1044 | "model_module": "@jupyter-widgets/controls", 1045 | "model_name": "HBoxModel", 1046 | "model_module_version": "1.5.0", 1047 | "state": { 1048 | "_dom_classes": [], 1049 | "_model_module": "@jupyter-widgets/controls", 1050 | "_model_module_version": "1.5.0", 1051 | "_model_name": "HBoxModel", 1052 | "_view_count": null, 1053 | "_view_module": "@jupyter-widgets/controls", 1054 | "_view_module_version": "1.5.0", 1055 | "_view_name": "HBoxView", 1056 | "box_style": "", 1057 | "children": [ 1058 | "IPY_MODEL_73fd7d6d8ec24c549ff6a50514353054", 1059 | "IPY_MODEL_8da88e7a7c234d61b4f41c626ea6ab0a", 1060 | "IPY_MODEL_e6e9b8f647de41e1a3697d9f00b3accc" 1061 | ], 1062 | "layout": "IPY_MODEL_3b23d0e48a7845ed8692ca17dea5cf8b" 1063 | } 1064 | }, 1065 | "73fd7d6d8ec24c549ff6a50514353054": { 1066 | "model_module": "@jupyter-widgets/controls", 1067 | "model_name": "HTMLModel", 1068 | "model_module_version": "1.5.0", 1069 | "state": { 1070 | "_dom_classes": [], 1071 | "_model_module": "@jupyter-widgets/controls", 1072 | "_model_module_version": "1.5.0", 1073 | "_model_name": "HTMLModel", 1074 | "_view_count": null, 1075 | "_view_module": "@jupyter-widgets/controls", 1076 | "_view_module_version": "1.5.0", 1077 | "_view_name": "HTMLView", 1078 | "description": "", 1079 | "description_tooltip": null, 1080 | "layout": "IPY_MODEL_0027d311575b43e988855752e81909ae", 1081 | "placeholder": "​", 1082 | "style": "IPY_MODEL_e13d0133a9f04c1ca67c156149c0d45c", 1083 | "value": "config.json: 100%" 1084 | } 1085 | }, 1086 | "8da88e7a7c234d61b4f41c626ea6ab0a": { 1087 | "model_module": "@jupyter-widgets/controls", 1088 | "model_name": "FloatProgressModel", 1089 | "model_module_version": "1.5.0", 1090 | "state": { 1091 | "_dom_classes": [], 1092 | "_model_module": "@jupyter-widgets/controls", 1093 | "_model_module_version": "1.5.0", 1094 | "_model_name": "FloatProgressModel", 1095 | "_view_count": null, 1096 | "_view_module": "@jupyter-widgets/controls", 1097 | "_view_module_version": "1.5.0", 1098 | "_view_name": "ProgressView", 1099 | "bar_style": "success", 1100 | "description": "", 1101 | "description_tooltip": null, 1102 | "layout": "IPY_MODEL_dffab7d166fe48c685359affb5183b7e", 1103 | "max": 1641, 1104 | "min": 0, 1105 | "orientation": "horizontal", 1106 | "style": "IPY_MODEL_5d9274756b224799af7a42bff1bebe5b", 1107 | "value": 1641 1108 | } 1109 | }, 1110 | "e6e9b8f647de41e1a3697d9f00b3accc": { 1111 | "model_module": "@jupyter-widgets/controls", 1112 | "model_name": "HTMLModel", 1113 | "model_module_version": "1.5.0", 1114 | "state": { 1115 | "_dom_classes": [], 1116 | "_model_module": "@jupyter-widgets/controls", 1117 | "_model_module_version": "1.5.0", 1118 | "_model_name": "HTMLModel", 1119 | "_view_count": null, 1120 | "_view_module": "@jupyter-widgets/controls", 1121 | "_view_module_version": "1.5.0", 1122 | "_view_name": "HTMLView", 1123 | "description": "", 1124 | "description_tooltip": null, 1125 | "layout": "IPY_MODEL_7eff473f20034cbb9e1b1562832e32ee", 1126 | "placeholder": "​", 1127 | "style": "IPY_MODEL_072a58938e394dd7b2c322e93cce68b0", 1128 | "value": " 1.64k/1.64k [00:00<00:00, 81.3kB/s]" 1129 | } 1130 | }, 1131 | "3b23d0e48a7845ed8692ca17dea5cf8b": { 1132 | "model_module": "@jupyter-widgets/base", 1133 | "model_name": "LayoutModel", 1134 | "model_module_version": "1.2.0", 1135 | "state": { 1136 | "_model_module": "@jupyter-widgets/base", 1137 | "_model_module_version": "1.2.0", 1138 | "_model_name": "LayoutModel", 1139 | "_view_count": null, 1140 | "_view_module": "@jupyter-widgets/base", 1141 | "_view_module_version": "1.2.0", 1142 | "_view_name": "LayoutView", 1143 | "align_content": null, 1144 | "align_items": null, 1145 | "align_self": null, 1146 | "border": null, 1147 | "bottom": null, 1148 | "display": null, 1149 | "flex": null, 1150 | "flex_flow": null, 1151 | "grid_area": null, 1152 | "grid_auto_columns": null, 1153 | "grid_auto_flow": null, 1154 | "grid_auto_rows": null, 1155 | "grid_column": null, 1156 | "grid_gap": null, 1157 | "grid_row": null, 1158 | "grid_template_areas": null, 1159 | "grid_template_columns": null, 1160 | "grid_template_rows": null, 1161 | "height": null, 1162 | "justify_content": null, 1163 | "justify_items": null, 1164 | "left": null, 1165 | "margin": null, 1166 | "max_height": null, 1167 | "max_width": null, 1168 | "min_height": null, 1169 | "min_width": null, 1170 | "object_fit": null, 1171 | "object_position": null, 1172 | "order": null, 1173 | "overflow": null, 1174 | "overflow_x": null, 1175 | "overflow_y": null, 1176 | "padding": null, 1177 | "right": null, 1178 | "top": null, 1179 | "visibility": null, 1180 | "width": null 1181 | } 1182 | }, 1183 | "0027d311575b43e988855752e81909ae": { 1184 | "model_module": "@jupyter-widgets/base", 1185 | "model_name": "LayoutModel", 1186 | "model_module_version": "1.2.0", 1187 | "state": { 1188 | "_model_module": "@jupyter-widgets/base", 1189 | "_model_module_version": "1.2.0", 1190 | "_model_name": "LayoutModel", 1191 | "_view_count": null, 1192 | "_view_module": "@jupyter-widgets/base", 1193 | "_view_module_version": "1.2.0", 1194 | "_view_name": "LayoutView", 1195 | "align_content": null, 1196 | "align_items": null, 1197 | "align_self": null, 1198 | "border": null, 1199 | "bottom": null, 1200 | "display": null, 1201 | "flex": null, 1202 | "flex_flow": null, 1203 | "grid_area": null, 1204 | "grid_auto_columns": null, 1205 | "grid_auto_flow": null, 1206 | "grid_auto_rows": null, 1207 | "grid_column": null, 1208 | "grid_gap": null, 1209 | "grid_row": null, 1210 | "grid_template_areas": null, 1211 | "grid_template_columns": null, 1212 | "grid_template_rows": null, 1213 | "height": null, 1214 | "justify_content": null, 1215 | "justify_items": null, 1216 | "left": null, 1217 | "margin": null, 1218 | "max_height": null, 1219 | "max_width": null, 1220 | "min_height": null, 1221 | "min_width": null, 1222 | "object_fit": null, 1223 | "object_position": null, 1224 | "order": null, 1225 | "overflow": null, 1226 | "overflow_x": null, 1227 | "overflow_y": null, 1228 | "padding": null, 1229 | "right": null, 1230 | "top": null, 1231 | "visibility": null, 1232 | "width": null 1233 | } 1234 | }, 1235 | "e13d0133a9f04c1ca67c156149c0d45c": { 1236 | "model_module": "@jupyter-widgets/controls", 1237 | "model_name": "DescriptionStyleModel", 1238 | "model_module_version": "1.5.0", 1239 | "state": { 1240 | "_model_module": "@jupyter-widgets/controls", 1241 | "_model_module_version": "1.5.0", 1242 | "_model_name": "DescriptionStyleModel", 1243 | "_view_count": null, 1244 | "_view_module": "@jupyter-widgets/base", 1245 | "_view_module_version": "1.2.0", 1246 | "_view_name": "StyleView", 1247 | "description_width": "" 1248 | } 1249 | }, 1250 | "dffab7d166fe48c685359affb5183b7e": { 1251 | "model_module": "@jupyter-widgets/base", 1252 | "model_name": "LayoutModel", 1253 | "model_module_version": "1.2.0", 1254 | "state": { 1255 | "_model_module": "@jupyter-widgets/base", 1256 | "_model_module_version": "1.2.0", 1257 | "_model_name": "LayoutModel", 1258 | "_view_count": null, 1259 | "_view_module": "@jupyter-widgets/base", 1260 | "_view_module_version": "1.2.0", 1261 | "_view_name": "LayoutView", 1262 | "align_content": null, 1263 | "align_items": null, 1264 | "align_self": null, 1265 | "border": null, 1266 | "bottom": null, 1267 | "display": null, 1268 | "flex": null, 1269 | "flex_flow": null, 1270 | "grid_area": null, 1271 | "grid_auto_columns": null, 1272 | "grid_auto_flow": null, 1273 | "grid_auto_rows": null, 1274 | "grid_column": null, 1275 | "grid_gap": null, 1276 | "grid_row": null, 1277 | "grid_template_areas": null, 1278 | "grid_template_columns": null, 1279 | "grid_template_rows": null, 1280 | "height": null, 1281 | "justify_content": null, 1282 | "justify_items": null, 1283 | "left": null, 1284 | "margin": null, 1285 | "max_height": null, 1286 | "max_width": null, 1287 | "min_height": null, 1288 | "min_width": null, 1289 | "object_fit": null, 1290 | "object_position": null, 1291 | "order": null, 1292 | "overflow": null, 1293 | "overflow_x": null, 1294 | "overflow_y": null, 1295 | "padding": null, 1296 | "right": null, 1297 | "top": null, 1298 | "visibility": null, 1299 | "width": null 1300 | } 1301 | }, 1302 | "5d9274756b224799af7a42bff1bebe5b": { 1303 | "model_module": "@jupyter-widgets/controls", 1304 | "model_name": "ProgressStyleModel", 1305 | "model_module_version": "1.5.0", 1306 | "state": { 1307 | "_model_module": "@jupyter-widgets/controls", 1308 | "_model_module_version": "1.5.0", 1309 | "_model_name": "ProgressStyleModel", 1310 | "_view_count": null, 1311 | "_view_module": "@jupyter-widgets/base", 1312 | "_view_module_version": "1.2.0", 1313 | "_view_name": "StyleView", 1314 | "bar_color": null, 1315 | "description_width": "" 1316 | } 1317 | }, 1318 | "7eff473f20034cbb9e1b1562832e32ee": { 1319 | "model_module": "@jupyter-widgets/base", 1320 | "model_name": "LayoutModel", 1321 | "model_module_version": "1.2.0", 1322 | "state": { 1323 | "_model_module": "@jupyter-widgets/base", 1324 | "_model_module_version": "1.2.0", 1325 | "_model_name": "LayoutModel", 1326 | "_view_count": null, 1327 | "_view_module": "@jupyter-widgets/base", 1328 | "_view_module_version": "1.2.0", 1329 | "_view_name": "LayoutView", 1330 | "align_content": null, 1331 | "align_items": null, 1332 | "align_self": null, 1333 | "border": null, 1334 | "bottom": null, 1335 | "display": null, 1336 | "flex": null, 1337 | "flex_flow": null, 1338 | "grid_area": null, 1339 | "grid_auto_columns": null, 1340 | "grid_auto_flow": null, 1341 | "grid_auto_rows": null, 1342 | "grid_column": null, 1343 | "grid_gap": null, 1344 | "grid_row": null, 1345 | "grid_template_areas": null, 1346 | "grid_template_columns": null, 1347 | "grid_template_rows": null, 1348 | "height": null, 1349 | "justify_content": null, 1350 | "justify_items": null, 1351 | "left": null, 1352 | "margin": null, 1353 | "max_height": null, 1354 | "max_width": null, 1355 | "min_height": null, 1356 | "min_width": null, 1357 | "object_fit": null, 1358 | "object_position": null, 1359 | "order": null, 1360 | "overflow": null, 1361 | "overflow_x": null, 1362 | "overflow_y": null, 1363 | "padding": null, 1364 | "right": null, 1365 | "top": null, 1366 | "visibility": null, 1367 | "width": null 1368 | } 1369 | }, 1370 | "072a58938e394dd7b2c322e93cce68b0": { 1371 | "model_module": "@jupyter-widgets/controls", 1372 | "model_name": "DescriptionStyleModel", 1373 | "model_module_version": "1.5.0", 1374 | "state": { 1375 | "_model_module": "@jupyter-widgets/controls", 1376 | "_model_module_version": "1.5.0", 1377 | "_model_name": "DescriptionStyleModel", 1378 | "_view_count": null, 1379 | "_view_module": "@jupyter-widgets/base", 1380 | "_view_module_version": "1.2.0", 1381 | "_view_name": "StyleView", 1382 | "description_width": "" 1383 | } 1384 | }, 1385 | "e60d93e41e9d4bda965910e1c338178d": { 1386 | "model_module": "@jupyter-widgets/controls", 1387 | "model_name": "HBoxModel", 1388 | "model_module_version": "1.5.0", 1389 | "state": { 1390 | "_dom_classes": [], 1391 | "_model_module": "@jupyter-widgets/controls", 1392 | "_model_module_version": "1.5.0", 1393 | "_model_name": "HBoxModel", 1394 | "_view_count": null, 1395 | "_view_module": "@jupyter-widgets/controls", 1396 | "_view_module_version": "1.5.0", 1397 | "_view_name": "HBoxView", 1398 | "box_style": "", 1399 | "children": [ 1400 | "IPY_MODEL_b828d0de6a8c44a8a52205349aa37569", 1401 | "IPY_MODEL_88032a197a7b466faa59890836fffdca", 1402 | "IPY_MODEL_2bbce5127d0f4f3f9be620ab968c3d6f" 1403 | ], 1404 | "layout": "IPY_MODEL_0a4df8bc42cc476888a176ec05b85b26" 1405 | } 1406 | }, 1407 | "b828d0de6a8c44a8a52205349aa37569": { 1408 | "model_module": "@jupyter-widgets/controls", 1409 | "model_name": "HTMLModel", 1410 | "model_module_version": "1.5.0", 1411 | "state": { 1412 | "_dom_classes": [], 1413 | "_model_module": "@jupyter-widgets/controls", 1414 | "_model_module_version": "1.5.0", 1415 | "_model_name": "HTMLModel", 1416 | "_view_count": null, 1417 | "_view_module": "@jupyter-widgets/controls", 1418 | "_view_module_version": "1.5.0", 1419 | "_view_name": "HTMLView", 1420 | "description": "", 1421 | "description_tooltip": null, 1422 | "layout": "IPY_MODEL_3e28af41b7bf4cbfa255f2f0247730f2", 1423 | "placeholder": "​", 1424 | "style": "IPY_MODEL_afc405e3629448f18e9ea386755f3c49", 1425 | "value": "model.safetensors: 100%" 1426 | } 1427 | }, 1428 | "88032a197a7b466faa59890836fffdca": { 1429 | "model_module": "@jupyter-widgets/controls", 1430 | "model_name": "FloatProgressModel", 1431 | "model_module_version": "1.5.0", 1432 | "state": { 1433 | "_dom_classes": [], 1434 | "_model_module": "@jupyter-widgets/controls", 1435 | "_model_module_version": "1.5.0", 1436 | "_model_name": "FloatProgressModel", 1437 | "_view_count": null, 1438 | "_view_module": "@jupyter-widgets/controls", 1439 | "_view_module_version": "1.5.0", 1440 | "_view_name": "ProgressView", 1441 | "bar_style": "success", 1442 | "description": "", 1443 | "description_tooltip": null, 1444 | "layout": "IPY_MODEL_7fcffddebe0c42d1a3da9087c66febe9", 1445 | "max": 145227512, 1446 | "min": 0, 1447 | "orientation": "horizontal", 1448 | "style": "IPY_MODEL_34897cad00dd4df8a77adf361d0aa57e", 1449 | "value": 145227512 1450 | } 1451 | }, 1452 | "2bbce5127d0f4f3f9be620ab968c3d6f": { 1453 | "model_module": "@jupyter-widgets/controls", 1454 | "model_name": "HTMLModel", 1455 | "model_module_version": "1.5.0", 1456 | "state": { 1457 | "_dom_classes": [], 1458 | "_model_module": "@jupyter-widgets/controls", 1459 | "_model_module_version": "1.5.0", 1460 | "_model_name": "HTMLModel", 1461 | "_view_count": null, 1462 | "_view_module": "@jupyter-widgets/controls", 1463 | "_view_module_version": "1.5.0", 1464 | "_view_name": "HTMLView", 1465 | "description": "", 1466 | "description_tooltip": null, 1467 | "layout": "IPY_MODEL_ff37c58e1d9149a6a24205cb3978035a", 1468 | "placeholder": "​", 1469 | "style": "IPY_MODEL_5ad69ca299f640eab01b4bf73aed38f6", 1470 | "value": " 145M/145M [00:01<00:00, 116MB/s]" 1471 | } 1472 | }, 1473 | "0a4df8bc42cc476888a176ec05b85b26": { 1474 | "model_module": "@jupyter-widgets/base", 1475 | "model_name": "LayoutModel", 1476 | "model_module_version": "1.2.0", 1477 | "state": { 1478 | "_model_module": "@jupyter-widgets/base", 1479 | "_model_module_version": "1.2.0", 1480 | "_model_name": "LayoutModel", 1481 | "_view_count": null, 1482 | "_view_module": "@jupyter-widgets/base", 1483 | "_view_module_version": "1.2.0", 1484 | "_view_name": "LayoutView", 1485 | "align_content": null, 1486 | "align_items": null, 1487 | "align_self": null, 1488 | "border": null, 1489 | "bottom": null, 1490 | "display": null, 1491 | "flex": null, 1492 | "flex_flow": null, 1493 | "grid_area": null, 1494 | "grid_auto_columns": null, 1495 | "grid_auto_flow": null, 1496 | "grid_auto_rows": null, 1497 | "grid_column": null, 1498 | "grid_gap": null, 1499 | "grid_row": null, 1500 | "grid_template_areas": null, 1501 | "grid_template_columns": null, 1502 | "grid_template_rows": null, 1503 | "height": null, 1504 | "justify_content": null, 1505 | "justify_items": null, 1506 | "left": null, 1507 | "margin": null, 1508 | "max_height": null, 1509 | "max_width": null, 1510 | "min_height": null, 1511 | "min_width": null, 1512 | "object_fit": null, 1513 | "object_position": null, 1514 | "order": null, 1515 | "overflow": null, 1516 | "overflow_x": null, 1517 | "overflow_y": null, 1518 | "padding": null, 1519 | "right": null, 1520 | "top": null, 1521 | "visibility": null, 1522 | "width": null 1523 | } 1524 | }, 1525 | "3e28af41b7bf4cbfa255f2f0247730f2": { 1526 | "model_module": "@jupyter-widgets/base", 1527 | "model_name": "LayoutModel", 1528 | "model_module_version": "1.2.0", 1529 | "state": { 1530 | "_model_module": "@jupyter-widgets/base", 1531 | "_model_module_version": "1.2.0", 1532 | "_model_name": "LayoutModel", 1533 | "_view_count": null, 1534 | "_view_module": "@jupyter-widgets/base", 1535 | "_view_module_version": "1.2.0", 1536 | "_view_name": "LayoutView", 1537 | "align_content": null, 1538 | "align_items": null, 1539 | "align_self": null, 1540 | "border": null, 1541 | "bottom": null, 1542 | "display": null, 1543 | "flex": null, 1544 | "flex_flow": null, 1545 | "grid_area": null, 1546 | "grid_auto_columns": null, 1547 | "grid_auto_flow": null, 1548 | "grid_auto_rows": null, 1549 | "grid_column": null, 1550 | "grid_gap": null, 1551 | "grid_row": null, 1552 | "grid_template_areas": null, 1553 | "grid_template_columns": null, 1554 | "grid_template_rows": null, 1555 | "height": null, 1556 | "justify_content": null, 1557 | "justify_items": null, 1558 | "left": null, 1559 | "margin": null, 1560 | "max_height": null, 1561 | "max_width": null, 1562 | "min_height": null, 1563 | "min_width": null, 1564 | "object_fit": null, 1565 | "object_position": null, 1566 | "order": null, 1567 | "overflow": null, 1568 | "overflow_x": null, 1569 | "overflow_y": null, 1570 | "padding": null, 1571 | "right": null, 1572 | "top": null, 1573 | "visibility": null, 1574 | "width": null 1575 | } 1576 | }, 1577 | "afc405e3629448f18e9ea386755f3c49": { 1578 | "model_module": "@jupyter-widgets/controls", 1579 | "model_name": "DescriptionStyleModel", 1580 | "model_module_version": "1.5.0", 1581 | "state": { 1582 | "_model_module": "@jupyter-widgets/controls", 1583 | "_model_module_version": "1.5.0", 1584 | "_model_name": "DescriptionStyleModel", 1585 | "_view_count": null, 1586 | "_view_module": "@jupyter-widgets/base", 1587 | "_view_module_version": "1.2.0", 1588 | "_view_name": "StyleView", 1589 | "description_width": "" 1590 | } 1591 | }, 1592 | "7fcffddebe0c42d1a3da9087c66febe9": { 1593 | "model_module": "@jupyter-widgets/base", 1594 | "model_name": "LayoutModel", 1595 | "model_module_version": "1.2.0", 1596 | "state": { 1597 | "_model_module": "@jupyter-widgets/base", 1598 | "_model_module_version": "1.2.0", 1599 | "_model_name": "LayoutModel", 1600 | "_view_count": null, 1601 | "_view_module": "@jupyter-widgets/base", 1602 | "_view_module_version": "1.2.0", 1603 | "_view_name": "LayoutView", 1604 | "align_content": null, 1605 | "align_items": null, 1606 | "align_self": null, 1607 | "border": null, 1608 | "bottom": null, 1609 | "display": null, 1610 | "flex": null, 1611 | "flex_flow": null, 1612 | "grid_area": null, 1613 | "grid_auto_columns": null, 1614 | "grid_auto_flow": null, 1615 | "grid_auto_rows": null, 1616 | "grid_column": null, 1617 | "grid_gap": null, 1618 | "grid_row": null, 1619 | "grid_template_areas": null, 1620 | "grid_template_columns": null, 1621 | "grid_template_rows": null, 1622 | "height": null, 1623 | "justify_content": null, 1624 | "justify_items": null, 1625 | "left": null, 1626 | "margin": null, 1627 | "max_height": null, 1628 | "max_width": null, 1629 | "min_height": null, 1630 | "min_width": null, 1631 | "object_fit": null, 1632 | "object_position": null, 1633 | "order": null, 1634 | "overflow": null, 1635 | "overflow_x": null, 1636 | "overflow_y": null, 1637 | "padding": null, 1638 | "right": null, 1639 | "top": null, 1640 | "visibility": null, 1641 | "width": null 1642 | } 1643 | }, 1644 | "34897cad00dd4df8a77adf361d0aa57e": { 1645 | "model_module": "@jupyter-widgets/controls", 1646 | "model_name": "ProgressStyleModel", 1647 | "model_module_version": "1.5.0", 1648 | "state": { 1649 | "_model_module": "@jupyter-widgets/controls", 1650 | "_model_module_version": "1.5.0", 1651 | "_model_name": "ProgressStyleModel", 1652 | "_view_count": null, 1653 | "_view_module": "@jupyter-widgets/base", 1654 | "_view_module_version": "1.2.0", 1655 | "_view_name": "StyleView", 1656 | "bar_color": null, 1657 | "description_width": "" 1658 | } 1659 | }, 1660 | "ff37c58e1d9149a6a24205cb3978035a": { 1661 | "model_module": "@jupyter-widgets/base", 1662 | "model_name": "LayoutModel", 1663 | "model_module_version": "1.2.0", 1664 | "state": { 1665 | "_model_module": "@jupyter-widgets/base", 1666 | "_model_module_version": "1.2.0", 1667 | "_model_name": "LayoutModel", 1668 | "_view_count": null, 1669 | "_view_module": "@jupyter-widgets/base", 1670 | "_view_module_version": "1.2.0", 1671 | "_view_name": "LayoutView", 1672 | "align_content": null, 1673 | "align_items": null, 1674 | "align_self": null, 1675 | "border": null, 1676 | "bottom": null, 1677 | "display": null, 1678 | "flex": null, 1679 | "flex_flow": null, 1680 | "grid_area": null, 1681 | "grid_auto_columns": null, 1682 | "grid_auto_flow": null, 1683 | "grid_auto_rows": null, 1684 | "grid_column": null, 1685 | "grid_gap": null, 1686 | "grid_row": null, 1687 | "grid_template_areas": null, 1688 | "grid_template_columns": null, 1689 | "grid_template_rows": null, 1690 | "height": null, 1691 | "justify_content": null, 1692 | "justify_items": null, 1693 | "left": null, 1694 | "margin": null, 1695 | "max_height": null, 1696 | "max_width": null, 1697 | "min_height": null, 1698 | "min_width": null, 1699 | "object_fit": null, 1700 | "object_position": null, 1701 | "order": null, 1702 | "overflow": null, 1703 | "overflow_x": null, 1704 | "overflow_y": null, 1705 | "padding": null, 1706 | "right": null, 1707 | "top": null, 1708 | "visibility": null, 1709 | "width": null 1710 | } 1711 | }, 1712 | "5ad69ca299f640eab01b4bf73aed38f6": { 1713 | "model_module": "@jupyter-widgets/controls", 1714 | "model_name": "DescriptionStyleModel", 1715 | "model_module_version": "1.5.0", 1716 | "state": { 1717 | "_model_module": "@jupyter-widgets/controls", 1718 | "_model_module_version": "1.5.0", 1719 | "_model_name": "DescriptionStyleModel", 1720 | "_view_count": null, 1721 | "_view_module": "@jupyter-widgets/base", 1722 | "_view_module_version": "1.2.0", 1723 | "_view_name": "StyleView", 1724 | "description_width": "" 1725 | } 1726 | } 1727 | } 1728 | } 1729 | }, 1730 | "cells": [ 1731 | { 1732 | "cell_type": "code", 1733 | "source": [ 1734 | "!pip install transformers\n" 1735 | ], 1736 | "metadata": { 1737 | "colab": { 1738 | "base_uri": "https://localhost:8080/" 1739 | }, 1740 | "id": "kzBrQBJ51XbD", 1741 | "outputId": "cc05d07a-d65d-48bd-d8be-1c5cda6da9b6" 1742 | }, 1743 | "execution_count": 1, 1744 | "outputs": [ 1745 | { 1746 | "output_type": "stream", 1747 | "name": "stdout", 1748 | "text": [ 1749 | "Requirement already satisfied: transformers in /usr/local/lib/python3.10/dist-packages (4.42.4)\n", 1750 | "Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from transformers) (3.15.4)\n", 1751 | "Requirement already satisfied: huggingface-hub<1.0,>=0.23.2 in /usr/local/lib/python3.10/dist-packages (from transformers) (0.23.5)\n", 1752 | "Requirement already satisfied: numpy<2.0,>=1.17 in /usr/local/lib/python3.10/dist-packages (from transformers) (1.26.4)\n", 1753 | "Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from transformers) (24.1)\n", 1754 | "Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.10/dist-packages (from transformers) (6.0.2)\n", 1755 | "Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.10/dist-packages (from transformers) (2024.5.15)\n", 1756 | "Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from transformers) (2.32.3)\n", 1757 | "Requirement already satisfied: safetensors>=0.4.1 in /usr/local/lib/python3.10/dist-packages (from transformers) (0.4.4)\n", 1758 | "Requirement already satisfied: tokenizers<0.20,>=0.19 in /usr/local/lib/python3.10/dist-packages (from transformers) (0.19.1)\n", 1759 | "Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.10/dist-packages (from transformers) (4.66.5)\n", 1760 | "Requirement already satisfied: fsspec>=2023.5.0 in /usr/local/lib/python3.10/dist-packages (from huggingface-hub<1.0,>=0.23.2->transformers) (2024.6.1)\n", 1761 | "Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.10/dist-packages (from huggingface-hub<1.0,>=0.23.2->transformers) (4.12.2)\n", 1762 | "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (3.3.2)\n", 1763 | "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (3.7)\n", 1764 | "Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (2.0.7)\n", 1765 | "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (2024.7.4)\n" 1766 | ] 1767 | } 1768 | ] 1769 | }, 1770 | { 1771 | "cell_type": "code", 1772 | "source": [ 1773 | "!pip install soundfile" 1774 | ], 1775 | "metadata": { 1776 | "colab": { 1777 | "base_uri": "https://localhost:8080/" 1778 | }, 1779 | "id": "QYk5Ao7211gZ", 1780 | "outputId": "64b89da8-ca12-4ad2-dd26-c84180811ba6" 1781 | }, 1782 | "execution_count": 2, 1783 | "outputs": [ 1784 | { 1785 | "output_type": "stream", 1786 | "name": "stdout", 1787 | "text": [ 1788 | "Requirement already satisfied: soundfile in /usr/local/lib/python3.10/dist-packages (0.12.1)\n", 1789 | "Requirement already satisfied: cffi>=1.0 in /usr/local/lib/python3.10/dist-packages (from soundfile) (1.17.0)\n", 1790 | "Requirement already satisfied: pycparser in /usr/local/lib/python3.10/dist-packages (from cffi>=1.0->soundfile) (2.22)\n" 1791 | ] 1792 | } 1793 | ] 1794 | }, 1795 | { 1796 | "cell_type": "code", 1797 | "source": [ 1798 | "!pip install gradio" 1799 | ], 1800 | "metadata": { 1801 | "colab": { 1802 | "base_uri": "https://localhost:8080/" 1803 | }, 1804 | "id": "kcM5PgJI2BGx", 1805 | "outputId": "f588cfd9-dab0-41ee-d7fc-3c9bee9a081e" 1806 | }, 1807 | "execution_count": 3, 1808 | "outputs": [ 1809 | { 1810 | "output_type": "stream", 1811 | "name": "stdout", 1812 | "text": [ 1813 | "Collecting gradio\n", 1814 | " Downloading gradio-4.41.0-py3-none-any.whl.metadata (15 kB)\n", 1815 | "Collecting aiofiles<24.0,>=22.0 (from gradio)\n", 1816 | " Downloading aiofiles-23.2.1-py3-none-any.whl.metadata (9.7 kB)\n", 1817 | "Requirement already satisfied: anyio<5.0,>=3.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (3.7.1)\n", 1818 | "Collecting fastapi (from gradio)\n", 1819 | " Downloading fastapi-0.112.1-py3-none-any.whl.metadata (27 kB)\n", 1820 | "Collecting ffmpy (from gradio)\n", 1821 | " Downloading ffmpy-0.4.0-py3-none-any.whl.metadata (2.9 kB)\n", 1822 | "Collecting gradio-client==1.3.0 (from gradio)\n", 1823 | " Downloading gradio_client-1.3.0-py3-none-any.whl.metadata (7.1 kB)\n", 1824 | "Collecting httpx>=0.24.1 (from gradio)\n", 1825 | " Downloading httpx-0.27.0-py3-none-any.whl.metadata (7.2 kB)\n", 1826 | "Requirement already satisfied: huggingface-hub>=0.19.3 in /usr/local/lib/python3.10/dist-packages (from gradio) (0.23.5)\n", 1827 | "Requirement already satisfied: importlib-resources<7.0,>=1.3 in /usr/local/lib/python3.10/dist-packages (from gradio) (6.4.0)\n", 1828 | "Requirement already satisfied: jinja2<4.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (3.1.4)\n", 1829 | "Requirement already satisfied: markupsafe~=2.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (2.1.5)\n", 1830 | "Requirement already satisfied: matplotlib~=3.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (3.7.1)\n", 1831 | "Requirement already satisfied: numpy<3.0,>=1.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (1.26.4)\n", 1832 | "Collecting orjson~=3.0 (from gradio)\n", 1833 | " Downloading orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (50 kB)\n", 1834 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m50.4/50.4 kB\u001b[0m \u001b[31m2.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1835 | "\u001b[?25hRequirement already satisfied: packaging in /usr/local/lib/python3.10/dist-packages (from gradio) (24.1)\n", 1836 | "Requirement already satisfied: pandas<3.0,>=1.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (2.1.4)\n", 1837 | "Requirement already satisfied: pillow<11.0,>=8.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (9.4.0)\n", 1838 | "Requirement already satisfied: pydantic>=2.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (2.8.2)\n", 1839 | "Collecting pydub (from gradio)\n", 1840 | " Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB)\n", 1841 | "Collecting python-multipart>=0.0.9 (from gradio)\n", 1842 | " Downloading python_multipart-0.0.9-py3-none-any.whl.metadata (2.5 kB)\n", 1843 | "Requirement already satisfied: pyyaml<7.0,>=5.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (6.0.2)\n", 1844 | "Collecting ruff>=0.2.2 (from gradio)\n", 1845 | " Downloading ruff-0.6.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (25 kB)\n", 1846 | "Collecting semantic-version~=2.0 (from gradio)\n", 1847 | " Downloading semantic_version-2.10.0-py2.py3-none-any.whl.metadata (9.7 kB)\n", 1848 | "Collecting tomlkit==0.12.0 (from gradio)\n", 1849 | " Downloading tomlkit-0.12.0-py3-none-any.whl.metadata (2.7 kB)\n", 1850 | "Requirement already satisfied: typer<1.0,>=0.12 in /usr/local/lib/python3.10/dist-packages (from gradio) (0.12.3)\n", 1851 | "Requirement already satisfied: typing-extensions~=4.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (4.12.2)\n", 1852 | "Requirement already satisfied: urllib3~=2.0 in /usr/local/lib/python3.10/dist-packages (from gradio) (2.0.7)\n", 1853 | "Collecting uvicorn>=0.14.0 (from gradio)\n", 1854 | " Downloading uvicorn-0.30.6-py3-none-any.whl.metadata (6.6 kB)\n", 1855 | "Requirement already satisfied: fsspec in /usr/local/lib/python3.10/dist-packages (from gradio-client==1.3.0->gradio) (2024.6.1)\n", 1856 | "Collecting websockets<13.0,>=10.0 (from gradio-client==1.3.0->gradio)\n", 1857 | " Downloading websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB)\n", 1858 | "Requirement already satisfied: idna>=2.8 in /usr/local/lib/python3.10/dist-packages (from anyio<5.0,>=3.0->gradio) (3.7)\n", 1859 | "Requirement already satisfied: sniffio>=1.1 in /usr/local/lib/python3.10/dist-packages (from anyio<5.0,>=3.0->gradio) (1.3.1)\n", 1860 | "Requirement already satisfied: exceptiongroup in /usr/local/lib/python3.10/dist-packages (from anyio<5.0,>=3.0->gradio) (1.2.2)\n", 1861 | "Requirement already satisfied: certifi in /usr/local/lib/python3.10/dist-packages (from httpx>=0.24.1->gradio) (2024.7.4)\n", 1862 | "Collecting httpcore==1.* (from httpx>=0.24.1->gradio)\n", 1863 | " Downloading httpcore-1.0.5-py3-none-any.whl.metadata (20 kB)\n", 1864 | "Collecting h11<0.15,>=0.13 (from httpcore==1.*->httpx>=0.24.1->gradio)\n", 1865 | " Downloading h11-0.14.0-py3-none-any.whl.metadata (8.2 kB)\n", 1866 | "Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from huggingface-hub>=0.19.3->gradio) (3.15.4)\n", 1867 | "Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from huggingface-hub>=0.19.3->gradio) (2.32.3)\n", 1868 | "Requirement already satisfied: tqdm>=4.42.1 in /usr/local/lib/python3.10/dist-packages (from huggingface-hub>=0.19.3->gradio) (4.66.5)\n", 1869 | "Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib~=3.0->gradio) (1.2.1)\n", 1870 | "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib~=3.0->gradio) (0.12.1)\n", 1871 | "Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib~=3.0->gradio) (4.53.1)\n", 1872 | "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib~=3.0->gradio) (1.4.5)\n", 1873 | "Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib~=3.0->gradio) (3.1.2)\n", 1874 | "Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.10/dist-packages (from matplotlib~=3.0->gradio) (2.8.2)\n", 1875 | "Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas<3.0,>=1.0->gradio) (2024.1)\n", 1876 | "Requirement already satisfied: tzdata>=2022.1 in /usr/local/lib/python3.10/dist-packages (from pandas<3.0,>=1.0->gradio) (2024.1)\n", 1877 | "Requirement already satisfied: annotated-types>=0.4.0 in /usr/local/lib/python3.10/dist-packages (from pydantic>=2.0->gradio) (0.7.0)\n", 1878 | "Requirement already satisfied: pydantic-core==2.20.1 in /usr/local/lib/python3.10/dist-packages (from pydantic>=2.0->gradio) (2.20.1)\n", 1879 | "Requirement already satisfied: click>=8.0.0 in /usr/local/lib/python3.10/dist-packages (from typer<1.0,>=0.12->gradio) (8.1.7)\n", 1880 | "Requirement already satisfied: shellingham>=1.3.0 in /usr/local/lib/python3.10/dist-packages (from typer<1.0,>=0.12->gradio) (1.5.4)\n", 1881 | "Requirement already satisfied: rich>=10.11.0 in /usr/local/lib/python3.10/dist-packages (from typer<1.0,>=0.12->gradio) (13.7.1)\n", 1882 | "Collecting starlette<0.39.0,>=0.37.2 (from fastapi->gradio)\n", 1883 | " Downloading starlette-0.38.2-py3-none-any.whl.metadata (5.9 kB)\n", 1884 | "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.7->matplotlib~=3.0->gradio) (1.16.0)\n", 1885 | "Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.10/dist-packages (from rich>=10.11.0->typer<1.0,>=0.12->gradio) (3.0.0)\n", 1886 | "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.10/dist-packages (from rich>=10.11.0->typer<1.0,>=0.12->gradio) (2.16.1)\n", 1887 | "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->huggingface-hub>=0.19.3->gradio) (3.3.2)\n", 1888 | "Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.10/dist-packages (from markdown-it-py>=2.2.0->rich>=10.11.0->typer<1.0,>=0.12->gradio) (0.1.2)\n", 1889 | "Downloading gradio-4.41.0-py3-none-any.whl (12.6 MB)\n", 1890 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m12.6/12.6 MB\u001b[0m \u001b[31m83.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1891 | "\u001b[?25hDownloading gradio_client-1.3.0-py3-none-any.whl (318 kB)\n", 1892 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m318.7/318.7 kB\u001b[0m \u001b[31m21.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1893 | "\u001b[?25hDownloading tomlkit-0.12.0-py3-none-any.whl (37 kB)\n", 1894 | "Downloading aiofiles-23.2.1-py3-none-any.whl (15 kB)\n", 1895 | "Downloading httpx-0.27.0-py3-none-any.whl (75 kB)\n", 1896 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m75.6/75.6 kB\u001b[0m \u001b[31m4.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1897 | "\u001b[?25hDownloading httpcore-1.0.5-py3-none-any.whl (77 kB)\n", 1898 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m77.9/77.9 kB\u001b[0m \u001b[31m5.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1899 | "\u001b[?25hDownloading orjson-3.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141 kB)\n", 1900 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m141.9/141.9 kB\u001b[0m \u001b[31m9.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1901 | "\u001b[?25hDownloading python_multipart-0.0.9-py3-none-any.whl (22 kB)\n", 1902 | "Downloading ruff-0.6.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 MB)\n", 1903 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m10.2/10.2 MB\u001b[0m \u001b[31m84.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1904 | "\u001b[?25hDownloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB)\n", 1905 | "Downloading uvicorn-0.30.6-py3-none-any.whl (62 kB)\n", 1906 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m62.8/62.8 kB\u001b[0m \u001b[31m4.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1907 | "\u001b[?25hDownloading fastapi-0.112.1-py3-none-any.whl (93 kB)\n", 1908 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m93.2/93.2 kB\u001b[0m \u001b[31m6.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1909 | "\u001b[?25hDownloading ffmpy-0.4.0-py3-none-any.whl (5.8 kB)\n", 1910 | "Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB)\n", 1911 | "Downloading h11-0.14.0-py3-none-any.whl (58 kB)\n", 1912 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m58.3/58.3 kB\u001b[0m \u001b[31m3.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1913 | "\u001b[?25hDownloading starlette-0.38.2-py3-none-any.whl (72 kB)\n", 1914 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m72.0/72.0 kB\u001b[0m \u001b[31m5.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1915 | "\u001b[?25hDownloading websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130 kB)\n", 1916 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m130.2/130.2 kB\u001b[0m \u001b[31m9.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 1917 | "\u001b[?25hInstalling collected packages: pydub, websockets, tomlkit, semantic-version, ruff, python-multipart, orjson, h11, ffmpy, aiofiles, uvicorn, starlette, httpcore, httpx, fastapi, gradio-client, gradio\n", 1918 | " Attempting uninstall: tomlkit\n", 1919 | " Found existing installation: tomlkit 0.13.0\n", 1920 | " Uninstalling tomlkit-0.13.0:\n", 1921 | " Successfully uninstalled tomlkit-0.13.0\n", 1922 | "Successfully installed aiofiles-23.2.1 fastapi-0.112.1 ffmpy-0.4.0 gradio-4.41.0 gradio-client-1.3.0 h11-0.14.0 httpcore-1.0.5 httpx-0.27.0 orjson-3.10.7 pydub-0.25.1 python-multipart-0.0.9 ruff-0.6.1 semantic-version-2.10.0 starlette-0.38.2 tomlkit-0.12.0 uvicorn-0.30.6 websockets-12.0\n" 1923 | ] 1924 | } 1925 | ] 1926 | }, 1927 | { 1928 | "cell_type": "code", 1929 | "source": [ 1930 | "from transformers import AutoTokenizer, AutoModelForTextToWaveform\n", 1931 | "\n", 1932 | "tokenizer = AutoTokenizer.from_pretrained(\"facebook/mms-tts-eng\")\n", 1933 | "model = AutoModelForTextToWaveform.from_pretrained(\"facebook/mms-tts-eng\")\n" 1934 | ], 1935 | "metadata": { 1936 | "colab": { 1937 | "base_uri": "https://localhost:8080/", 1938 | "height": 371, 1939 | "referenced_widgets": [ 1940 | "60669577a2974003989157839d8f4aff", 1941 | "9aedd6fe18124a878e5773885dc3a2c8", 1942 | "d10f80764f7340c086f02646a89f46a8", 1943 | "80cff100553a411692eb2ae615362d7f", 1944 | "23435d838858435baa604ec003b1a9b8", 1945 | "1ccadf58c15e495886e2f3a9d7590b9c", 1946 | "9ccc1c044b2140aca519af49a781ba55", 1947 | "7cb9e5351c674567b5717dc059ebce0b", 1948 | "ea7cf07375c641ce84e41066a8061d6c", 1949 | "7b93d9a42e434d99ab1cb85eff06c7b0", 1950 | "d7be5276100241ea8a3049bcf0cd49b0", 1951 | "31b3c50ab4cf4043a1f88013dafc1864", 1952 | "c2f23fe930334ad290cb038911db15e8", 1953 | "cd8c210616e44dfd83683f0f04e520fd", 1954 | "130b14c873e840d4834ee302860c2f53", 1955 | "f3f9ffbfef264a85964214849cd79b0b", 1956 | "e22e1a369528433dbe3226020236bb2d", 1957 | "b0bf693b0651478c8b97866c7a99156f", 1958 | "447dc5d9a32b45f089f9c974938640f3", 1959 | "78abafd85ffb4754abbe3f30d3ddff91", 1960 | "568ec8ac6a69477aa0abf456aaf2300f", 1961 | "715fafad1f8841b09826e2440ab9d618", 1962 | "80a89622b808449ab44c146a84c40df7", 1963 | "f19d4505839d4f55aaf9348da392e267", 1964 | "7b97c68f54b2409da19ba4600d7ea533", 1965 | "23f3e1ad167e46d28f7d7b0fc660a37e", 1966 | "8529ffa62cc3410eb81c2d1f5f780fbd", 1967 | "69dd77fc5d4f43cc96676b2eb4512c19", 1968 | "a5b3fb2c753e45dbb8ebbf718457f0a6", 1969 | "8df06f0b97bd453bb05f9bc6c9a705ea", 1970 | "3b50c4f54b4b4107b4099bd5854241fd", 1971 | "11a158af60414b208288a0a6d72ff691", 1972 | "b7c8684f2a2b48f093f393269abcde6f", 1973 | "a506b4e5d2f745dba753dfab49679ac0", 1974 | "73fd7d6d8ec24c549ff6a50514353054", 1975 | "8da88e7a7c234d61b4f41c626ea6ab0a", 1976 | "e6e9b8f647de41e1a3697d9f00b3accc", 1977 | "3b23d0e48a7845ed8692ca17dea5cf8b", 1978 | "0027d311575b43e988855752e81909ae", 1979 | "e13d0133a9f04c1ca67c156149c0d45c", 1980 | "dffab7d166fe48c685359affb5183b7e", 1981 | "5d9274756b224799af7a42bff1bebe5b", 1982 | "7eff473f20034cbb9e1b1562832e32ee", 1983 | "072a58938e394dd7b2c322e93cce68b0", 1984 | "e60d93e41e9d4bda965910e1c338178d", 1985 | "b828d0de6a8c44a8a52205349aa37569", 1986 | "88032a197a7b466faa59890836fffdca", 1987 | "2bbce5127d0f4f3f9be620ab968c3d6f", 1988 | "0a4df8bc42cc476888a176ec05b85b26", 1989 | "3e28af41b7bf4cbfa255f2f0247730f2", 1990 | "afc405e3629448f18e9ea386755f3c49", 1991 | "7fcffddebe0c42d1a3da9087c66febe9", 1992 | "34897cad00dd4df8a77adf361d0aa57e", 1993 | "ff37c58e1d9149a6a24205cb3978035a", 1994 | "5ad69ca299f640eab01b4bf73aed38f6" 1995 | ] 1996 | }, 1997 | "id": "sZQazbOD2PF4", 1998 | "outputId": "5a7dfc82-d715-4668-d410-3ed6d54fd8d5" 1999 | }, 2000 | "execution_count": 4, 2001 | "outputs": [ 2002 | { 2003 | "output_type": "stream", 2004 | "name": "stderr", 2005 | "text": [ 2006 | "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_token.py:99: UserWarning: \n", 2007 | "Error while fetching `HF_TOKEN` secret value from your vault: 'Requesting secret HF_TOKEN timed out. Secrets can only be fetched when running from the Colab UI.'.\n", 2008 | "You are not authenticated with the Hugging Face Hub in this notebook.\n", 2009 | "If the error persists, please let us know by opening an issue on GitHub (https://github.com/huggingface/huggingface_hub/issues/new).\n", 2010 | " warnings.warn(\n" 2011 | ] 2012 | }, 2013 | { 2014 | "output_type": "display_data", 2015 | "data": { 2016 | "text/plain": [ 2017 | "tokenizer_config.json: 0%| | 0.00/287 [00:00" 2161 | ], 2162 | "text/html": [ 2163 | "
" 2164 | ] 2165 | }, 2166 | "metadata": {} 2167 | }, 2168 | { 2169 | "output_type": "execute_result", 2170 | "data": { 2171 | "text/plain": [] 2172 | }, 2173 | "metadata": {}, 2174 | "execution_count": 6 2175 | } 2176 | ] 2177 | } 2178 | ] 2179 | } --------------------------------------------------------------------------------