File size: 50,078 Bytes
859cd93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 |
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 3.0.3 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='669.980095pt' height='261.186112pt' viewBox='-72.000004 -72.000006 669.980095 261.186112'>
<style type='text/css'>
<![CDATA[@font-face{font-family:cmr9;src:url(data:application/x-font-woff2;base64,d09GMgABAAAAAALcAAoAAAAABOwAAAKQAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAARAqDMIJqCwoAATYCJAMQBCAFgjIHIBvpA8geg23bOA4RLz/EZjIgthMP8Yfs3d1vjAk0plEc2FqUSHlRnNgEjBLrD+ZV6ULMkl1Q7ayJlw50kp78Pv+u2O3/7yaf9ryAbgH4t6a2KWxTeOhNjjdoRAd2L6Pc020+PVLEnooQAhGRbt86+rqhso4aN0A+58f/vLHqhcKgQxTQBzGCVzk5rc0DQva4F+gooW/2DhKF+aRqnoA9wLBhiT1O3HufS/2n3++3UaA18sMYwj3gXfx8UsllVQl1SQmJvA1kjVDASeJznOhtcjTH2Z/BzDEcv+N6gbemx2M3tQjR30VxyzCO2dDEOIm5wOltkoBBBDeY8B3MIBRHCLvF8SJmlS7rchxvCDPrKO4ughgzdzi91eeGVVLTrx17itJzL+3bcfyjXwIlpSqyoF+2A/TOMkn7L/VYo1K11XpB2fSnp9m2ugELkjfv6jP7auViSpVBodzFRmm/EKuf14LNZb0HhaIY5KyUysZGWYPDp83hMt6BCsKR/lftYx1lHe82ehcGR/IHU3HNhUl8DGhP5YuWjEr10555tZ8iRgUVpMVQweWRfEEWUeGT7km+8UKUd0q0L/iR5muuaR8CUEzDOgt7jyqOeiEr9aSb66sJYAap8TSNbqVJu/0VKQEAvx0Xvw+m/+V8g+jADPHL1gEwZpz/BHS0nCAnZF8SbBlMV7VojvC7RSDxqAcpDVN63jRTjAeMmcODms3tUat08YsmCsImN8bNsGM8YFEmHjTsqhh1pP3CgA9iWVZJpfPBHthYWpPwfH0mu7agqjavBNKW1pY08FWmRLka1XJUgsKVyea1UllKVHLG5qMqBcqUgmxYslZQoFlqNjM2oGw/U0Pjs9UqUNXOUwKiPb1bovEDAAAA) format('woff2');}
@font-face{font-family:cmmi7;src:url(data:application/x-font-woff2;base64,d09GMgABAAAAAAKcAAoAAAAABIwAAAJRAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAANAqCZIIhCwgAATYCJAMMBCAFgjgHIBuSAwiOwrZtE2eYDPHiYBJHNR6eLvP9md29lN4sATywwxwGpGEVrtjFI56uoWB2QY9KTzYnz/LDahcfYFLjzc4UgJ+dpM1BHBR46EEiJw/6gi/2+oDwuk0lwSdiIDtEfLs9ersgJ0mkCErSFcr+/4jCU+JhJ3YDG/iKELzKwXGEJ2A4FpahRhZZs64BEjJGLBmBZoEWCi4n+XJcAwoELqMVPXT4mEsACkCIJr9nzwZbzthKW59LdfF2afZp5mqhKq45s5wLhsbF7lz6pK6V7nPc8k3O3sGxhh2OjQmOioGpGsFKzkXLzXPmuqn7+7uXfSu6ZsnJS9HKym7y8uod++8ThmRaW5y2hodRXEvGRslxajPc3HaXbWNTSZN7RAQbbZxQEvb8yNN7rGl5uuF15/9BqHqWYvgICyWbOOVTGqcGCXPRZP0eiM/+R3jjin7aFY8yoZEgxgUNWhvMZOpKDogP/C3VZrMmI27WVDfWi8BONka/+XHvV0Hlf8PH1dCgcV4hprj1YogKrjZGGLjanQlQcYgobwEEgo7flqMjodwnFioawFvy3Hc01H8oGykJ6JCU+WbH9GqbWNw5w0dy2iBtgHZMwzYEWRMCgrQu5ynqZ4ZCqR+lbiOolObtLlPYoIoCG8IcBUGhSxulMR6odDmdXfZkDAL+9zVc/f29JQe2CgsI8eVdeo9bhHdohKc/k6iAkIAoqArkL0i4MO5CMNEXyE17AFf+K3qTZOFCeZ8DMBEmQMhJUwLK4txIbtVFdMjdRPAWWj35cxFt2C5AFCoAAAA=) format('woff2');}
@font-face{font-family:cmr10;src:url(data:application/x-font-woff2;base64,d09GMgABAAAAAAIkAAoAAAAAA9QAAAHbAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAANAqBLIExCwgAATYCJAMKBCAFgjgHIBsgAyMRZmMLhvmLBN4weuNP0EwkjgwVbIR9Ff2cq0NqsoljciUe4OfM95O0NwLIjZiEIQQ5J+YKAwB1ahDVTZSsQyMlAbJMdDzb3+QBUAu8mfD7bLbj3cAX0N8FAtkk7YKAFnhqeZwEaRAABgR9Y8lwkIV4Sp4FcXgVLsgR3Yoe/290XmP4wZ7+oTqSxwV+yIbNspbXTfdYhliAAECWgQgxGokFNJJoh0QioHuWoVuWZU8DgBjkESHFXEACCEKzZvNA8anSolKpY6m8uFw+3ahRobCw8HRh86vri4UFhcKp0LRcXnSwtKjHtabXTxcXFovzqmo0Wbc2XdVtcctHtYxt+aDzgnTdxg1NarZyzeQ/joUd48Oq9W866ll6p3GtV6yd+jcceTjv9/QZ9TsGjZucc0BA4Ov3e1bXHVFVLU7A24M/4XPIRAdiqCYCgViG6IChhoYFAgAgig4QztpgqIBYMwEEVmrYh1SXgyVy6jrIqakR8nLazmtooZNYSKoL2hjlIPGuxgrkmmxCvsaeWmPAsbkMXzfbYo50z82VfdJAc7W8s0FeMqJ/n7RPf+Mvn+89iZl3wzgWc6SLJJWn+4HKPinRZI0yna1or677sUFeMqJ/abdP/5hJwAA=) format('woff2');}
@font-face{font-family:cmmi10;src:url(data:application/x-font-woff2;base64,d09GMgABAAAAAARgAAoAAAAABwAAAAQWAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAARAqHNIVVCwwAATYCJAMUBCAFgj4HIBtkBQguB2x3AtS0HFc2pbAQ2ydHXMxbrTB4+OywP7MIAG3kI1vZRSWVfP25Cv7v5o3ZBrr3QUMcYxomXAqVVYWwg3VZtmQmBYivzdWrB6I82fOf8aN1lKgc/c81+SIpku7oPz/QqWVSlUUFauPA9k4nlOID1AHr1OmozPXZ0VFWEqGPPtJL0FcLKNJP7EADeUi+mHNku4+Jo0KCMMMoOhjCFiwNLM6MAoKlXwwFzAMKApbCPx9XAQmUBUfU7nmV2IwppkzvUq4vxrwFel6yTfUDgQlqgpr7QCAexASrkgExPaSsarNVYQ9rPje/Q/TcSPLyaMMdOgdLr9331DM472tUapObslrYABsc+afx/M0zGkcxXFNcXl5tQ1gZTza3u7twM3f2EcmnDcMagOcR7mnz0s2ocAJsuHpAatnPuMc2xKJj6+6Ll7z10uPUh14Ktk1JlQ1kD4s3YBJLd0KkT8Ij8UG8+x6EGlGOWpvcltcQQaXtTmvoRKB5eXEUt/Gy1CCS3I+E41He+PeN925zHommAZ7mZcmWA66lK7kpktD6KeKHhZrtwfIBbjzN/6lzYmMSPuDth4pqU3J73O+bgfjGK/L42lBYz82dTdAYuDJqwhqa12H9sfjhR3996XrUiJq8xry2zEgt+zsXt+XxjTeE8YOps5Ps045qFCWBAlH8tpOunLTmhrcfp6mcB21wHKvPRa7/i42rANbM90kiiYxMe3rNbpp30oTfEMmLXjXmk6VpsrcTrz71lyo//B3b4Y6RR5e/4H4gXvQrEkXL9tXZ+JpyXbR5HRmZkT8RfH36O4/yeuooz+Q0p3g1O/2XBZZV4etiv3752cps8cfwpiJeW3DXavE78XUHm9DAN6eCLBPK5DwB4zzP2e1/wdYZhjiz43M3ukdxnN42tuCvrxB5F2S44D5e6aicPUHjOR761ns7Nk2X7GFfND790WRcgT9fuKDTfQitmXEiGrO84C2rXybkWTD11YnpmykqLEMXohNb/0wGbAaqbSmXKoddntlNpVL2ZgpRDaSGqOcaexdyaGCIOdPDis350dwluzvfV59nQr/0JvolmIx6CPfyUO/d/Y+yJHk1X8pgq/6flQlbcfsy9NjagXuL8B2OHrXzC2LV/2eqqAB83fg+9wvz0XKZvIXK1EFA7TS5DFuXkQjPsBPXkCzHyDKM+D9XL2GBkARtaTtMw5x1YAqxwURDRcdmBRoWOIGOjm/VHHeCS76gmiHwJldAxZJu0HBmDHQs2dA0J5EtjzvX320DYQkJMSrKr6WsiqJysPH5PR6eGZOWGZUgrEbdoagGChjoGNlYyZgBqhhIt0pPQie9FSGxNCu/UF3uAeKIJlaRkmCfEIxSkbTSxwWoeadiYafIAAkZe48mAQUDAA==) format('woff2');}
@font-face{font-family:phvr8r;src:url(data:application/x-font-woff2;base64,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) format('woff2');}
text.f1 {font-family:phvr8r;font-size:5.280308px}
text.f2 {font-family:phvr8r;font-size:6.600383px}
text.f3 {font-family:cmr9;font-size:8.966376px}
text.f5 {font-family:phvr8r;font-size:8.486207px}
text.f7 {font-family:phvr8r;font-size:6.600383px}
text.f9 {font-family:phvr8r;font-size:13.03481px}
text.f10 {font-family:phvr8r;font-size:16.293509px}
text.f12 {font-family:phvr8r;font-size:16.293509px}
text.f14 {font-family:phvr8r;font-size:9.429118px}
text.f15 {font-family:cmmi10;font-size:9.96264px}
text.f16 {font-family:cmmi7;font-size:6.973848px}
text.f17 {font-family:cmr10;font-size:9.96264px}
]]>
</style>
<g id='page1'>
<rect x='-72.000004' y='-72.000006' width='669.980095' height='261.186112' fill='#fff'/>
<g stroke-miterlimit='10' transform='translate(-23.611895,171.978828)scale(0.996264,-0.996264)'>
<g fill='#000' stroke='#000'>
<g stroke-width='0.4'>
<g fill='#000' stroke='#000'>
<path d='M-48.36957-17.07181V244.69376' fill='none'/>
</g>
<g transform='translate(-34.98865,231.74191)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f10' x='-23.203036' y='171.978828'>S</text>
<text class='f9' x='-11.476905' y='171.978828'>E<tspan x='-1.942227'>A</tspan><tspan x='7.59245'>M</tspan><tspan x='19.302204'>L</tspan><tspan x='27.381279'>E</tspan><tspan x='36.915957'>S</tspan><tspan x='46.450635'>S</tspan></text>
<text class='f10' x='55.985313' y='171.978828'>M</text>
<text class='f10' x='70.426361' y='171.978828'>4</text>
<text class='f10' x='80.33716' y='171.978828'>T</text>
<text class='f12' x='95.285099' y='171.978828'>(v1)</text>
</g>
</g>
</g>
</g>
<g transform='translate(-16.47708,-10.14087)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>x</text>
<text class='f7' x='-17.917963' y='168.363464'>te<tspan x='-12.591422'>xt</tspan></text>
<text class='f17' x='-6.939038' y='171.978828'>(</text>
<text class='f15' x='-3.064664' y='171.978828'></text>
<text class='f16' x='1.086468' y='173.473209'>s</text>
<text class='f17' x='5.344821' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.7'>
<g transform='translate(85.35823,0.0)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'/>
</g>
</g>
</g>
<path d='M67.14836-4.55238V4.55238M69.42471-6.82874V6.82874M71.70074-9.10477V9.10477M73.9771-4.55238V4.55238M76.25346-13.65749V13.65749M78.5295-9.10477V9.10477M80.80585-9.10477V9.10477M83.08188-4.55238V4.55238M85.35823-2.27635V2.27635M87.63458-3.41418V2.27635M89.91061-6.82874V6.82874M92.18697-4.55238V4.55238M94.463-6.82874V6.82874M96.73936-9.10477V9.10477M99.01572-2.27635V2.27635M101.29175-3.41418V3.41418M103.5681-1.13817V1.13817' fill='none'/>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<path d='M117.50145 51.78413H53.21501C52.11043 51.78413 51.21501 50.88872 51.21501 49.78413V19.89265C51.21501 18.78807 52.11043 17.89265 53.21501 17.89265H117.50145C118.60603 17.89265 119.50145 18.78807 119.50145 19.89265V49.78413C119.50145 50.88872 118.60603 51.78413 117.50145 51.78413ZM51.21501 17.89265' fill='none'/>
</g>
</g>
<g transform='translate(56.14331,21.69234)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f5' x='-23.611895' y='150.06102'>Mel-Filterbanks<tspan x='-10.903114' y='161.019924'>e</tspan><tspan x='-6.422636'>xtr</tspan><tspan x='2.955606'>actor</tspan><tspan x='-13.344976' y='171.978828'>(bins</tspan></text>
<text class='f3' x='5.113439' y='171.978828'>=<tspan x='12.280958'>80</tspan></text>
<text class='f5' x='21.496339' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(63.42152,62.12466)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>x</text>
<text class='f7' x='-17.917963' y='168.363464'>speech</text>
<text class='f17' x='3.939403' y='171.978828'>(</text>
<text class='f15' x='7.813777' y='171.978828'></text>
<text class='f16' x='11.964909' y='173.473209'>s</text>
<text class='f17' x='16.223262' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<path d='M33.0368 71.28185H-33.0368C-34.14139 71.28185-35.0368 70.38643-35.0368 69.28185V30.60274C-35.0368 29.49815-34.14139 28.60274-33.0368 28.60274H33.0368C34.14139 28.60274 35.0368 29.49815 35.0368 30.60274V69.28185C35.0368 70.38643 34.14139 71.28185 33.0368 71.28185ZM-35.0368 28.60274'/>
</g>
</g>
</g>
<g transform='translate(-33.0368,34.50519)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-15.826484' y='148.068492'>T<tspan x='-11.179392'>r</tspan><tspan x='-8.122386'>ansf</tspan><tspan x='9.481394'>or</tspan><tspan x='18.131825'>mer</tspan><tspan x='-16.597732' y='160.02366'>te</tspan><tspan x='-8.988383'>xt</tspan><tspan x='1.005922'>encoder</tspan></text>
<text class='f2' x='-23.446269' y='171.978828'>S</text>
<text class='f1' x='-18.696098' y='171.978828'>E<tspan x='-14.833669'>A</tspan><tspan x='-10.97124'>M</tspan><tspan x='-6.227703'>L</tspan><tspan x='-2.954928'>E</tspan><tspan x='.907501'>S</tspan><tspan x='4.769931'>S</tspan></text>
<text class='f2' x='8.63236' y='171.978828'>M</text>
<text class='f2' x='14.482325' y='171.978828'>4</text>
<text class='f2' x='18.497118' y='171.978828'>T</text>
<text class='f2' x='21.948866' y='171.978828'>-</text>
<text class='f2' x='24.486264' y='171.978828'>N</text>
<text class='f2' x='29.60085' y='171.978828'>L</text>
<text class='f2' x='33.615644' y='171.978828'>L</text>
<text class='f2' x='37.630437' y='171.978828'>B</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<path d='M119.15402 113.43236H51.56244C50.45786 113.43236 49.56244 112.53694 49.56244 111.43236V80.33217C49.56244 79.22758 50.45786 78.33217 51.56244 78.33217H119.15402C120.2586 78.33217 121.15402 79.22758 121.15402 80.33217V111.43236C121.15402 112.53694 120.2586 113.43236 119.15402 113.43236ZM49.56244 78.33217'/>
</g>
</g>
</g>
<g transform='translate(51.56244,80.44516)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-12.268842' y='148.068492'>Conf<tspan x='7.436027'>or</tspan><tspan x='16.086457'>mer</tspan><tspan x='-23.611895' y='160.02366'>speech</tspan><tspan x='9.532389'>encoder</tspan></text>
<text class='f1' x='-12.831944' y='171.978828'>W</text>
<text class='f2' x='-7.498759' y='171.978828'>2</text>
<text class='f1' x='-3.483966' y='171.978828'>V</text>
<text class='f2' x='-.098538' y='171.978828'>-</text>
<text class='f2' x='2.438859' y='171.978828'>B</text>
<text class='f2' x='7.18903' y='171.978828'>E</text>
<text class='f2' x='11.939201' y='171.978828'>R</text>
<text class='f2' x='16.85507' y='171.978828'>T</text>
<text class='f2' x='23.07599' y='171.978828'>2</text>
<text class='f2' x='27.090784' y='171.978828'>.</text>
<text class='f2' x='29.263759' y='171.978828'>0</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<path d='M117.50145 144.1912H53.21501C52.11043 144.1912 51.21501 143.29578 51.21501 142.1912V121.42288C51.21501 120.3183 52.11043 119.42288 53.21501 119.42288H117.50145C118.60603 119.42288 119.50145 120.3183 119.50145 121.42288V142.1912C119.50145 143.29578 118.60603 144.1912 117.50145 144.1912ZM51.21501 119.42288'/>
</g>
</g>
</g>
<g transform='translate(69.25125,123.42255)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-22.036078' y='160.02366'>Length<tspan x='-23.611895' y='171.978828'>adaptor</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<path d='M70.02545 188.26656H3.95184C2.84726 188.26656 1.95184 187.37114 1.95184 186.26656V155.16637C1.95184 154.06178 2.84726 153.16637 3.95184 153.16637H70.02545C71.13004 153.16637 72.02545 154.06178 72.02545 155.16637V186.26656C72.02545 187.37114 71.13004 188.26656 70.02545 188.26656ZM1.95184 153.16637'/>
</g>
</g>
</g>
<g transform='translate(3.95184,155.27936)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-15.826484' y='148.068492'>T<tspan x='-11.179392'>r</tspan><tspan x='-8.122386'>ansf</tspan><tspan x='9.481394'>or</tspan><tspan x='18.131825'>mer</tspan><tspan x='-16.597732' y='160.02366'>te</tspan><tspan x='-8.988383'>xt</tspan><tspan x='1.005922'>decoder</tspan></text>
<text class='f2' x='-23.446269' y='171.978828'>S</text>
<text class='f1' x='-18.696098' y='171.978828'>E<tspan x='-14.833669'>A</tspan><tspan x='-10.97124'>M</tspan><tspan x='-6.227703'>L</tspan><tspan x='-2.954928'>E</tspan><tspan x='.907501'>S</tspan><tspan x='4.769931'>S</tspan></text>
<text class='f2' x='8.63236' y='171.978828'>M</text>
<text class='f2' x='14.482325' y='171.978828'>4</text>
<text class='f2' x='18.497118' y='171.978828'>T</text>
<text class='f2' x='21.948866' y='171.978828'>-</text>
<text class='f2' x='24.486264' y='171.978828'>N</text>
<text class='f2' x='29.60085' y='171.978828'>L</text>
<text class='f2' x='33.615644' y='171.978828'>L</text>
<text class='f2' x='37.630437' y='171.978828'>B</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(21.11514,198.60709)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>y</text>
<text class='f7' x='-18.369952' y='168.363464'>te<tspan x='-13.043411'>xt</tspan></text>
<text class='f17' x='-7.391027' y='171.978828'>(</text>
<text class='f15' x='-3.516653' y='171.978828'></text>
<text class='f16' x='.634479' y='173.473209'>t</text>
<text class='f17' x='4.142168' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<path d='M222.77672 31.3985H147.10893C146.00435 31.3985 145.10893 30.50308 145.10893 29.3985V10.43515C145.10893 9.33057 146.00435 8.43515 147.10893 8.43515H222.77672C223.8813 8.43515 224.77672 9.33057 224.77672 10.43515V29.3985C224.77672 30.50308 223.8813 31.3985 222.77672 31.3985ZM145.10893 8.43515'/>
</g>
</g>
</g>
<g transform='translate(152.51979,10.62985)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='160.02366'>subw<tspan x='-1.616574'>ord-length</tspan><tspan x='-18.662042' y='171.978828'>T2U</tspan><tspan x='1.847298'>encoder</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<path d='M222.77672 48.7701H147.10893C146.00435 48.7701 145.10893 47.87468 145.10893 46.7701V39.38902C145.10893 38.28444 146.00435 37.38902 147.10893 37.38902H222.77672C223.8813 37.38902 224.77672 38.28444 224.77672 39.38902V46.7701C224.77672 47.87468 223.8813 48.7701 222.77672 48.7701ZM145.10893 37.38902'/>
</g>
</g>
</g>
<g transform='translate(150.88588,39.74982)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>AR<tspan x='-7.834802'>unit</tspan><tspan x='10.052739'>decoder</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(171.26674,56.61063)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>u</text>
<text class='f7' x='-17.908699' y='168.363464'>dedup</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d3e8d7'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d3e8d7'>
<path d='M217.08604 95.9145H152.7996C151.69502 95.9145 150.7996 95.01909 150.7996 93.9145V74.81813C150.7996 73.71355 151.69502 72.81813 152.7996 72.81813H217.08604C218.19063 72.81813 219.08604 73.71355 219.08604 74.81813V93.9145C219.08604 95.01909 218.19063 95.9145 217.08604 95.9145ZM150.7996 72.81813'/>
</g>
</g>
</g>
<g transform='translate(158.92744,74.9273)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-17.933315' y='160.02366'>HiFi-GAN<tspan x='-23.611895' y='171.978828'>unit-v</tspan><tspan x='-.708127'>ocoder</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(177.21016,109.10031)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f17' x='-23.611895' y='171.978828'>(</text>
<text class='f15' x='-19.737521' y='171.978828'></text>
<text class='f16' x='-15.586389' y='173.473209'>t</text>
<text class='f17' x='-12.0787' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.7'>
<g transform='translate(184.94283,136.34297)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'/>
</g>
</g>
</g>
<path d='M166.73296 128.27429V137.37906M169.00931 125.99794V139.65541M171.28534 123.72191V141.93144M173.56169 128.27429V137.37906M175.83806 119.16919V146.48416M178.11409 123.72191V141.93144M180.39044 123.72191V141.93144M182.66647 128.27429V137.37906M184.94283 130.55032V135.10303M187.21918 129.41249V135.10303M189.49521 125.99794V139.65541M191.77156 128.27429V137.37906M194.04759 125.99794V139.65541M196.32396 123.72191V141.93144M198.60031 130.55032V135.10303M200.87634 129.41249V136.24086M203.1527 131.6885V133.96484' fill='none'/>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M0 0V27.55276' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,0.0,25.94751)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M85.35823 3.5163V17.74266M85.35823 51.93413V57.62466M85.35823 72.49164V77.2822' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,85.35823,75.67694)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M6.57414 71.43184L31.57433 153.01637M36.98865 188.41655V193.2071' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,36.98865,191.60185)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M85.35823 113.58235V118.37291' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,85.35823,116.76765)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M56.78212 144.34119L37.81288 152.65515' fill='none'/>
<g transform='matrix(-0.91585,0.40138,-0.40138,-0.91585,39.28307,152.01082)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M72.17545 170.71646H129.94283V1.28516H184.94283V7.38518' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,184.94283,5.77992)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
<g transform='matrix(0.7,0.0,0.0,0.7,145.05362,-7.8511)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>Contin<tspan x='3.645502'>uous</tspan><tspan x='26.795353'>decoder</tspan><tspan x='63.621228'>output</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M184.94283 31.5485V37.23903M184.94283 48.92009V53.71065' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,184.94283,52.1054)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M184.94283 67.9776V71.76816' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,184.94283,70.1629)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M184.94283 96.0645V102.16452' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,184.94283,100.55927)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g fill='#000' stroke='#000'>
<path d='M256.07481-17.07181V244.69376' fill='none'/>
</g>
<g transform='translate(277.99165,230.15367)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f10' x='-23.203036' y='171.978828'>S</text>
<text class='f9' x='-11.476905' y='171.978828'>E<tspan x='-1.942227'>A</tspan><tspan x='7.59245'>M</tspan><tspan x='19.302204'>L</tspan><tspan x='27.381279'>E</tspan><tspan x='36.915957'>S</tspan><tspan x='46.450635'>S</tspan></text>
<text class='f10' x='55.985313' y='171.978828'>M</text>
<text class='f10' x='70.426361' y='171.978828'>4</text>
<text class='f10' x='80.33716' y='171.978828'>T</text>
<text class='f9' x='95.693958' y='171.978828'>V</text>
<text class='f10' x='105.228636' y='171.978828'>2</text>
</g>
</g>
</g>
</g>
<g transform='translate(296.50322,-10.14087)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>x</text>
<text class='f7' x='-17.917963' y='168.363464'>te<tspan x='-12.591422'>xt</tspan></text>
<text class='f17' x='-6.939038' y='171.978828'>(</text>
<text class='f15' x='-3.064664' y='171.978828'></text>
<text class='f16' x='1.086468' y='173.473209'>s</text>
<text class='f17' x='5.344821' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.7'>
<g transform='translate(398.33853,0.0)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'/>
</g>
</g>
</g>
<path d='M380.12866-4.55238V4.55238M382.40501-6.82874V6.82874M384.68105-9.10477V9.10477M386.9574-4.55238V4.55238M389.23376-13.65749V13.65749M391.5098-9.10477V9.10477M393.78615-9.10477V9.10477M396.06218-4.55238V4.55238M398.33853-2.27635V2.27635M400.61488-3.41418V2.27635M402.89091-6.82874V6.82874M405.16727-4.55238V4.55238M407.4433-6.82874V6.82874M409.71967-9.10477V9.10477M411.99602-2.27635V2.27635M414.27205-3.41418V3.41418M416.5484-1.13817V1.13817' fill='none'/>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<path d='M430.48175 51.78413H366.19531C365.09073 51.78413 364.19531 50.88872 364.19531 49.78413V19.89265C364.19531 18.78807 365.09073 17.89265 366.19531 17.89265H430.48175C431.58633 17.89265 432.48175 18.78807 432.48175 19.89265V49.78413C432.48175 50.88872 431.58633 51.78413 430.48175 51.78413ZM364.19531 17.89265' fill='none'/>
</g>
</g>
<g transform='translate(369.12361,21.69234)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f5' x='-23.611895' y='150.06102'>Mel-Filterbanks<tspan x='-10.903114' y='161.019924'>e</tspan><tspan x='-6.422636'>xtr</tspan><tspan x='2.955606'>actor</tspan><tspan x='-13.344976' y='171.978828'>(bins</tspan></text>
<text class='f3' x='5.113439' y='171.978828'>=<tspan x='12.280958'>80</tspan></text>
<text class='f5' x='21.496339' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(376.40182,62.12466)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>x</text>
<text class='f7' x='-17.917963' y='168.363464'>speech</text>
<text class='f17' x='3.939403' y='171.978828'>(</text>
<text class='f15' x='7.813777' y='171.978828'></text>
<text class='f16' x='11.964909' y='173.473209'>s</text>
<text class='f17' x='16.223262' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<path d='M346.0171 71.28185H279.9435C278.83891 71.28185 277.9435 70.38643 277.9435 69.28185V30.60274C277.9435 29.49815 278.83891 28.60274 279.9435 28.60274H346.0171C347.12169 28.60274 348.0171 29.49815 348.0171 30.60274V69.28185C348.0171 70.38643 347.12169 71.28185 346.0171 71.28185ZM277.9435 28.60274'/>
</g>
</g>
</g>
<g transform='translate(279.9435,34.50519)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-15.826484' y='148.068492'>T<tspan x='-11.179392'>r</tspan><tspan x='-8.122386'>ansf</tspan><tspan x='9.481394'>or</tspan><tspan x='18.131825'>mer</tspan><tspan x='-16.597732' y='160.02366'>te</tspan><tspan x='-8.988383'>xt</tspan><tspan x='1.005922'>encoder</tspan></text>
<text class='f2' x='-23.446269' y='171.978828'>S</text>
<text class='f1' x='-18.696098' y='171.978828'>E<tspan x='-14.833669'>A</tspan><tspan x='-10.97124'>M</tspan><tspan x='-6.227703'>L</tspan><tspan x='-2.954928'>E</tspan><tspan x='.907501'>S</tspan><tspan x='4.769931'>S</tspan></text>
<text class='f2' x='8.63236' y='171.978828'>M</text>
<text class='f2' x='14.482325' y='171.978828'>4</text>
<text class='f2' x='18.497118' y='171.978828'>T</text>
<text class='f2' x='21.948866' y='171.978828'>-</text>
<text class='f2' x='24.486264' y='171.978828'>N</text>
<text class='f2' x='29.60085' y='171.978828'>L</text>
<text class='f2' x='33.615644' y='171.978828'>L</text>
<text class='f2' x='37.630437' y='171.978828'>B</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<path d='M432.13432 113.43236H364.54274C363.43816 113.43236 362.54274 112.53694 362.54274 111.43236V80.33217C362.54274 79.22758 363.43816 78.33217 364.54274 78.33217H432.13432C433.2389 78.33217 434.13432 79.22758 434.13432 80.33217V111.43236C434.13432 112.53694 433.2389 113.43236 432.13432 113.43236ZM362.54274 78.33217'/>
</g>
</g>
</g>
<g transform='translate(364.54274,80.44516)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-12.268842' y='148.068492'>Conf<tspan x='7.436027'>or</tspan><tspan x='16.086457'>mer</tspan><tspan x='-23.611895' y='160.02366'>speech</tspan><tspan x='9.532389'>encoder</tspan></text>
<text class='f1' x='-12.831944' y='171.978828'>W</text>
<text class='f2' x='-7.498759' y='171.978828'>2</text>
<text class='f1' x='-3.483966' y='171.978828'>V</text>
<text class='f2' x='-.098538' y='171.978828'>-</text>
<text class='f2' x='2.438859' y='171.978828'>B</text>
<text class='f2' x='7.18903' y='171.978828'>E</text>
<text class='f2' x='11.939201' y='171.978828'>R</text>
<text class='f2' x='16.85507' y='171.978828'>T</text>
<text class='f2' x='23.07599' y='171.978828'>2</text>
<text class='f2' x='27.090784' y='171.978828'>.</text>
<text class='f2' x='29.263759' y='171.978828'>0</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fae0cc'>
<path d='M430.48175 144.1912H366.19531C365.09073 144.1912 364.19531 143.29578 364.19531 142.1912V121.42288C364.19531 120.3183 365.09073 119.42288 366.19531 119.42288H430.48175C431.58633 119.42288 432.48175 120.3183 432.48175 121.42288V142.1912C432.48175 143.29578 431.58633 144.1912 430.48175 144.1912ZM364.19531 119.42288'/>
</g>
</g>
</g>
<g transform='translate(382.23155,123.42255)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-22.036078' y='160.02366'>Length<tspan x='-23.611895' y='171.978828'>adaptor</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d7e6f0'>
<path d='M383.00575 188.26656H316.93214C315.82756 188.26656 314.93214 187.37114 314.93214 186.26656V155.16637C314.93214 154.06178 315.82756 153.16637 316.93214 153.16637H383.00575C384.11034 153.16637 385.00575 154.06178 385.00575 155.16637V186.26656C385.00575 187.37114 384.11034 188.26656 383.00575 188.26656ZM314.93214 153.16637'/>
</g>
</g>
</g>
<g transform='translate(316.93214,155.27936)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-15.826484' y='148.068492'>T<tspan x='-11.179392'>r</tspan><tspan x='-8.122386'>ansf</tspan><tspan x='9.481394'>or</tspan><tspan x='18.131825'>mer</tspan><tspan x='-16.597732' y='160.02366'>te</tspan><tspan x='-8.988383'>xt</tspan><tspan x='1.005922'>decoder</tspan></text>
<text class='f2' x='-23.446269' y='171.978828'>S</text>
<text class='f1' x='-18.696098' y='171.978828'>E<tspan x='-14.833669'>A</tspan><tspan x='-10.97124'>M</tspan><tspan x='-6.227703'>L</tspan><tspan x='-2.954928'>E</tspan><tspan x='.907501'>S</tspan><tspan x='4.769931'>S</tspan></text>
<text class='f2' x='8.63236' y='171.978828'>M</text>
<text class='f2' x='14.482325' y='171.978828'>4</text>
<text class='f2' x='18.497118' y='171.978828'>T</text>
<text class='f2' x='21.948866' y='171.978828'>-</text>
<text class='f2' x='24.486264' y='171.978828'>N</text>
<text class='f2' x='29.60085' y='171.978828'>L</text>
<text class='f2' x='33.615644' y='171.978828'>L</text>
<text class='f2' x='37.630437' y='171.978828'>B</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(334.09544,198.60709)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>y</text>
<text class='f7' x='-18.369952' y='168.363464'>te<tspan x='-13.043411'>xt</tspan></text>
<text class='f17' x='-7.391027' y='171.978828'>(</text>
<text class='f15' x='-3.516653' y='171.978828'></text>
<text class='f16' x='.634479' y='173.473209'>t</text>
<text class='f17' x='4.142168' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<path d='M530.34616 31.3985H465.50009C464.39551 31.3985 463.50009 30.50308 463.50009 29.3985V10.43515C463.50009 9.33057 464.39551 8.43515 465.50009 8.43515H530.34616C531.45074 8.43515 532.34616 9.33057 532.34616 10.43515V29.3985C532.34616 30.50308 531.45074 31.3985 530.34616 31.3985ZM463.50009 8.43515'/>
</g>
</g>
</g>
<g transform='translate(465.50009,10.62985)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='160.02366'>subw<tspan x='-1.616574'>ord-length</tspan><tspan x='-18.662042' y='171.978828'>T2U</tspan><tspan x='1.847298'>encoder</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dcdcdc'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dcdcdc'>
<path d='M542.70076 65.00261H453.1455C452.04091 65.00261 451.1455 64.1072 451.1455 63.00261V42.2343C451.1455 41.12971 452.04091 40.2343 453.1455 40.2343H542.70076C543.80534 40.2343 544.70076 41.12971 544.70076 42.2343V63.00261C544.70076 64.1072 543.80534 65.00261 542.70076 65.00261ZM451.1455 40.2343'/>
</g>
</g>
</g>
<g transform='translate(453.1455,44.23396)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='160.02366'>subw<tspan x='-1.616574'>ord-to-char</tspan><tspan x='44.56958'>acter</tspan><tspan x='-1.091427' y='171.978828'>upsampler</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<path d='M544.60057 86.60672H451.24568C450.1411 86.60672 449.24568 85.7113 449.24568 84.60672V75.83841C449.24568 74.73383 450.1411 73.83841 451.24568 73.83841H544.60057C545.70515 73.83841 546.60057 74.73383 546.60057 75.83841V84.60672C546.60057 85.7113 545.70515 86.60672 544.60057 86.60672ZM449.24568 73.83841'/>
</g>
</g>
</g>
<g transform='translate(451.24568,77.83807)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>Unit<tspan x='-4.15322'>dur</tspan><tspan x='9.428172'>ation</tspan><tspan x='32.577906'>predictor</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dcdcdc'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dcdcdc'>
<path d='M532.45508 120.21083H463.39117C462.28659 120.21083 461.39117 119.31541 461.39117 118.21083V97.44252C461.39117 96.33794 462.28659 95.44252 463.39117 95.44252H532.45508C533.55966 95.44252 534.45508 96.33794 534.45508 97.44252V118.21083C534.45508 119.31541 533.55966 120.21083 532.45508 120.21083ZM461.39117 95.44252'/>
</g>
</g>
</g>
<g transform='translate(463.39117,99.44218)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='160.02366'>char<tspan x='-5.298264'>acter-to-unit</tspan><tspan x='-11.298831' y='171.978828'>upsampler</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fff'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#fff'>
<path d='M616.03241 86.66374H563.12692C562.02234 86.66374 561.12692 85.76833 561.12692 84.66374V75.78139C561.12692 74.6768 562.02234 73.78139 563.12692 73.78139H616.03241C617.137 73.78139 618.03241 74.6768 618.03241 75.78139V84.66374C618.03241 85.76833 617.137 86.66374 616.03241 86.66374ZM561.12692 73.78139'/>
</g>
</g>
</g>
<g transform='translate(574.7979,77.8951)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>Aligner</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(580.92137,94.50427)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>u</text>
<text class='f7' x='-17.908699' y='168.363464'>dup</text>
</g>
</g>
</g>
</g>
<g transform='translate(573.86458,57.57387)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>y</text>
<text class='f7' x='-18.369952' y='168.363464'>te<tspan x='-13.043411'>xt-char</tspan></text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-dasharray='3.0,3.0' stroke-dashoffset='0.0'>
<path d='M555.43637 55.6314V101.81374H623.72296V55.6314ZM623.72296 101.81374' fill='none'/>
</g>
</g>
<g transform='matrix(0.8,0.0,0.0,0.8,556.57693,106.1047)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>T<tspan x='-18.964802'>r</tspan><tspan x='-15.907797'>aining</tspan><tspan x='11.974185'>super</tspan><tspan x='35.928503'>vision</tspan></text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#dfd8eb'>
<path d='M535.40955 137.58243H460.4367C459.33212 137.58243 458.4367 136.68701 458.4367 135.58243V128.20135C458.4367 127.09677 459.33212 126.20135 460.4367 126.20135H535.40955C536.51413 126.20135 537.40955 127.09677 537.40955 128.20135V135.58243C537.40955 136.68701 536.51413 137.58243 535.40955 137.58243ZM458.4367 126.20135'/>
</g>
</g>
</g>
<g transform='translate(460.4367,128.56215)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>NAR<tspan x='-1.001475'>unit</tspan><tspan x='16.886066'>decoder</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(487.94438,145.42296)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f15' x='-23.611895' y='171.978828'>u</text>
<text class='f7' x='-17.908699' y='168.363464'>dup</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d3e8d7'>
<g stroke='#323232'>
<g stroke-width='0.3'>
<g fill='#d3e8d7'>
<path d='M530.06635 184.72684H465.7799C464.67532 184.72684 463.7799 183.83142 463.7799 182.72684V163.63046C463.7799 162.52588 464.67532 161.63046 465.7799 161.63046H530.06635C531.17093 161.63046 532.06635 162.52588 532.06635 163.63046V182.72684C532.06635 183.83142 531.17093 184.72684 530.06635 184.72684ZM463.7799 161.63046'/>
</g>
</g>
</g>
<g transform='translate(471.90775,163.73964)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-17.933315' y='160.02366'>HiFi-GAN<tspan x='-23.611895' y='171.978828'>unit-v</tspan><tspan x='-.708127'>ocoder</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g transform='translate(490.19046,197.91264)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f17' x='-23.611895' y='171.978828'>(</text>
<text class='f15' x='-19.737521' y='171.978828'></text>
<text class='f16' x='-15.586389' y='173.473209'>t</text>
<text class='f17' x='-12.0787' y='171.978828'>)</text>
</g>
</g>
</g>
</g>
<g stroke='#323232'>
<g stroke-width='0.7'>
<g transform='translate(497.92313,225.1553)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'/>
</g>
</g>
</g>
<path d='M479.71326 217.08662V226.19139M481.98961 214.81027V228.46774M484.26564 212.53424V230.74377M486.54199 217.08662V226.19139M488.81836 207.98152V235.2965M491.09439 212.53424V230.74377M493.37074 212.53424V230.74377M495.64677 217.08662V226.19139M497.92313 219.36266V223.91536M500.19948 218.22482V223.91536M502.47551 214.81027V228.46774M504.75186 217.08662V226.19139M507.0279 214.81027V228.46774M509.30426 212.53424V230.74377M511.58061 219.36266V223.91536M513.85664 218.22482V225.05319M516.133 220.50084V222.77718' fill='none'/>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M312.9803 0V27.55276' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,312.9803,25.94751)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M398.33853 3.5163V17.74266M398.33853 51.93413V57.62466M398.33853 72.49164V77.2822' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,398.33853,75.67694)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M319.55444 71.43184L344.55463 153.01637M349.96895 188.41655V193.2071' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,349.96895,191.60185)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M398.33853 113.58235V118.37291' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,398.33853,116.76765)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M369.76242 144.34119L350.79318 152.65515' fill='none'/>
<g transform='matrix(-0.91585,0.40138,-0.40138,-0.91585,352.26337,152.01082)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M589.57967 92.50427V87.71371' fill='none'/>
<g transform='matrix(0.0,-1.0,1.0,0.0,589.57967,89.31897)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M589.57967 67.94086V72.73141' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,589.57967,71.12616)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M560.97693 80.22256H547.65054' fill='none'/>
<g transform='matrix(-1.0,0.0,0.0,-1.0,549.2558,80.22256)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M385.15575 170.71646H442.92313V1.28516H497.92313V7.38518' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,497.92313,5.77992)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
<g transform='matrix(0.7,0.0,0.0,0.7,458.03392,-7.8511)'>
<g stroke='none' transform='scale(-1.00375,1.00375)translate(-23.611895,171.978828)scale(-1,-1)'>
<g fill='#000'>
<g stroke='none'>
<text class='f14' x='-23.611895' y='171.978828'>Contin<tspan x='3.645502'>uous</tspan><tspan x='26.795353'>decoder</tspan><tspan x='63.621228'>output</tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M497.92313 31.5485V40.0843M497.92313 65.1526V73.68842M497.92313 86.75671V95.29253M497.92313 120.36082V126.05136M497.92313 137.73242V142.52298' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,497.92313,140.91772)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M497.92313 156.78993V160.58049' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,497.92313,158.97523)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
<g stroke-width='0.6'>
<g fill='#323232' stroke='#323232'>
<path d='M497.92313 184.87683V190.97685' fill='none'/>
<g transform='matrix(0.0,1.0,-1.0,0.0,497.92313,189.3716)'>
<g stroke-dasharray='none' stroke-dashoffset='0.0'>
<g stroke-linejoin='miter'>
<g stroke-linecap='butt'>
<path d='M0 1.1L1.90526 0L0-1.1' fill='none'/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg> |