forked from ericwhyne/darpa_open_catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RATS-pubs.json
1673 lines (1673 loc) · 49.8 KB
/
RATS-pubs.json
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
[
{
"DARPA Program":"RATS",
"Program Teams":[
"LDC"
],
"Title":"Annotation Trees: LDC's Customizable, Extensible, Scalable Annotation Infrastructure",
"Authors":[
"Jonathan Wright",
"Kira Griffitt",
"Joe Ellis",
"Stephanie Strassel",
"Brendan Callahan"
],
"Link":"https://www.ldc.upenn.edu/sites/www.ldc.upenn.edu/files/lrec2012-annotation-trees.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"BBN"
],
"Title":"White Listing and Score Normalization for Keyword Spotting of Noisy Speech",
"Authors":[
"Zhang",
"Bing",
"Richard M. Schwartz",
"Stavros Tsakalidis",
"Long Nguyen",
"Spyros Matsoukas"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"BBN"
],
"Title":"Improvements in Language Identification on the RATS Noisy Speech Corpus",
"Authors":[
"Jeff Ma",
"Bing Zhang",
"Spyros Matsoukas",
"Sri Harish Mallidi",
"Feipeng Li",
"Hynek Hermansky"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"Infinite Structured Support Vector Machines in Speech Recognition",
"Authors":[
"J.Yang",
"R.van Dalen",
"M.J.F. Gales"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":"20140905"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"An Explicit Independence Constraint for Factorised Adaptation in Speech Recognition",
"Authors":[
"Y.-Q. Wang",
"M.J.F. Gales"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"A Confidence-Based Approach for Improving Keyword Hypothesis Scores",
"Authors":[
"M.S.Seigel",
"P.C.Woodland",
"M.J.F. Gales"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"TANDEM System Adaptation Using Multiple Linear Feature Transforms",
"Authors":[
"Y.-Q. Wang",
"M.J.F. Gales"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"Model-Based Approaches for Degraded Channel Modelling in Robust ASR",
"Authors":[
"M.J.F. Gales",
"F. Flego"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"Using Sub-Word-Level Information for Confidence Estimation with Conditional Random Field Models",
"Authors":[
"M.S. Seigel",
"P.C. Woodland"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":"20140910"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"Model-Based Approaches to Adaptive Training in Reverberant Environments",
"Authors":[
"Y.-Q. Wang",
"M.J.F. Gales"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) University of Cambridge"
],
"Title":"Factor Analysis Based VTS Discriminative Adaptive Training",
"Authors":[
"F. Flego",
"M.J.F. Gales"
],
"Link":"http://mi.eng.cam.ac.uk/~mjfg/RATS/index.html",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology"
],
"Title":"Pairwise Discriminative Speaker Verification in the I -Vector Space",
"Authors":[
"S. Cumani",
"N. Brummer",
"L. Burget",
"P. Laface",
"O. Plchot",
"V. Vasilakakis"
],
"Link":"http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6466371&userType=inst&tag=1",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology",
"Brno University of Technology",
"MIT",
"Johns Hopkins University",
"University of Maryland",
"Aalborg University"
],
"Title":"Probabilistic Linear Discriminant Analysis Of I-Vector Posterior Distributions",
"Authors":[
"S. Cumani",
"O. Plchot",
"P. Laface"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2013/cumani_icassp2013_0007644.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology"
],
"Title":"Developing a Speaker Identification System for the DARPA RATS Project",
"Authors":[
"O. Plchot",
"S. Matsoukas",
"P. Matjka",
"N. Dehak",
"J. Ma",
"S. Cumani",
"O. Glembek",
"H. Hemansk",
"N. Mesgarani",
"M. M. Soufifar",
"S. Thomas",
"B. Zhang",
"X. Zhou",
"et al"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2013/plchot_icassp2013_0006768.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology",
"Department of Electronics and Telecommunications",
"NTNU",
"Politecnico di Torino"
],
"Title":"Regularized Subspace n-Gram Model for Phonotactic iVector Extraction",
"Authors":[
"Mehdi Soufifar",
"Lukas Burget",
"Oldrich Plchot",
"Sandro Cumani",
"Jan Cernocky"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2013/soufifar_interspeech2013_IS131171.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology",
"Politecnico di Torino",
"AGNITIO"
],
"Title":"Description and Analysis of the Brno276 system for LRE2011",
"Authors":[
"Niko Brummer",
"Sandro Cumani",
"Ondrej Glembek",
"Martin Karafiat",
"Pavel Matejka",
"Jan Pesan",
"Oldrich Plchot",
"Mehdi Soufifar",
"Edward de Villiers",
"Jan Cernocky"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2012/brummer_odyssey2012_216-223-40.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology",
"Universidad Politcnica de Madrid"
],
"Title":"Phonotactic Language Recognition using i-Vectors and Phoneme Posteriogram Counts",
"Authors":[
"Luis Fernando D'Haro",
"Ondrej Glembek",
"Oldrich Plchot",
"Pavel Matejka",
"Mehdi Soufifar",
"Ricardo Cordoba",
"Jan Cernocky"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2012/d_haro_interspeech2012_558_pp1_4.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology",
"MIT"
],
"Title":"Patrol Team Language Identification System for DARPA RATS P1 Evaluation",
"Authors":[
"Pavel Matejka",
"Oldrich Plchot",
"Mehdi Soufifar",
"Ondrej Glembek",
"Luis Fernando D'Haro",
"Karel Vesely",
"Frantisek Grezl",
"Jeff Ma",
"Spyros Matsoukas",
"Najim Dehak"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2012/matejka_interspeech2012_1295_pp1_4.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology",
"University of Maryland"
],
"Title":"Developing a Speech Activity Detection System for the DARPA RATS Program",
"Authors":[
"Tim Ng",
"Bing Zhang",
"Long Nguyen",
"Spyros Matsoukas",
"Xinhui Zhou",
"Nima Mesgarani",
"Karel Vesely",
"Pavel Matejka"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2012/ng_interspeech2012_1052_pp_1_4.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) Brno University of Technology"
],
"Title":"Speaker Vectors from Subspace Gaussian Mixture Model as Complementary Features for Language Identification",
"Authors":[
"Oldrich Plchot",
"Martin Karafiat",
"Niko Brummer",
"Ondrej Glembek",
"Pavel Matejka",
"Edward de Villiers",
"Jan Cernocky"
],
"Link":"http://www.fit.vutbr.cz/research/groups/speech/publi/2012/plchot_odyssey2012_330-333-41.pdf",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Long, Deep and Wide Neural Nets for Dealing with Unexpected Noise in Machine Recognition of Speech",
"Authors":[
"Hynek Hermansky"
],
"Link":"http://link.springer.com/chapter/10.1007%2F978-3-642-40585-3_2#page-2",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Multistream Recognition of Speech: Dealing With Unknown Unknowns",
"Authors":[
"Hynek Hermansky"
],
"Link":"http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6428587&tag=1",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) JHU"
],
"Title":"Robust Speaker Recognition Using Spectro-Temporal Autoregressive Models",
"Authors":[
"Sri Harish Mallidi",
"Sriram Ganapathy",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~sriram/papers/papers/plp2_spkr.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) LSCP",
"ENS/EHESS/CNRS",
"INRIA/ENS/CNRS",
"Johns Hopkins University"
],
"Title":"Evaluating Speech Features with the Minimal-Pair ABX task: Analysis of the Classical MFC/PLP Pipeline",
"Authors":[
"Thomas Schatz",
"Vijayaditya Peddinti",
"Francis Bach",
"Aren Jansen",
"Hynek Hermansky",
"Emmanuel Dupoux"
],
"Link":"http://old-site.clsp.jhu.edu/~ajansen/papers/IS2013c.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Multi-Stream Recognition of Noisy Speech with Performance Monitoring",
"Authors":[
"Ehsan Variani",
"Feipeng Li",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~variani/MSPM_Interspeech_2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Text-to-Speech Inspired Duration Modeling for Improved Whole-Word Acoustic Models",
"Authors":[
"Keith Kintzley",
"Aren Jansen",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~ajansen/papers/IS2013a.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Weak Top-Down Constraints For Unsupervised Acoustic Model Training",
"Authors":[
"Aren Jansen",
"Samuel Thomas",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~samuel/pdfs/wk_const.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Deep Neural Network Features and Semi-Supervised Training for Low Resource Speech Recognition",
"Authors":[
"Samuel Thomas",
"Michael Seltzer",
"Kenneth Church",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~samuel/pdfs/dnn_semisup_lr.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Effect Of Filter Bandwidth and Spectral Sampling Rate of Analysis Filterbank on Automatic Phoneme Recognition",
"Authors":[
"Feipeng Li",
"Hynek Hermansky"
],
"Link":"http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6639044",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Frequency Offset Correction in Speech Without Detecting Pitch",
"Authors":[
"Pascal Clark",
"Harish Mallidi",
"Aren Jansen",
"Hynek Hermansky"
],
"Link":"http://hltcoe.jhu.edu/uploads/publications/papers/14672_slides.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"A Summary Of The 2012 JHU CLSP Workshop on Zero Resource Speech Technologies and Models of Early Language Acquisition",
"Authors":[
"Aren Jansen",
"Emmanuel Dupoux",
"Sharon Goldwater",
"Mark Johnson",
"Sanjeev Khudanpur",
"Kenneth Church",
"Naomi Feldman",
"Hynek Hermansky",
"Florian Metze",
"Richard Rose",
"Michael Seltzer",
"Pascal Clark",
"Ian Mcgraw",
"Balakrishnan Varadarajan",
"Erin Bennett",
"Benjamin Borschinger",
"Justin Chiu",
"Ewan Dunbar",
"Abdellah Fourtassi",
"David Harwath",
"Chia-Ying Lee",
"Keith Levin",
"Atta Norouzian",
"Vijayaditya Peddinti",
"Rachael Richardson",
"Thomas Schatz",
"Samuel Thomas"
],
"Link":"http://www.lscp.net/persons/dupoux/papers/Jansen_DGJKCFHMRSCMVBBCDFHLLNPRST_zero_resource_workshop.ICASSP.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Mean Temporal Distance: Predicting ASR Error from Temporal Properties of Speech Signal",
"Authors":[
"Hynek Hermansky",
"Ehsan Variani",
"Vijayaditya Peddinti"
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6639105&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6639105",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Filter-Bank Optimization for Frequency Domain Linear Prediction",
"Authors":[
"Vijayaditya Peddinti",
"Hynek Hermansky"
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6639040&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6639040",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Estimating Classifier Performance in Unknown Noise",
"Authors":[
"Ehsan Variani",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~variani/ECPUN_Interspeech_2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Data-Driven Posterior Features for Low Resource Speech Recognition Applications",
"Authors":[
"Samuel Thomas",
"Sriram Ganapathy",
"Aren Jansen",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~ajansen/papers/IS2012f.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Phone Recognition in Critical Bands Using Sub-Band Temporal Modulations",
"Authors":[
"Feipeng Li",
"Sri Harish Mallidi",
"Hynek Hermansky"
],
"Link":"http://www.bibsonomy.org/bibtex/2c299b5bdd7dea9bcf9905568c4dbcaaf/dblp",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"MAP Estimation of Whole-Word Acoustic Models with Dictionary Priors",
"Authors":[
"Keith Kintzley",
"Aren Jansen",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~ajansen/papers/IS2012c.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Inverting the Point Process Model for Fast Phonetic Keyword Search",
"Authors":[
"Keith Kintzley",
"Aren Jansen",
"Kenneth Church",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~ajansen/papers/IS2012d.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Analysis of Temporal Resolution in Frequency Domain Linear Prediction",
"Authors":[
"Sriram Ganapathy",
"Hynek Hermansky"
],
"Link":"http://www.bibsonomy.org/bibtex/21d0a44e428a71b13ffd600631738ecc3/dblp",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team BBN) JHU"
],
"Title":"Multilingual MLP Features For Low-Resource LVCSR Systems",
"Authors":[
"Samuel Thomas",
"Sriram Ganapathy",
"Hynek Hermansky"
],
"Link":"http://old-site.clsp.jhu.edu/~samuel/pdfs/multilingual.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Maryland"
],
"Title":"Automatic Intelligibility Assessment of Pathologic Speech in Head and Neck Cancer Based on Auditory-Inspired Spectro-Temporal Modulations",
"Authors":[
"X. Zhou",
"D. Garcia-Romero",
"N. Mesgarani",
"M. Stone",
"C. Espy-Wilson",
"S. Shamma"
],
"Link":"http://terpconnect.umd.edu/~zxinhui/Interspeech2011/InterSpeech12_SPEECH_PATHOLOGY_head_and_neck_cancer.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) MIT"
],
"Title":"Bayesian Distance Metric Learning on i-Vector for Speaker Verification",
"Authors":[
"X. Fang",
"N. Dehak",
"J. Glass"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) MIT"
],
"Title":"Gaussian Mixture Model Weight Supervector Decomposition and Adaptation",
"Authors":[
"M. H. Bahari",
"N. Dehak",
"H. Van hamme"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"The IBM Speech Activity Detection System for the DARPA RATS Program",
"Authors":[
"G. Saon",
"S. Thomas",
"H. Soltau",
"S. Ganapathy",
"B. Kingsbury"
],
"Link":"http://old-site.clsp.jhu.edu/~sriram/papers/papers/inter2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Using Polynomial Kernel Support Vector Machines for Speaker Verification, in IEEE Letters",
"Authors":[
"Sibel Yaman",
"Jason Pelecanos"
],
"Link":"http://ieeexplore.ieee.org/xpl/articleDetails.jsp?arnumber=6557422",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"The IBM RATS Phase II Speaker Recognition System: Overview and Analysis, in Proc. of Interspeech",
"Authors":[
"Weizhong Zhu",
"Sibel Yaman",
"Jason Pelecanos"
],
"Link":"http://www.interspeech2013.org/",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Unifying PLDA and Polynomial Kernel SVMs, in Proc. of IEEE ICASSP",
"Authors":[
"Sibel Yaman",
"Jason Pelecanos",
"Weizhong Zhu"
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6639161&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6639161",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Frame-Based Phonotactic Language Identification, SLT",
"Authors":[
"Kyu Han",
"Jason Pelecanos"
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6424240&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6424240",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Noisy Channel Adaptation in Language Identification, SLT",
"Authors":[
"Sriram Ganapathy",
"Mohamed Omar",
"Jason Pelecanos"
],
"Link":"http://old-site.clsp.jhu.edu/~sriram/papers/papers/slt.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"On the Use of Non-Linear Polynomial Kernel SVMs in Language Recognition, Interspeech",
"Authors":[
"Sibel Yaman",
"Jason Pelecanos",
"Mohamed Omar"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":"20140910"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Speech Activity Detection for Noisy Data Using Adaptation Techniques, Interspeech",
"Authors":[
"Mohamed Omar"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":"20140910"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Unsupervised Channel Adaptation for Language Identification Using Co-Training, ICASSP",
"Authors":[
"Sriram Ganapathy",
"Mohamed Omar",
"Jason Pelecanos"
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6638990&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6638990",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Trap Language Identification System for RATS Phase II Evaluation, Interspeech",
"Authors":[
"Kyu Han",
"Sriram Ganapathy",
"Ming Li",
"Mohamed Omar",
"Shrikanth Narayanan"
],
"Link":"http://www.interspeech2013.org",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"IBM"
],
"Title":"Enhancing Frequency Shifted Speech Signals in Single Side Band Communication, IEEE Signal Processing Letters",
"Authors":[
"Sriram Ganapathy",
"Jason Pelecanos"
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6627984&url=http%3A%2F%2Fieeexplore.ieee.org%2Fiel7%2F97%2F6615960%2F06627984.pdf%3Farnumber%3D6627984",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California",
"Technical University of Crete"
],
"Title":"Speaker Verification using Simplified and Supervised I-Vector Modeling",
"Authors":[
"Ming Li",
"Andreas Tsiartas",
"Maaren Van Segbroeck",
"Shrikanth Narayanan"
],
"Link":"http://sail.usc.edu/aigaion2/index.php/attachments/single/604",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California"
],
"Title":"Multi-band Long-term Signal Variability Features for Robust Voice Activity Detection",
"Authors":[
"Andreas Tsiartas",
"Theodora Chaspari",
"Nassos Katsamanis",
"Prasanta Ghosh",
"Ming Li",
"Maarten Van Segbroeck",
"Alexandros Potamianos",
"Shrikanth S. Narayanan"
],
"Link":"http://sail.usc.edu/aigaion2/index.php/attachments/single/633",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California"
],
"Title":"TRAP Language Identification System for RATS Phase II Evaluation",
"Authors":[
"Kyu J. Han",
"Sriram Ganapathy",
"Ming Li",
"Mohamed K. Omar",
"Shrikanth Narayanan"
],
"Link":"http://sail.usc.edu/aigaion2/index.php/attachments/single/617",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California"
],
"Title":"A Robust Frontend for VAD: Exploiting Contextual, Discriminative and Spectral Cues of Human Voice",
"Authors":[
"Maarten Van Segbroeck",
"Andreas Tsiartas",
"Shrikanth S. Narayanan"
],
"Link":"http://sail.usc.edu/aigaion2/index.php/attachments/single/624",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California"
],
"Title":"Simplified Supervised I-vector Modeling and Sparse Representation with Application to Robust Language Recognition",
"Authors":[
"Ming Li",
"Shrikanth Narayanan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California"
],
"Title":"A Study on the Effect of Prosodic Emphasis Transfer on Overall Speech Translation Quality",
"Authors":[
"Andreas Tsiartas",
"Panayiotis G. Georgiou",
"Shrikanth S. Narayanan"
],
"Link":"http://sail.usc.edu/aigaion2/index.php/attachments/single/607",
"New Date":"",
"Update Date":"20140626"
},
{
"DARPA Program":"RATS",
"Program Teams":[
"(Team IBM) University of Southern California"
],