forked from sandeep82945/PeerDetection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsFyTZEqmUY.pdf.json
More file actions
1209 lines (1209 loc) · 78.8 KB
/
sFyTZEqmUY.pdf.json
File metadata and controls
1209 lines (1209 loc) · 78.8 KB
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
{
"abstractText": "Generative models trained on internet data have revolutionized how text, image, and video content can be created. Perhaps the next milestone for generative models is to simulate realistic experience in response to actions taken by humans, robots, and other interactive agents. Applications of a real-world simulator range from controllable content creation in games and movies, to training embodied agents purely in simulation that can be directly deployed in the real world. We explore the possibility of learning a universal simulator (UniSim) of real-world interaction through generative modeling. We first make the important observation that natural datasets available for learning a real-world simulator are often rich along different axes (e.g., abundant objects in image data, densely sampled actions in robotics data, and diverse movements in navigation data). With careful orchestration of diverse datasets, each providing a different aspect of the overall experience, UniSim can emulate how humans and agents interact with the world by simulating the visual outcome of both high-level instructions such as \u201copen the drawer\u201d and low-level controls such as \u201cmove by x, y\u201d from otherwise static scenes and objects. There are numerous use cases for such a real-world simulator. As an example, we use UniSim to train both high-level vision-language planners and low-level reinforcement learning policies, each of which exhibit zero-shot real-world transfer after training purely in a learned real-world simulator. We also show that other types of intelligence such as video captioning models can benefit from training with simulated experience in UniSim, opening up even wider applications. Video demos can be found at anonymous-papers-submissions.github.io.",
"authors": [],
"id": "SP:85565efbff8f2acb90a284bd0efd37d92e953e3c",
"references": [
{
"authors": [
"Alessandro Achille",
"Stefano Soatto"
],
"title": "A separation principle for control in the age of deep learning",
"venue": "Annual Review of Control, Robotics, and Autonomous Systems,",
"year": 2018
},
{
"authors": [
"Peter Anderson",
"Qi Wu",
"Damien Teney",
"Jake Bruce",
"Mark Johnson",
"Niko S\u00fcnderhauf",
"Ian Reid",
"Stephen Gould",
"Anton Van Den Hengel"
],
"title": "Vision-and-language navigation: Interpreting visually-grounded navigation instructions in real environments",
"venue": "In Proceedings of the IEEE conference on computer vision and pattern recognition,",
"year": 2018
},
{
"authors": [
"Marcin Andrychowicz",
"Filip Wolski",
"Alex Ray",
"Jonas Schneider",
"Rachel Fong",
"Peter Welinder",
"Bob McGrew",
"Josh Tobin",
"Pieter Abbeel",
"Wojciech Zaremba"
],
"title": "Hindsight experience replay",
"venue": "In Advances in Neural Information Processing Systems",
"year": 2017
},
{
"authors": [
"Rohan Anil",
"Andrew M Dai",
"Orhan Firat",
"Melvin Johnson",
"Dmitry Lepikhin",
"Alexandre Passos",
"Siamak Shakeri",
"Emanuel Taropa",
"Paige Bailey",
"Zhifeng Chen"
],
"title": "Palm 2 technical report",
"venue": "arXiv preprint arXiv:2305.10403,",
"year": 2023
},
{
"authors": [
"Andreas Blattmann",
"Robin Rombach",
"Huan Ling",
"Tim Dockhorn",
"Seung Wook Kim",
"Sanja Fidler",
"Karsten Kreis"
],
"title": "Align your latents: High-resolution video synthesis with latent diffusion models",
"venue": "arXiv preprint arXiv:2304.08818,",
"year": 2023
},
{
"authors": [
"Zal\u00e1n Borsos",
"Rapha\u00ebl Marinier",
"Damien Vincent",
"Eugene Kharitonov",
"Olivier Pietquin",
"Matt Sharifi",
"Dominik Roblek",
"Olivier Teboul",
"David Grangier",
"Marco Tagliasacchi"
],
"title": "Audiolm: a language modeling approach to audio generation",
"venue": "IEEE/ACM Transactions on Audio, Speech, and Language Processing,",
"year": 2023
},
{
"authors": [
"Anthony Brohan",
"Noah Brown",
"Justice Carbajal",
"Yevgen Chebotar",
"Joseph Dabis",
"Chelsea Finn",
"Keerthana Gopalakrishnan",
"Karol Hausman",
"Alex Herzog",
"Jasmine Hsu"
],
"title": "Rt-1: Robotics transformer for real-world control at scale",
"venue": "arXiv preprint arXiv:2212.06817,",
"year": 2022
},
{
"authors": [
"Anthony Brohan",
"Noah Brown",
"Justice Carbajal",
"Yevgen Chebotar",
"Xi Chen",
"Krzysztof Choromanski",
"Tianli Ding",
"Danny Driess",
"Avinava Dubey",
"Chelsea Finn"
],
"title": "Rt-2: Vision-language-action models transfer web knowledge to robotic control",
"venue": "arXiv preprint arXiv:2307.15818,",
"year": 2023
},
{
"authors": [
"Pablo Samuel Castro"
],
"title": "Scalable methods for computing state similarity in deterministic markov decision processes",
"venue": "In Proceedings of the AAAI Conference on Artificial Intelligence,",
"year": 2020
},
{
"authors": [
"Angel Chang",
"Angela Dai",
"Thomas Funkhouser",
"Maciej Halber",
"Matthias Niessner",
"Manolis Savva",
"Shuran Song",
"Andy Zeng",
"Yinda Zhang"
],
"title": "Matterport3d: Learning from rgb-d data in indoor environments",
"venue": "arXiv preprint arXiv:1709.06158,",
"year": 2017
},
{
"authors": [
"Chang Chen",
"Yi-Fu Wu",
"Jaesik Yoon",
"Sungjin Ahn"
],
"title": "Transdreamer: Reinforcement learning with transformer world models",
"venue": "arXiv preprint arXiv:2202.09481,",
"year": 2022
},
{
"authors": [
"Xi Chen",
"Xiao Wang",
"Soravit Changpinyo",
"AJ Piergiovanni",
"Piotr Padlewski",
"Daniel Salz",
"Sebastian Goodman",
"Adam Grycner",
"Basil Mustafa",
"Lucas Beyer"
],
"title": "Pali: A jointly-scaled multilingual language-image model",
"venue": "arXiv preprint arXiv:2209.06794,",
"year": 2022
},
{
"authors": [
"Xi Chen",
"Josip Djolonga",
"Piotr Padlewski",
"Basil Mustafa",
"Soravit Changpinyo",
"Jialin Wu",
"Carlos Riquelme Ruiz",
"Sebastian Goodman",
"Xiao Wang",
"Yi Tay"
],
"title": "Pali-x: On scaling up a multilingual vision and language model",
"venue": "arXiv preprint arXiv:2305.18565,",
"year": 2023
},
{
"authors": [
"Yung-Yu Chuang",
"Dan B Goldman",
"Ke Colin Zheng",
"Brian Curless",
"David H Salesin",
"Richard Szeliski"
],
"title": "Animating pictures with stochastic motion textures",
"venue": "In ACM SIGGRAPH 2005 Papers,",
"year": 2005
},
{
"authors": [
"\u00d6zg\u00fcn \u00c7i\u00e7ek",
"Ahmed Abdulkadir",
"Soeren S Lienkamp",
"Thomas Brox",
"Olaf Ronneberger"
],
"title": "3d u-net: learning dense volumetric segmentation from sparse annotation",
"venue": "19th International Conference,",
"year": 2016
},
{
"authors": [
"Dima Damen",
"Hazel Doughty",
"Giovanni Maria Farinella",
"Sanja Fidler",
"Antonino Furnari",
"Evangelos Kazakos",
"Davide Moltisanti",
"Jonathan Munro",
"Toby Perrett",
"Will Price"
],
"title": "Scaling egocentric vision: The epic-kitchens dataset",
"venue": "In Proceedings of the European conference on computer vision (ECCV),",
"year": 2018
},
{
"authors": [
"Sudeep Dasari",
"Frederik Ebert",
"Stephen Tian",
"Suraj Nair",
"Bernadette Bucher",
"Karl Schmeckpeper",
"Siddharth Singh",
"Sergey Levine",
"Chelsea Finn"
],
"title": "Robonet: Large-scale multi-robot learning",
"year": 1910
},
{
"authors": [
"Danny Driess",
"Fei Xia",
"Mehdi SM Sajjadi",
"Corey Lynch",
"Aakanksha Chowdhery",
"Brian Ichter",
"Ayzaan Wahid",
"Jonathan Tompson",
"Quan Vuong",
"Tianhe Yu"
],
"title": "Palm-e: An embodied multimodal language model",
"venue": "arXiv preprint arXiv:2303.03378,",
"year": 2023
},
{
"authors": [
"Yilun Du",
"Mengjiao Yang",
"Bo Dai",
"Hanjun Dai",
"Ofir Nachum",
"Joshua B Tenenbaum",
"Dale Schuurmans",
"Pieter Abbeel"
],
"title": "Learning universal policies via text-guided video generation, 2023",
"venue": "URL https://arxiv. org/abs/2302.00111,",
"year": 2023
},
{
"authors": [
"Yuqing Du",
"Olivia Watkins",
"Zihan Wang",
"C\u00e9dric Colas",
"Trevor Darrell",
"Pieter Abbeel",
"Abhishek Gupta",
"Jacob Andreas"
],
"title": "Guiding pretraining in reinforcement learning with large language models",
"venue": "arXiv preprint arXiv:2302.06692,",
"year": 2023
},
{
"authors": [
"Gabriel Dulac-Arnold",
"Daniel Mankowitz",
"Todd Hester"
],
"title": "Challenges of real-world reinforcement learning",
"venue": "arXiv preprint arXiv:1904.12901,",
"year": 2019
},
{
"authors": [
"Frederik Ebert",
"Yanlai Yang",
"Karl Schmeckpeper",
"Bernadette Bucher",
"Georgios Georgakis",
"Kostas Daniilidis",
"Chelsea Finn",
"Sergey Levine"
],
"title": "Bridge data: Boosting generalization of robotic skills with cross-domain datasets",
"venue": "arXiv preprint arXiv:2109.13396,",
"year": 2021
},
{
"authors": [
"Norm Ferns",
"Prakash Panangaden",
"Doina Precup"
],
"title": "Metrics for finite markov decision processes",
"venue": "In UAI,",
"year": 2004
},
{
"authors": [
"Raghav Goyal",
"Samira Ebrahimi Kahou",
"Vincent Michalski",
"Joanna Materzynska",
"Susanne Westphal",
"Heuna Kim",
"Valentin Haenel",
"Ingo Fruend",
"Peter Yianilos",
"Moritz Mueller-Freitag"
],
"title": "The\u201d something something\u201d video database for learning and evaluating visual common sense",
"venue": "In Proceedings of the IEEE international conference on computer vision,",
"year": 2017
},
{
"authors": [
"Kristen Grauman",
"Andrew Westbury",
"Eugene Byrne",
"Zachary Chavis",
"Antonino Furnari",
"Rohit Girdhar",
"Jackson Hamburger",
"Hao Jiang",
"Miao Liu",
"Xingyu Liu"
],
"title": "Ego4d: Around the world in 3,000 hours of egocentric video",
"venue": "In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition,",
"year": 2022
},
{
"authors": [
"Danijar Hafner",
"Timothy Lillicrap",
"Mohammad Norouzi",
"Jimmy Ba"
],
"title": "Mastering atari with discrete world models",
"venue": "arXiv preprint arXiv:2010.02193,",
"year": 2020
},
{
"authors": [
"Danijar Hafner",
"Jurgis Pasukonis",
"Jimmy Ba",
"Timothy Lillicrap"
],
"title": "Mastering diverse domains through world models",
"venue": "arXiv preprint arXiv:2301.04104,",
"year": 2023
},
{
"authors": [
"Zekun Hao",
"Xun Huang",
"Serge Belongie"
],
"title": "Controllable video generation with sparse trajectories",
"venue": "In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition,",
"year": 2018
},
{
"authors": [
"Jonathan Ho",
"Tim Salimans"
],
"title": "Classifier-free diffusion guidance",
"venue": "arXiv preprint arXiv:2207.12598,",
"year": 2022
},
{
"authors": [
"Jonathan Ho",
"Ajay Jain",
"Pieter Abbeel"
],
"title": "Denoising diffusion probabilistic models",
"venue": "In Advances in Neural Information Processing Systems,",
"year": 2020
},
{
"authors": [
"Jonathan Ho",
"William Chan",
"Chitwan Saharia",
"Jay Whang",
"Ruiqi Gao",
"Alexey Gritsenko",
"Diederik P Kingma",
"Ben Poole",
"Mohammad Norouzi",
"David J Fleet"
],
"title": "Imagen video: High definition video generation with diffusion models",
"venue": "arXiv preprint arXiv:2210.02303,",
"year": 2022
},
{
"authors": [
"Jonathan Ho",
"Tim Salimans",
"Alexey Gritsenko",
"William Chan",
"Mohammad Norouzi",
"David J Fleet"
],
"title": "Video diffusion models",
"venue": "arXiv preprint arXiv:2204.03458,",
"year": 2022
},
{
"authors": [
"Chao Jia",
"Yinfei Yang",
"Ye Xia",
"Yi-Ting Chen",
"Zarana Parekh",
"Hieu Pham",
"Quoc Le",
"Yun-Hsuan Sung",
"Zhen Li",
"Tom Duerig"
],
"title": "Scaling up visual and vision-language representation learning with noisy text supervision",
"venue": "In International conference on machine learning,",
"year": 2021
},
{
"authors": [
"Leslie Pack Kaelbling",
"Tom\u00e1s Lozano-P\u00e9rez"
],
"title": "Hierarchical task and motion planning in the now",
"venue": "In 2011 IEEE International Conference on Robotics and Automation,",
"year": 2011
},
{
"authors": [
"Leslie Pack Kaelbling",
"Michael L Littman",
"Anthony R Cassandra"
],
"title": "Planning and acting in partially observable stochastic domains",
"venue": "Artificial intelligence,",
"year": 1998
},
{
"authors": [
"George Konidaris",
"Andrew Barto"
],
"title": "Skill discovery in continuous reinforcement learning domains using skill chaining",
"venue": "Advances in neural information processing systems,",
"year": 2009
},
{
"authors": [
"Ranjay Krishna",
"Kenji Hata",
"Frederic Ren",
"Li Fei-Fei",
"Juan Carlos Niebles"
],
"title": "Dense-captioning events in videos",
"venue": "In Proceedings of the IEEE international conference on computer vision,",
"year": 2017
},
{
"authors": [
"Timoth\u00e9e Lesort",
"Natalia"
],
"title": "D\u0131\u0301az-Rodr\u0131\u0301guez, Jean-Franois Goudou, and David Filliat. State representation learning for control: An overview",
"venue": "Neural Networks,",
"year": 2018
},
{
"authors": [
"Tsung-Yi Lin",
"Michael Maire",
"Serge Belongie",
"James Hays",
"Pietro Perona",
"Deva Ramanan",
"Piotr Doll\u00e1r",
"C Lawrence Zitnick"
],
"title": "Microsoft coco: Common objects in context",
"venue": "In Computer Vision\u2013ECCV",
"year": 2014
},
{
"authors": [
"Corey Lynch",
"Pierre Sermanet"
],
"title": "Language conditioned imitation learning over unstructured data",
"venue": "arXiv preprint arXiv:2005.07648,",
"year": 2020
},
{
"authors": [
"Corey Lynch",
"Ayzaan Wahid",
"Jonathan Tompson",
"Tianli Ding",
"James Betker",
"Robert Baruch",
"Travis Armstrong",
"Pete Florence"
],
"title": "Interactive language: Talking to robots in real time",
"venue": "IEEE Robotics and Automation Letters,",
"year": 2023
},
{
"authors": [
"Ajay Mandlekar",
"Yuke Zhu",
"Animesh Garg",
"Jonathan Booher",
"Max Spero",
"Albert Tung",
"Julian Gao",
"John Emmons",
"Anchit Gupta",
"Emre Orbay"
],
"title": "Roboturk: A crowdsourcing platform for robotic skill learning through imitation",
"venue": "In Conference on Robot Learning,",
"year": 2018
},
{
"authors": [
"Vincent Micheli",
"Eloi Alonso",
"Fran\u00e7ois Fleuret"
],
"title": "Transformers are sample efficient world models",
"venue": "arXiv preprint arXiv:2209.00588,",
"year": 2022
},
{
"authors": [
"Antoine Miech",
"Dimitri Zhukov",
"Jean-Baptiste Alayrac",
"Makarand Tapaswi",
"Ivan Laptev",
"Josef Sivic"
],
"title": "Howto100m: Learning a text-video embedding by watching hundred million narrated video clips",
"venue": "In Proceedings of the IEEE/CVF international conference on computer vision,",
"year": 2019
},
{
"authors": [
"Volodymyr Mnih",
"Koray Kavukcuoglu",
"David Silver",
"Alex Graves",
"Ioannis Antonoglou",
"Daan Wierstra",
"Martin Riedmiller"
],
"title": "Playing atari with deep reinforcement learning",
"venue": "arXiv preprint arXiv:1312.5602,",
"year": 2013
},
{
"authors": [
"Volodymyr Mnih",
"Koray Kavukcuoglu",
"David Silver",
"Andrei A Rusu",
"Joel Veness",
"Marc G Bellemare",
"Alex Graves",
"Martin Riedmiller",
"Andreas K Fidjeland",
"Georg Ostrovski"
],
"title": "Human-level control through deep reinforcement learning",
"year": 2015
},
{
"authors": [
"Mathew Monfort",
"SouYoung Jin",
"Alexander Liu",
"David Harwath",
"Rogerio Feris",
"James Glass",
"Aude Oliva"
],
"title": "Spoken moments: Learning joint audio-visual representations from video descriptions",
"venue": "In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition,",
"year": 2021
},
{
"authors": [
"Michael Montemerlo",
"Sebastian Thrun"
],
"title": "FastSLAM: A scalable method for the simultaneous localization and mapping problem in robotics, volume",
"year": 2007
},
{
"authors": [
"Ofir Nachum",
"Shixiang Shane Gu",
"Honglak Lee",
"Sergey Levine"
],
"title": "Data-efficient hierarchical reinforcement learning",
"venue": "Advances in neural information processing systems,",
"year": 2018
},
{
"authors": [
"Colin Raffel",
"Noam Shazeer",
"Adam Roberts",
"Katherine Lee",
"Sharan Narang",
"Michael Matena",
"Yanqi Zhou",
"Wei Li",
"Peter J Liu"
],
"title": "Exploring the limits of transfer learning with a unified text-to-text transformer",
"venue": "J. Mach. Learn. Res.,",
"year": 2020
},
{
"authors": [
"Santhosh Kumar Ramakrishnan",
"Aaron Gokaslan",
"Erik Wijmans",
"Oleksandr Maksymets",
"Alexander Clegg",
"John M Turner",
"Eric Undersander",
"Wojciech Galuba",
"Andrew Westbury",
"Angel X Chang",
"Manolis Savva",
"Yili Zhao",
"Dhruv Batra"
],
"title": "Habitat-matterport 3d dataset (HM3d): 1000 largescale 3d environments for embodied AI",
"venue": "In Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track,",
"year": 2021
},
{
"authors": [
"Aditya Ramesh",
"Prafulla Dhariwal",
"Alex Nichol",
"Casey Chu",
"Mark Chen"
],
"title": "Hierarchical textconditional image generation with clip latents",
"venue": "arXiv preprint arXiv:2204.06125,",
"year": 2022
},
{
"authors": [
"Paulo Rauber",
"Avinash Ummadisingu",
"Filipe Mutz",
"J\u00fcrgen Schmidhuber"
],
"title": "Hindsight policy gradients",
"venue": "In International Conference on Learning Representations,",
"year": 2019
},
{
"authors": [
"Andrei A Rusu",
"Matej Ve\u010der\u0131\u0301k",
"Thomas Roth\u00f6rl",
"Nicolas Heess",
"Razvan Pascanu",
"Raia Hadsell"
],
"title": "Sim-to-real robot learning from pixels with progressive nets",
"venue": "In Conference on robot learning,",
"year": 2017
},
{
"authors": [
"Manolis Savva",
"Abhishek Kadian",
"Oleksandr Maksymets",
"Yili Zhao",
"Erik Wijmans",
"Bhavana Jain",
"Julian Straub",
"Jia Liu",
"Vladlen Koltun",
"Jitendra Malik"
],
"title": "Habitat: A platform for embodied ai research",
"venue": "In Proceedings of the IEEE/CVF international conference on computer vision,",
"year": 2019
},
{
"authors": [
"Christoph Schuhmann",
"Richard Vencu",
"Romain Beaumont",
"Robert Kaczmarczyk",
"Clayton Mullis",
"Aarush Katta",
"Theo Coombes",
"Jenia Jitsev",
"Aran Komatsuzaki"
],
"title": "Laion-400m: Open dataset of clip-filtered 400 million image-text pairs",
"venue": "arXiv preprint arXiv:2111.02114,",
"year": 2021
},
{
"authors": [
"Christoph Schuhmann",
"Romain Beaumont",
"Richard Vencu",
"Cade Gordon",
"Ross Wightman",
"Mehdi Cherti",
"Theo Coombes",
"Aarush Katta",
"Clayton Mullis",
"Mitchell Wortsman"
],
"title": "Laion-5b: An open large-scale dataset for training next generation image-text models",
"venue": "Advances in Neural Information Processing Systems,",
"year": 2022
},
{
"authors": [
"Younggyo Seo",
"Kimin Lee",
"Stephen L James",
"Pieter Abbeel"
],
"title": "Reinforcement learning with action-free pre-training from videos",
"venue": "In International Conference on Machine Learning,",
"year": 2022
},
{
"authors": [
"Aliaksandr Siarohin",
"St\u00e9phane Lathuili\u00e8re",
"Sergey Tulyakov",
"Elisa Ricci",
"Nicu Sebe"
],
"title": "Animating arbitrary objects via deep motion transfer",
"venue": "In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition,",
"year": 2019
},
{
"authors": [
"Uriel Singer",
"Adam Polyak",
"Thomas Hayes",
"Xi Yin",
"Jie An",
"Songyang Zhang",
"Qiyuan Hu",
"Harry Yang",
"Oron Ashual",
"Oran Gafni"
],
"title": "Make-a-video: Text-to-video generation without text-video data",
"venue": "arXiv preprint arXiv:2209.14792,",
"year": 2022
},
{
"authors": [
"Richard D Smallwood",
"Edward J Sondik"
],
"title": "The optimal control of partially observable markov processes over a finite horizon",
"venue": "Operations research,",
"year": 1973
},
{
"authors": [
"Jascha Sohl-Dickstein",
"Eric Weiss",
"Niru Maheswaranathan",
"Surya Ganguli"
],
"title": "Deep unsupervised learning using nonequilibrium thermodynamics",
"venue": "In International Conference on Machine Learning,",
"year": 2015
},
{
"authors": [
"Edward Jay Sondik"
],
"title": "The optimal control of partially observable Markov processes",
"venue": "Stanford University,",
"year": 1971
},
{
"authors": [
"Richard S. Sutton"
],
"title": "Learning to predict by the methods of temporal differences",
"venue": "Machine Learning,",
"year": 1988
},
{
"authors": [
"Richard S Sutton",
"Doina Precup",
"Satinder Singh"
],
"title": "Between mdps and semi-mdps: A framework for temporal abstraction in reinforcement learning",
"venue": "Artificial intelligence,",
"year": 1999
},
{
"authors": [
"Yi Tay",
"Mostafa Dehghani",
"Vinh Q Tran",
"Xavier Garcia",
"Jason Wei",
"Xuezhi Wang",
"Hyung Won Chung",
"Dara Bahri",
"Tal Schuster",
"Steven Zheng"
],
"title": "Ul2: Unifying language learning paradigms",
"venue": "In The Eleventh International Conference on Learning Representations,",
"year": 2022
},
{
"authors": [
"Shengwei Wang",
"Xinqiao Jin"
],
"title": "Model-based optimal control of vav air-conditioning system using genetic algorithm",
"venue": "Building and Environment,",
"year": 2000
},
{
"authors": [
"Teng Wang",
"Ruimao Zhang",
"Zhichao Lu",
"Feng Zheng",
"Ran Cheng",
"Ping Luo"
],
"title": "End-to-end dense video captioning with parallel decoding",
"venue": "In Proceedings of the IEEE/CVF International Conference on Computer Vision,",
"year": 2021
},
{
"authors": [
"Xin Wang",
"Jiawei Wu",
"Junkun Chen",
"Lei Li",
"Yuan-Fang Wang",
"William Yang Wang"
],
"title": "Vatex: A large-scale, high-quality multilingual dataset for video-and-language research",
"venue": "In Proceedings of the IEEE/CVF International Conference on Computer Vision,",
"year": 2019
},
{
"authors": [
"Yaohui Wang",
"Di Yang",
"Francois Bremond",
"Antitza Dantcheva"
],
"title": "Latent image animator: Learning to animate images via latent space navigation",
"venue": "arXiv preprint arXiv:2203.09043,",
"year": 2022
},
{
"authors": [
"Chung-Yi Weng",
"Brian Curless",
"Ira Kemelmacher-Shlizerman"
],
"title": "Photo wake-up: 3d character animation from a single photo",
"venue": "In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition,",
"year": 2019
},
{
"authors": [
"Ronald J Williams"
],
"title": "Simple statistical gradient-following algorithms for connectionist reinforcement learning",
"venue": "Machine learning,",
"year": 1992
},
{
"authors": [
"Chenfei Wu",
"Lun Huang",
"Qianxi Zhang",
"Binyang Li",
"Lei Ji",
"Fan Yang",
"Guillermo Sapiro",
"Nan Duan"
],
"title": "Godiva: Generating open-domain videos from natural descriptions",
"venue": "arXiv preprint arXiv:2104.14806,",
"year": 2021
},
{
"authors": [
"Ziyi Wu",
"Nikita Dvornik",
"Klaus Greff",
"Thomas Kipf",
"Animesh Garg"
],
"title": "Slotformer: Unsupervised visual dynamics simulation with object-centric models",
"venue": "arXiv preprint arXiv:2210.05861,",
"year": 2022
},
{
"authors": [
"Jun Xu",
"Tao Mei",
"Ting Yao",
"Yong Rui"
],
"title": "Msr-vtt: A large video description dataset for bridging video and language",
"venue": "In Proceedings of the IEEE conference on computer vision and pattern recognition,",
"year": 2016
},
{
"authors": [
"Tianfan Xue",
"Jiajun Wu",
"Katherine L Bouman",
"William T Freeman"
],
"title": "Visual dynamics: Stochastic future generation via layered cross convolutional networks",
"venue": "IEEE transactions on pattern analysis and machine intelligence,",
"year": 2018
},
{
"authors": [