-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2706 lines (2531 loc) · 159 KB
/
index.html
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
<!DOCTYPE html>
<!-- saved from url=(0033)https://OFA-Sys.github.io/Demo_CTTS/ -->
<html lang="en-US"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Begin Jekyll SEO tag v2.7.1 -->
<title>Contextual Expressive Text-to-Speech</title>
<meta name="generator" content="Jekyll v3.9.0">
<meta property="og:title" content="Contextual Expressive Text-to-Speech">
<meta property="og:locale" content="en_US">
<link rel="canonical" href="https://OFA-Sys.github.io/Demo_CTTS/">
<link rel="canonical" href="https://OFA-Sys.github.io/Demo_CTTS/">
<meta property="og:url" content="https://OFA-Sys.github.io/Demo_CTTS/">
<meta name="twitter:card" content="summary">
<!-- End Jekyll SEO tag -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<link rel="stylesheet" href="style.css">
</head>
<body data-new-gr-c-s-check-loaded="14.1001.0" data-gr-ext-installed="">
<section class="page-header">
<!-- <h1 class="project-name">Demo PAGE</h1> -->
<!-- <h2 class="project-tagline"></h2> -->
</section>
<section class="main-content">
<h1 id=""><center>Contextual Expressive Text-to-Speech</center></h1>
<center> Jianhong Tu<sup>1,2,*</sup>, Zeyu Cui<sup>1,*</sup>, Xiaohuan Zhou<sup>1</sup>, Siqi Zheng<sup>1</sup>, Kai Hu<sup>1</sup>, Ju Fan<sup>2</sup>, Chang Zhou<sup>1,†</sup></center>
<center> <sup>1</sup> DAMO Academy, Alibaba Group, China</center>
<center> <sup>2</sup> Renmin University, China</center>
<h2>0. Contents</h2>
<ol>
<li><a href="#abstract">Abstract</a></li>
<li><a href="#transfer">Demos -- Expressive speech synthesis on EmoV-DB test set. </a></li>
<li><a href="#prediction">Demos -- Zeroshot expressive speech synthesis on novel "Love in the Time of Cholera" </a></li>
<li><a href="#control">Demos -- Zeroshot expressive speech synthesis on handwritten context </a></li>
</ol>
<br><br>
<h2 id="abstract">1. Abstract<a name="abstract"></a></h2>
<p> The goal of expressive Text-to-speech (TTS) is to synthesize natural speech with desired content, prosody, emotion, or timbre, in high expressiveness. Most of previous studies attempt to generate speech from given labels of styles and emotions, which over-simplifies the problem by classifying styles and emotions into a fixed number of pre-defined categories. In this paper, we introduce a new task setting, Contextual TTS (CTTS). The main idea of CTTS is that how a person speaks depends on the particular context she is in, where the context can typically be represented as text. Thus, in the CTTS task, we propose to utilize such context to guide the speech synthesis process instead of relying on explicit labels of styles and emotions. To achieve this task, we construct a synthetic dataset and develop an effective framework. Experiments show that our framework can generate high-quality expressive speech based on the given context both in synthetic datasets and real-world scenarios. </p>
<center><img src='fig/frame2.png' style="width: 600px;"></center>
<br><br>
<h2>2. Demos -- Expressive speech synthesis on EmoV-DB<a name="transfer"></a></h2>
<h3>Corresponding to Section 3.2 in our paper, below lists the samples that are synthesized on EmoV-DB dataset. We compared M-CTTS with M-TTS, M-LTTS, M-CTTS-NT.</h3>
<p> .</p>
<ul style="height: 350px; overflow: scroll; color:#060606;
background-color: #afcece;
border: solid 2px rgb(86, 83, 83);
scrollbar-face-color: #889B9F;
scrollbar-shadow-color: #3D5054;
scrollbar-highlight-color: #C3D6DA;
scrollbar-3dlight-color: #3D5054;
scrollbar-darkshadow-color: #85989C;
scrollbar-track-color: #95A6AA;
scrollbar-arrow-color: #FFD6DA;">
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> the art in the alley behind it is cool too !</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> From that moment his friendship for Belize turns to hatred and jealousy. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_amused_16-28_0017.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_amused_16-28_0017.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_amused_16-28_0017.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_amused_16-28_0017.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_amused_16-28_0017.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> this is the best yarn store in the metro area.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Shall I carry you. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_amused_85-112_0098.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_amused_85-112_0098.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_amused_85-112_0098.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_amused_85-112_0098.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_amused_85-112_0098.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> extremely attentive and genuinely a good person.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> She had been thoroughly and efficiently mauled. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_amused_169-196_0177.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_amused_169-196_0177.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_amused_169-196_0177.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_amused_169-196_0177.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_amused_169-196_0177.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> they loved the rock climb. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> The questions may have come vaguely in his mind. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_amused_169-196_0185.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_amused_169-196_0185.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_amused_169-196_0185.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_amused_169-196_0185.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_amused_169-196_0185.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<!-- adding -->
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> the wait staff is extremely attractive and friendly ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> I don't know why you're here at all. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_amused_196-224_0221.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_amused_196-224_0221.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_amused_196-224_0221.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_amused_196-224_0221.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_amused_196-224_0221.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> it 's good solid food. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> I do not blame you for anything; remember that. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_amused_281-308_0281.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_amused_281-308_0281.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_amused_281-308_0281.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_amused_281-308_0281.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_amused_281-308_0281.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> it tasted like melted plastic and had the same tough consistency. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> For the twentieth time that evening the two men shook hands. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_anger_1-28_0003.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_anger_1-28_0003.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_anger_1-28_0003.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_anger_1-28_0003.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_anger_1-28_0003.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> needless to say , i will not be returning to this place ever again. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> What was the object of your little sensation. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_anger_57-84_0071.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_anger_57-84_0071.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_anger_57-84_0071.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_anger_57-84_0071.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_anger_57-84_0071.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> lost a long time customer ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Red-Eye swung back and forth on the branch farther down. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_anger_309-336_0335.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_anger_309-336_0335.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_anger_309-336_0335.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_anger_309-336_0335.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_anger_309-336_0335.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> however , the tech said nothing to me about this. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> It seems like a strange pointing of the hand of God. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Bea</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/bea_bea_anger_169-196_0141.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/bea_bea_anger_169-196_0141.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/bea_bea_anger_169-196_0141.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/bea_bea_anger_169-196_0141.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/bea_bea_anger_169-196_0141.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> the staff is awesome and location is right in the heart of old town ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> The men stared into each other's face. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_amused_57-84_0062.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_amused_57-84_0062.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_amused_57-84_0062.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_amused_57-84_0062.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_amused_57-84_0062.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> had dinner here last night and it was great. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Yes, it was a man who asked, a stranger. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_amused_57-84_0063.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_amused_57-84_0063.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_amused_57-84_0063.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_amused_57-84_0063.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_amused_57-84_0063.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> fantastic place to see a show as every seat is a great seat ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> He had barely entered this when he saw the glow of a fire. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_amused_85-94_0094.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_amused_85-94_0094.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_amused_85-94_0094.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_amused_85-94_0094.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_amused_85-94_0094.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> this was the best i have ever had ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Was it the rendezvous of those who were striving to work his ruin. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_amused_113-136_0116.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_amused_113-136_0116.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_amused_113-136_0116.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_amused_113-136_0116.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_amused_113-136_0116.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> these two women are professionals. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Philip began to feel that he had foolishly overestimated his strength. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Amused, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_amused_113-136_0133.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_amused_113-136_0133.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_amused_113-136_0133.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_amused_113-136_0133.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_amused_113-136_0133.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> um , yah , it does n't need replacing just yet. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Since then some mysterious force has been fighting us at every step. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_29-56_0032.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_29-56_0032.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_29-56_0032.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_29-56_0032.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_29-56_0032.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> this is the worst walmart neighborhood market out of any of them. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> His face was streaming with blood. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_57-84_0082.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_57-84_0082.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_57-84_0082.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_57-84_0082.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_57-84_0082.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> gammage itself however is not so amazing. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> She added, with genuine sympathy in her face and voice. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_113-140_0117.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_113-140_0117.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_113-140_0117.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_113-140_0117.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_113-140_0117.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> we stood there in shock , because we never expected this. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> He was determined now to maintain a more certain hold upon himself. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_113-140_0125.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_113-140_0125.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_113-140_0125.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_113-140_0125.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_113-140_0125.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> one was for my dog , and one was for my wife 's dog. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> For a time the exciting thrill of his adventure was gone. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_169-196_0191.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_169-196_0191.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_169-196_0191.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_169-196_0191.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_169-196_0191.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> the falafel 's looked like chicken nuggets , and were lacking flavor. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Why, the average review is more nauseating than cod liver oil. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_225-252_0234.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_225-252_0234.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_225-252_0234.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_225-252_0234.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_225-252_0234.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> not even real brown sauce. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> He cried in such genuine dismay that she broke into hearty laughter.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_225-252_0239.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_225-252_0239.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_225-252_0239.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_225-252_0239.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_225-252_0239.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> had to returned one entree because too cold. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> He was the soul of devotion to his employers.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_225-252_0244.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_225-252_0244.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_225-252_0244.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_225-252_0244.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_225-252_0244.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> uneven pieces and falling apart -- i paid for that. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> It is very plausible to such people, a most convincing hypothesis.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_281-308_0302.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_281-308_0302.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_281-308_0302.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_281-308_0302.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_281-308_0302.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> this is the worst walmart neighborhood market out of any of them. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> They are greatly delighted with anything that is bright or giveth a sound.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_337-364_0347.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_337-364_0347.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_337-364_0347.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_337-364_0347.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_337-364_0347.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> this room that he found also reeked of smoke ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> I'm sure going along with you all, Elijah.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_337-364_0352.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_337-364_0352.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_337-364_0352.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_337-364_0352.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_337-364_0352.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> uneven pieces and falling apart -- i paid for that. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> There's too much of the schoolboy in me.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_449-476_0459.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_449-476_0459.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_449-476_0459.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_449-476_0459.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_449-476_0459.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> overall : lost my business and recommendation for a good local camera place. </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Tom Spink has a harpoon.</td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Label</strong></td>
<td style="text-align: left" colspan=5> Emotion: Anger, Speaker: Jenie</td>
</tr>
<tr>
<td style="text-align: center" rowspan=2><strong>Performance</strong></td>
<td style="text-align: center" colspan=1> <strong>Ref </strong></center</td>
<td style="text-align: center" colspan=1> <strong>M-TTS </strong></td>
<td style="text-align: center" colspan=1> <strong>M-CTTS </strong></td>
<td style="text-align: center" colspan=1><strong> M-LTTS</strong> </td>
<td style="text-align: center" colspan=1> <strong>M-CTTS-NT </strong></td>
</tr>
<tr>
<td style="text-align: left"><audio src="samples/test/ref/jenie_jenie_anger_477-504_0480.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-TTS/jenie_jenie_anger_477-504_0480.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS/jenie_jenie_anger_477-504_0480.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-LTTS/jenie_jenie_anger_477-504_0480.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
<td style="text-align: left"><audio src="samples/test/M-CTTS-NT/jenie_jenie_anger_477-504_0480.wav.mp3" style="width: 150px;" controls="" preload=""></audio></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td style="text-align: center"><strong>Context</strong></td>
<td style="text-align: left" colspan=5> let me tell you , this place was far from busy ! </td>
</tr>
<tr>
<td style="text-align: center" rowspan=1><strong>Content</strong></td>
<td style="text-align: left" colspan=5> Both Johnny and his mother shuffled their feet as they walked.</td>
</tr>