-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule_lite.json
7506 lines (7506 loc) · 217 KB
/
schedule_lite.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
[
{
"id": "maincard_5901",
"type": "Break",
"title": "Breakfast",
"authors": [],
"start": "2015-12-07T13:00:00.000Z",
"end": "2015-12-07T14:30:00.000Z",
"room": "220 A"
},
{
"id": "maincard_4895",
"type": "Tutorial",
"title": "Large-Scale Distributed Systems for Training Neural Networks",
"authors": [
"Jeff Dean",
"Oriol Vinyals"
],
"start": "2015-12-07T14:30:00.000Z",
"end": "2015-12-07T16:30:00.000Z",
"room": "Level 2 room 210 E,F"
},
{
"id": "maincard_4891",
"type": "Tutorial",
"title": "Deep Learning",
"authors": [
"Geoffrey E Hinton",
"Yoshua Bengio",
"Yann LeCun"
],
"start": "2015-12-07T14:30:00.000Z",
"end": "2015-12-07T16:30:00.000Z",
"room": "Level 2 room 210 AB"
},
{
"id": "maincard_5907",
"type": "Break",
"title": "Coffee Break",
"authors": [],
"start": "2015-12-07T15:45:00.000Z",
"end": "2015-12-07T16:15:00.000Z",
"room": "210 C"
},
{
"id": "maincard_4892",
"type": "Tutorial",
"title": "Probabilistic Programming",
"authors": [
"Frank Wood"
],
"start": "2015-12-07T18:00:00.000Z",
"end": "2015-12-07T20:00:00.000Z",
"room": "Level 2 room 210 E,F"
},
{
"id": "maincard_4887",
"type": "Tutorial",
"title": "Monte Carlo Inference Methods",
"authors": [
"Iain Murray"
],
"start": "2015-12-07T18:00:00.000Z",
"end": "2015-12-07T20:00:00.000Z",
"room": "Level 2 room 210 AB"
},
{
"id": "maincard_5908",
"type": "Break",
"title": "Coffee Break",
"authors": [],
"start": "2015-12-07T20:00:00.000Z",
"end": "2015-12-07T20:30:00.000Z",
"room": "210 C"
},
{
"id": "maincard_4890",
"type": "Tutorial",
"title": " Introduction to Reinforcement Learning with Function Approximation",
"authors": [
"Rich S Sutton"
],
"start": "2015-12-07T20:30:00.000Z",
"end": "2015-12-07T22:30:00.000Z",
"room": "Level 2 room 210 AB"
},
{
"id": "maincard_4894",
"type": "Tutorial",
"title": "High-Performance Hardware for Machine Learning",
"authors": [
"Bill Dally"
],
"start": "2015-12-07T20:30:00.000Z",
"end": "2015-12-07T22:30:00.000Z",
"room": "Level 2 room 210 E,F"
},
{
"id": "maincard_5788",
"type": "Session",
"title": "Opening Remarks, Awards and Reception",
"authors": [],
"start": "2015-12-07T23:30:00.000Z",
"end": "2015-12-07T23:55:00.000Z",
"room": "210 AB"
},
{
"id": "maincard_5476",
"type": "Poster",
"title": "Texture Synthesis Using Convolutional Neural Networks",
"authors": [
"Leon Gatys",
"Alexander S Ecker",
"Matthias Bethge"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #1"
},
{
"id": "maincard_5539",
"type": "Poster",
"title": "Convolutional Neural Networks with Intra-Layer Recurrent Connections for Scene Labeling",
"authors": [
"Ming Liang",
"Xiaolin Hu",
"Bo Zhang"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #2"
},
{
"id": "maincard_5702",
"type": "Poster",
"title": "Grammar as a Foreign Language",
"authors": [
"Oriol Vinyals",
"Łukasz Kaiser",
"Terry Koo",
"Slav Petrov",
"Ilya Sutskever",
"Geoffrey Hinton"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #3"
},
{
"id": "maincard_5772",
"type": "Poster",
"title": "Recursive Training of 2D-3D Convolutional Networks for Neuronal Boundary Prediction",
"authors": [
"Kisuk Lee",
"Aleks Zlateski",
"Vishwanathan Ashwin",
"H. Sebastian Seung"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #4"
},
{
"id": "maincard_5629",
"type": "Poster",
"title": "Generative Image Modeling Using Spatial LSTMs",
"authors": [
"Lucas Theis",
"Matthias Bethge"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #5"
},
{
"id": "maincard_5463",
"type": "Poster",
"title": "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks",
"authors": [
"Shaoqing Ren",
"Kaiming He",
"Ross Girshick",
"Jian Sun"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #6"
},
{
"id": "maincard_5556",
"type": "Poster",
"title": "Weakly-supervised Disentangling with Recurrent Transformations for 3D View Synthesis",
"authors": [
"Jimei Yang",
"Scott E Reed",
"Ming-Hsuan Yang",
"Honglak Lee"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #7"
},
{
"id": "maincard_5717",
"type": "Poster",
"title": "Exploring Models and Data for Image Question Answering",
"authors": [
"Mengye Ren",
"Ryan Kiros",
"Richard Zemel"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #8"
},
{
"id": "maincard_5661",
"type": "Poster",
"title": "Are You Talking to a Machine? Dataset and Methods for Multilingual Image Question",
"authors": [
"Haoyuan Gao",
"Junhua Mao",
"Jie Zhou",
"Zhiheng Huang",
"Lei Wang",
"Wei Xu"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #9"
},
{
"id": "maincard_5721",
"type": "Poster",
"title": "Parallel Multi-Dimensional LSTM, With Application to Fast Biomedical Volumetric Image Segmentation",
"authors": [
"Marijn F Stollenga",
"Wonmin Byeon",
"Marcus Liwicki",
"Juergen Schmidhuber"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #10"
},
{
"id": "maincard_5735",
"type": "Poster",
"title": "Learning From Small Samples: An Analysis of Simple Decision Heuristics",
"authors": [
"Özgür Şimşek",
"Marcus Buckmann"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #11"
},
{
"id": "maincard_5492",
"type": "Poster",
"title": "3D Object Proposals for Accurate Object Class Detection",
"authors": [
"Xiaozhi Chen",
"Kaustav Kundu",
"Yukun Zhu",
"Andrew G Berneshawi",
"Huimin Ma",
"Sanja Fidler",
"Raquel Urtasun"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #12"
},
{
"id": "maincard_5726",
"type": "Poster",
"title": "The Poisson Gamma Belief Network",
"authors": [
"Mingyuan Zhou",
"Yulai Cong",
"Bo Chen"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #13"
},
{
"id": "maincard_5752",
"type": "Poster",
"title": "Semi-Supervised Factored Logistic Regression for High-Dimensional Neuroimaging Data",
"authors": [
"Danilo Bzdok",
"Michael Eickenberg",
"Olivier Grisel",
"Bertrand Thirion",
"Gael Varoquaux"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #14"
},
{
"id": "maincard_5733",
"type": "Poster",
"title": "BinaryConnect: Training Deep Neural Networks with binary weights during propagations",
"authors": [
"Matthieu Courbariaux",
"Yoshua Bengio",
"Jean-Pierre David"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #15"
},
{
"id": "maincard_5620",
"type": "Poster",
"title": "Learning to Transduce with Unbounded Memory",
"authors": [
"Edward Grefenstette",
"Karl Moritz Hermann",
"Mustafa Suleyman",
"Phil Blunsom"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #16"
},
{
"id": "maincard_5674",
"type": "Poster",
"title": "Spectral Representations for Convolutional Neural Networks",
"authors": [
"Oren Rippel",
"Jasper Snoek",
"Ryan P Adams"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #17"
},
{
"id": "maincard_5678",
"type": "Poster",
"title": "A Theory of Decision Making Under Dynamic Context",
"authors": [
"Michael Shvartsman",
"Vaibhav Srivastava",
"Jonathan D Cohen"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #18"
},
{
"id": "maincard_5531",
"type": "Poster",
"title": "Bidirectional Recurrent Neural Networks as Generative Models",
"authors": [
"Mathias Berglund",
"Tapani Raiko",
"Mikko Honkala",
"Leo Kärkkäinen",
"Akos Vetek",
"Juha T Karhunen"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #19"
},
{
"id": "maincard_5677",
"type": "Poster",
"title": "Recognizing retinal ganglion cells in the dark",
"authors": [
"Emile Richard",
"Georges A Goetz",
"E. J. Chichilnisky"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #20"
},
{
"id": "maincard_5720",
"type": "Poster",
"title": "A Recurrent Latent Variable Model for Sequential Data",
"authors": [
"Junyoung Chung",
"Kyle Kastner",
"Laurent Dinh",
"Kratarth Goel",
"Aaron C Courville",
"Yoshua Bengio"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #21"
},
{
"id": "maincard_5500",
"type": "Poster",
"title": "Deep Knowledge Tracing",
"authors": [
"Chris Piech",
"Jonathan Bassen",
"Jonathan Huang",
"Surya Ganguli",
"Mehran Sahami",
"Leonidas J Guibas",
"Jascha Sohl-Dickstein"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #22"
},
{
"id": "maincard_5676",
"type": "Poster",
"title": "Deep Temporal Sigmoid Belief Networks for Sequence Modeling",
"authors": [
"Zhe Gan",
"Chunyuan Li",
"Ricardo Henao",
"David E Carlson",
"Lawrence Carin"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #23"
},
{
"id": "maincard_5680",
"type": "Poster",
"title": "Hidden Technical Debt in Machine Learning Systems",
"authors": [
"D. Sculley",
"Gary Holt",
"Daniel Golovin",
"Eugene Davydov",
"Todd Phillips",
"Dietmar Ebner",
"Vinay Chaudhary",
"Michael Young",
"JF Crespo",
"Dan Dennison"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #24"
},
{
"id": "maincard_5529",
"type": "Poster",
"title": "Statistical Model Criticism using Kernel Two Sample Tests",
"authors": [
"James R Lloyd",
"Zoubin Ghahramani"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #25"
},
{
"id": "maincard_5762",
"type": "Poster",
"title": "Calibrated Structured Prediction",
"authors": [
"Volodymyr Kuleshov",
"Percy S Liang"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #26"
},
{
"id": "maincard_5671",
"type": "Poster",
"title": "A Bayesian Framework for Modeling Confidence in Perceptual Decision Making",
"authors": [
"Koosha Khalvati",
"Rajesh P Rao"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #27"
},
{
"id": "maincard_5761",
"type": "Poster",
"title": "Dependent Multinomial Models Made Easy: Stick-Breaking with the Polya-gamma Augmentation",
"authors": [
"Scott Linderman",
"Matthew Johnson",
"Ryan P Adams"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #28"
},
{
"id": "maincard_5563",
"type": "Poster",
"title": "Scalable Adaptation of State Complexity for Nonparametric Hidden Markov Models",
"authors": [
"Mike Hughes",
"Will T Stephenson",
"Erik Sudderth"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #29"
},
{
"id": "maincard_5513",
"type": "Poster",
"title": "Robust Feature-Sample Linear Discriminant Analysis for Brain Disorders Diagnosis",
"authors": [
"Ehsan Adeli-Mosabbeb",
"Kim-Han Thung",
"Le An",
"Feng Shi",
"Dinggang Shen"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #30"
},
{
"id": "maincard_5670",
"type": "Poster",
"title": "Learning spatiotemporal trajectories from manifold-valued longitudinal data",
"authors": [
"Jean-Baptiste SCHIRATTI",
"Stéphanie ALLASSONNIERE",
"Olivier Colliot",
"Stanley DURRLEMAN"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #31"
},
{
"id": "maincard_5534",
"type": "Poster",
"title": "Hessian-free Optimization for Learning Deep Multidimensional Recurrent Neural Networks",
"authors": [
"Minhyung Cho",
"Chandra Dhir",
"Jaehyung Lee"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #32"
},
{
"id": "maincard_5581",
"type": "Poster",
"title": "Scalable Inference for Gaussian Process Models with Black-Box Likelihoods",
"authors": [
"Amir Dezfouli",
"Edwin Bonilla",
"Edwin V Bonilla"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #33"
},
{
"id": "maincard_5687",
"type": "Poster",
"title": "Variational Dropout and the Local Reparameterization Trick",
"authors": [
"Diederik P Kingma",
"Tim Salimans",
"Max Welling"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #34"
},
{
"id": "maincard_5603",
"type": "Poster",
"title": "Infinite Factorial Dynamical Model",
"authors": [
"Isabel Valera",
"Francisco J. R. Ruiz",
"Lennart Svensson",
"Fernando Perez-Cruz"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #35"
},
{
"id": "maincard_5643",
"type": "Poster",
"title": "Variational Information Maximisation for Intrinsically Motivated Reinforcement Learning",
"authors": [
"Shakir Mohamed",
"Danilo Jimenez Rezende"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #36"
},
{
"id": "maincard_5771",
"type": "Poster",
"title": "Copula variational inference",
"authors": [
"Dustin Tran",
"David Blei",
"Edo M Airoldi"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #37"
},
{
"id": "maincard_5579",
"type": "Poster",
"title": "Fast Second Order Stochastic Backpropagation for Variational Inference",
"authors": [
"Kai Fan",
"Ziteng Wang",
"Jeff Beck",
"James Kwok",
"Katherine A Heller"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #38"
},
{
"id": "maincard_5501",
"type": "Poster",
"title": "Rethinking LDA: Moment Matching for Discrete ICA",
"authors": [
"Anastasia Podosinnikova",
"Francis Bach",
"Simon Lacoste-Julien"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #39"
},
{
"id": "maincard_5768",
"type": "Poster",
"title": "Model-Based Relative Entropy Stochastic Search",
"authors": [
"Abbas Abdolmaleki",
"Rudolf Lioutikov",
"Jan R Peters",
"Nuno Lau",
"Luis Pualo Reis",
"Gerhard Neumann"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #40"
},
{
"id": "maincard_5631",
"type": "Poster",
"title": "Supervised Learning for Dynamical System Learning",
"authors": [
"Ahmed Hefny",
"Carlton Downey",
"Geoffrey J Gordon"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #41"
},
{
"id": "maincard_5775",
"type": "Poster",
"title": "Expectation Particle Belief Propagation",
"authors": [
"Thibaut Lienart",
"Yee Whye Teh",
"Arnaud Doucet"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #42"
},
{
"id": "maincard_5770",
"type": "Poster",
"title": "Embedding Inference for Structured Multilabel Prediction",
"authors": [
"Farzaneh Mirzazadeh",
"Siamak Ravanbakhsh",
"Nan Ding",
"Dale Schuurmans"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #43"
},
{
"id": "maincard_5655",
"type": "Poster",
"title": "Tractable Learning for Complex Probability Queries",
"authors": [
"Jessa Bekker",
"Guy Van den Broeck",
"Arthur Choi",
"Adnan Darwiche",
"Jesse Davis"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #44"
},
{
"id": "maincard_5455",
"type": "Poster",
"title": "Double or Nothing: Multiplicative Incentive Mechanisms for Crowdsourcing",
"authors": [
"Nihar Bhadresh Shah",
"Denny Zhou"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #45"
},
{
"id": "maincard_5693",
"type": "Poster",
"title": "Local Expectation Gradients for Black Box Variational Inference",
"authors": [
"Michalis Titsias",
"Miguel Lázaro-Gredilla"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #46"
},
{
"id": "maincard_5638",
"type": "Poster",
"title": "Learning with a Wasserstein Loss",
"authors": [
"Charlie Frogner",
"Chiyuan Zhang",
"Hossein Mobahi",
"Mauricio Araya",
"Tomaso A Poggio"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #47"
},
{
"id": "maincard_5748",
"type": "Poster",
"title": "Principal Geodesic Analysis for Probability Measures under the Optimal Transport Metric",
"authors": [
"Vivien Seguy",
"Marco Cuturi"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #48"
},
{
"id": "maincard_5470",
"type": "Poster",
"title": "Fast and Accurate Inference of Plackett–Luce Models",
"authors": [
"Lucas Maystre",
"Matthias Grossglauser"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #49"
},
{
"id": "maincard_5589",
"type": "Poster",
"title": "BACKSHIFT: Learning causal cyclic graphs from unknown shift interventions",
"authors": [
"Dominik Rothenhäusler",
"Christina Heinze",
"Jonas Peters",
"Nicolai Meinshausen"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #50"
},
{
"id": "maincard_5708",
"type": "Poster",
"title": "Learning with Relaxed Supervision",
"authors": [
"Jacob Steinhardt",
"Percy S Liang"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #51"
},
{
"id": "maincard_5754",
"type": "Poster",
"title": "M-Statistic for Kernel Change-Point Detection",
"authors": [
"Shuang Li",
"Yao Xie",
"Hanjun Dai",
"Le Song"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #52"
},
{
"id": "maincard_5633",
"type": "Poster",
"title": "Fast Two-Sample Testing with Analytic Representations of Probability Measures",
"authors": [
"Kacper P Chwialkowski",
"Aaditya Ramdas",
"Dino Sejdinovic",
"Arthur Gretton"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #53"
},
{
"id": "maincard_5699",
"type": "Poster",
"title": "Adversarial Prediction Games for Multivariate Losses",
"authors": [
"Hong Wang",
"Wei Xing",
"Kaiser Asif",
"Brian Ziebart"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #54"
},
{
"id": "maincard_5618",
"type": "Poster",
"title": "Regressive Virtual Metric Learning",
"authors": [
"Michaël Perrot",
"Amaury Habrard"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #55"
},
{
"id": "maincard_5601",
"type": "Poster",
"title": "Halting in Random Walk Kernels",
"authors": [
"Mahito Sugiyama",
"Karsten Borgwardt"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #56"
},
{
"id": "maincard_5747",
"type": "Poster",
"title": "Rate-Agnostic (Causal) Structure Learning",
"authors": [
"Sergey Plis",
"David Danks",
"Cynthia Freeman",
"Vince Calhoun"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #57"
},
{
"id": "maincard_5715",
"type": "Poster",
"title": "Online Prediction at the Limit of Zero Temperature",
"authors": [
"Mark Herbster",
"Stephen Pasteris",
"Shaona Ghosh"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #58"
},
{
"id": "maincard_5572",
"type": "Poster",
"title": "Lifted Symmetry Detection and Breaking for MAP Inference",
"authors": [
"Tim Kopp",
"Parag Singla",
"Henry Kautz"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #59"
},
{
"id": "maincard_5575",
"type": "Poster",
"title": "Bandits with Unobserved Confounders: A Causal Approach",
"authors": [
"Elias Bareinboim",
"Andrew Forney",
"Judea Pearl"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #60"
},
{
"id": "maincard_5732",
"type": "Poster",
"title": "Sample Complexity Bounds for Iterative Stochastic Policy Optimization",
"authors": [
"Marin Kobilarov"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #61"
},
{
"id": "maincard_5712",
"type": "Poster",
"title": "Basis refinement strategies for linear value function approximation in MDPs",
"authors": [
"Gheorghe Comanici",
"Doina Precup",
"Prakash Panangaden"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #62"
},
{
"id": "maincard_5583",
"type": "Poster",
"title": "Probabilistic Variational Bounds for Graphical Models",
"authors": [
"Qiang Liu",
"John W Fisher III",
"Alex T Ihler"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #63"
},
{
"id": "maincard_5659",
"type": "Poster",
"title": "On the Convergence of Stochastic Gradient MCMC Algorithms with High-Order Integrators",
"authors": [
"Changyou Chen",
"Nan Ding",
"Lawrence Carin"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #64"
},
{
"id": "maincard_5647",
"type": "Poster",
"title": "An Active Learning Framework using Sparse-Graph Codes for Sparse Polynomials and Graph Sketching",
"authors": [
"Xiao Li",
"Kannan Ramchandran"
],
"start": "2015-12-08T00:00:00.000Z",
"end": "2015-12-08T04:59:00.000Z",
"room": "210 C #65"
},
{
"id": "maincard_5744",
"type": "Poster",
"title": "Discrete Rényi Classifiers",
"authors": [
"Meisam Razaviyayn",
"Farzan Farnia",
"David Tse"
],
"start": "2015-12-08T00:00:00.000Z",