-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathteam.yml
More file actions
1165 lines (1034 loc) · 26.6 KB
/
team.yml
File metadata and controls
1165 lines (1034 loc) · 26.6 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
"Bach":
firstname: Francis
url: https://www.di.ens.fr/~fbach/
profilepic: francis_bach.jpg
position: Inria
alumni: false
permanent: true
"d'Aspremont":
firstname: Alexandre
url: https://www.di.ens.fr/~aspremon/
position: CNRS
profilepic: alexandre_daspremont.jpeg
alumni: false
permanent: true
"Jordan":
firstname: Michael
url: https://www.cs.berkeley.edu/~jordan
profilepic: michael_jordan.jpg
position: Inria
alumni: false
permanent: true
"Marion":
firstname: Pierre
url: https://pierremarion23.github.io/
profilepic: pierre_marion.jpg
position: Inria
alumni: false
permanent: true
"Simsekli":
firstname: Umut
url: https://www.di.ens.fr/~simsekli/
profilepic: umut_simsekli.jpg
position: Inria
alumni: false
permanent: true
"Taylor":
firstname: Adrien
url: https://adrientaylor.github.io/
profilepic: adrien_taylor.jpeg
position: Inria
alumni: false
permanent: true
"Palma":
firstname: Abigail
url: https://sierra-mlopt.github.io/
profilepic: unknown.jpg
position: Inria, team assistant
alumni: false
permanent: true
"Chen":
firstname: Yurong
url: https://ruyc.github.io/
profilepic: yurong_chen.jpeg
position: Postdoc
alumni: false
permanent: false
"Lambert":
firstname: Marc
url: https://marc-h-lambert.github.io/
profilepic: marc_lambert.jpeg
position: PhD student
alumni: false
permanent: false
"Meng":
firstname: Si Yi
url: https://www.cs.cornell.edu/~siyimeng
profilepic: siyi_meng.jpg
position: Visiting PhD student
alumni: true
movedto: Cornell University
permanent: false
alumni_date: 2026
"Krishan Lal":
firstname: Manish
url: https://mkrishan.github.io/
profilepic: manish-kl.jpeg
position: Visiting researcher
alumni: true
movedto: Technical University of Munich
permanent: false
alumni_date: 2026
"François":
firstname: Alexandre
url: https://www.linkedin.com/in/alexandre-fran%C3%A7ois-0a0095207/
profilepic: alexandre_francois.jpg
position: PhD student
alumni: true
movedto: Secrétariat général à la planification écologique
permanent: false
alumni_date: 2025
"Lezane":
firstname: Clément
url: https://www.linkedin.com/in/cl%C3%A9ment-lezane-7222b01b6/
profilepic: clement_lezanne.jpeg
position: PhD student
alumni: true
movedto: ANITI, Toulouse
permanent: false
alumni_date: 2025
"Schlosser":
firstname: Corbinian
url: http://corbischlosser.site/
profilepic: corbinian_shlosser.jpeg
position: Postdoc
alumni: true
movedto: School teaching
permanent: false
alumni_date: 2025
"Stewart":
firstname: Lawrence
url: https://lawrencemmstewart.github.io/
profilepic: unknown.jpg
position: PhD student
alumni: true
movedto: Google DeepMind
permanent: false
alumni_date: 2025
"Andrews":
firstname: Roland
url: https://www.linkedin.com/in/roland-andrews/
profilepic: roland_andrews.jpeg
position: PhD student
alumni: false
permanent: false
"Brood":
firstname: Sarah
url: https://sbrood.github.io/
profilepic: sarah_brood.jpeg
position: PhD student
alumni: false
permanent: false
"Braun":
firstname: Sacha
url: https://elsacho.github.io/
profilepic: sacha_braun.jpg
position: PhD student
alumni: false
permanent: false
"Dupuis":
firstname: Benjamin
url: https://benjidupuis.github.io/
profilepic: benjamin_dupuis.jpg
position: PhD student
alumni: false
permanent: false
"Shariatian":
firstname: Dario
url: https://www.linkedin.com/in/dario-shariatian-900989204/
profilepic: dario_shariatian.jpeg
position: PhD student
alumni: false
permanent: false
"Berta":
firstname: Eugène
url: https://eugeneberta.github.io/
profilepic: eugene_berta.jpg
position: PhD student
alumni: false
permanent: false
"Boudart":
firstname: Pierre
url: https://sierra-mlopt.github.io
profilepic: unknown.jpg
position: PhD student
alumni: false
permanent: false
"Basteri":
firstname: Andrea
url: https://sierra-mlopt.github.io
profilepic: andrea_basteri.jpg
position: PhD student
alumni: false
permanent: false
"Schaipp":
firstname: Fabian
url: https://fabian-sp.github.io/
profilepic: fabian_schaipp.jpg
position: Postdoc
alumni: false
permanent: false
"Weibel":
firstname: Julien
url: http://www.normalesup.org/~jweibel/
profilepic: julien_weibel.jpg
position: Postdoc
alumni: false
permanent: false
"Martin":
firstname: Simon
url: https://simonmartin15.github.io/
profilepic: simon_martin.jpg
position: PhD student
alumni: false
permanent: false
"Gauthier":
firstname: Etienne
url: https://www.linkedin.com/in/etienne-gauthier-5193a7211
profilepic: etienne_gauthier.png
position: PhD student
alumni: false
permanent: false
"Holzmüller":
firstname: David
url: https://dholzmueller.github.io/
profilepic: david_holzmueller.jpg
position: Postdoc
alumni: false
permanent: false
"Dana":
firstname: Léo
url: https://leodana2000.github.io/
profilepic: leo_dana.jpg
position: PhD student
alumni: false
permanent: false
"Decugis":
firstname: Juliette
url: https://www.linkedin.com/in/juliette-decugis-a29673139/
profilepic: juliette_decugis.jpg
position: PhD student
alumni: false
permanent: false
"Dubois-Taine":
firstname: Benjamin
url: https://bpauld.github.io/
profilepic: benjamin_dubois.png
position: PhD student
alumni: true
movedto: Inria (Saclay), EDF R&D
permanent: false
alumni_date: 2025
"Upadhyaya":
firstname: Manu
url: https://manuupadhyaya.github.io/
profilepic: manu_upadhyaya.jpg
position: Postdoc
alumni: false
permanent: false
"Mishkin":
firstname: Aaron
url: https://cs.stanford.edu/~amishkin/
profilepic: aaron_mishkin.png
position: Visiting PhD student
alumni: true
movedto: Stanford
permanent: false
alumni_date: 2025
"Raj":
firstname: Anant
url: https://anantrajml.github.io/
profilepic: anant_raj.jpeg
position: Postdoc
alumni: true
movedto: IISc
permanent: false
alumni_date: 2024
"Fogel":
firstname: Fajwel
url: https://www.linkedin.com/in/fajwel-fogel-1124671b
profilepic: fajwel_fogel.jpeg
position: Postdoc
alumni: true
movedto: Doctolib
alumni_date: 2024
permanent: false
"Follain":
firstname: Bertille
url: https://bertillefollain.netlify.app/
profilepic: bertille_follain.jpg
position: PhD student
alumni: true
movedto: Agregio Solutions (groupe EDF)
permanent: false
alumni_date: 2024
"Cantelobre":
firstname: Théophile
url: https://theophilec.github.io/
profilepic: theophile_cantelobre.webp
position: PhD student
alumni: true
movedto: job market
permanent: false
alumni_date: 2024
"Rudi":
firstname: Alessandro
url: https://www.di.ens.fr/~rudi
profilepic: alessandro_rudi.jpg
position: Research scientist
alumni: true
movedto: Bocconi University
permanent: true
alumni_date: 2024
"Moucer":
firstname: Céline
url: https://cmoucer.github.io/
profilepic: celine_moucer.jpeg
position: PhD student
alumni: true
movedto: Direction du Budget
permanent: false
alumni_date: 2024
"Kovacic":
firstname: Marina
url: https://sierra-mlopt.github.io/
profilepic: unknown.jpg
position: Inria, team assistant
alumni: true
movedto: Inria (ARGO team)
permanent: true
alumni_date: 2024
"Chazal":
firstname: Clémentine
url: https://www.linkedin.com/in/cl%C3%A9mentine-chazal-76a702218/
profilepic: clementine_chazal.jpeg
position: Intern
movedto: CREST
alumni: true
alumni_date: 2024
"Viallard":
firstname: Paul
url: https://paulviallard.github.io/
profilepic: paul_viallard.jpg
position: Postdoc
movedto: Inria Rennes
alumni: true
alumni_date: 2024
"Gruber":
firstname: Sebastian
url: https://www.linkedin.com/in/sebastian-gruber-21b76813b/
profilepic: sebastian_gruber.jpeg
position: Visiting PhD student
movedto: KU Leuven
alumni: true
alumni_date: 2024
"Bambade":
firstname: Antoine
url: https://bambade.github.io/
profilepic: antoine_bambade.jpg
position: PhD student
movedto: EDF
alumni: true
alumni_date: 2024
"Cabannes":
firstname: Gaspard
url: https://gaspardbb.github.io/
profilepic: gaspard_beugnot.jpeg
position: PhD student
movedto: Alice & Bob
alumni: true
alumni_date: 2024
"Mantoux":
firstname: Clément
url: https://cmantoux.github.io/
profilepic: clement_mentoux.jpg
position: Postdoc
movedto: SNCF
alumni: true
alumni_date: 2023
"Melliti":
firstname: Ayoub
url: https://www.linkedin.com/in/ayoub-melliti-799b70180/
profilepic: ayoub_melliti.jpg
position: Intern
alumni: false
permanent: false
"Woodworth":
firstname: Blake
url: https://blakewoodworth.github.io/
profilepic: blake_woodworth.jpg
position: Postdoc
movedto: George Washington University
alumni: true
alumni_date: 2023
"Mishchenko":
firstname: Konstantin
url: https://www.konstmish.com/
profilepic: konstantin_mishchenko.jpg
position: Postdoc
movedto: Samsung
alumni: true
alumni_date: 2023
"Esteve":
firstname: Loïc
url: https://iww.inria.fr/sedgra/equipe/loic-esteve/
profilepic: loic_esteve.jpg
position: Engineer
movedto: Inria Grenoble
alumni: true
alumni_date: 2023
"Bessin-Rousseau":
firstname: Hélène
url: https://www.linkedin.com/in/helenebessinrousseau
profilepic: helene_bessin.jpeg
position: Inria, team assistant
movedto: INSA Rennes
alumni: true
alumni_date: 2023
"Kersting":
firstname: Hans
url: https://hanskersting.github.io/
profilepic: hans_kersting.jpg
position: Postdoc
movedto: Yahoo! research
alumni: true
alumni_date: 2023
"Aubin":
firstname: Pierre-Cyril
url: https://pcaubin.github.io/
profilepic: pierre_aubin.jpeg
position: Postdoc
movedto: TU Wien
alumni: true
alumni_date: 2023
"Izacard":
firstname: Gautier
url: https://www.linkedin.com/in/gizacard/
profilepic: gauthier_izacard.jpeg
position: PhD student
movedto: Inflection AI
alumni: true
alumni_date: 2023
"Daneshmand":
firstname: Hadi
url: https://www.linkedin.com/in/hadi-daneshmand-11810941/
profilepic: hadi_daneshmand.jpeg
position: Postdoc
movedto: Princeton University
alumni: true
alumni_date: 2022
"Arjovsky":
firstname: Martin
url: https://sierra-mlopt.github.io
profilepic: martin_artovsky.jpeg
position: Postdoc
movedto: Deepmind
alumni: true
alumni_date: 2022
"Cabannes":
firstname: Vivien
url: https://viviencabannes.github.io/
profilepic: vivien_cabannes.jpeg
position: PhD student
movedto: Meta
alumni: true
alumni_date: 2022
"Marteau-Ferey":
firstname: Ulysse
url: https://www.di.ens.fr/ulysse.marteau/
profilepic: ulysse_marteau.png
position: PhD student
movedto: Owkin
alumni: true
alumni_date: 2022
"Berthier":
firstname: Eloïse
url: https://eloiseberthier.github.io/
profilepic: eloise_berthier.jpg
position: PhD student
movedto: ENSTA
alumni: true
alumni_date: 2022
"Jézéquel":
firstname: Rémi
url: https://www.linkedin.com/in/r%C3%A9mi-j%C3%A9z%C3%A9quel-765391124
profilepic: remi_jezequel.jpeg
position: PhD student
movedto: Capital Fund Management
alumni: true
alumni_date: 2022
"Romain":
firstname: Manon
url: https://www.linkedin.com/in/manon-romain-383a29238/
profilepic: manon_romain.jpeg
position: PhD student
movedto: Le Monde
alumni: true
alumni_date: 2021
"Muzellec":
firstname: Boris
url: https://borismuzellec.github.io/
profilepic: boris_muzellec.jpg
position: Postdoc
movedto: Owkin
alumni: true
alumni_date: 2021
"Barré":
firstname: Mathieu
url: https://www.linkedin.com/in/mathieu-barre-206a61a1/
profilepic: mathieu_barre.png
position: PhD student
movedto: Saint-Gobain R&D
alumni: true
alumni_date: 2021
"Nowak-Villa":
firstname: Alex
url: https://www.di.ens.fr/alex.nowak/
profilepic: unknown.jpg
position: PhD student
movedto: Owkin
alumni: true
alumni_date: 2021
"Dragomir":
firstname: Radu-Alexandru
url: https://radualexandrudragomir.github.io/
profilepic: radu_dragomir.jpg
position: PhD student
movedto: UCLouvain
alumni: true
alumni_date: 2021
"Berthier":
firstname: Raphaël
url: https://raphael-berthier.github.io/
profilepic: raphael_berthier.jpeg
position: PhD student
movedto: EPFL
alumni: true
alumni_date: 2021
"Hendrikx":
firstname: Hadrien
url: https://www.di.ens.fr/~hendrikx/
profilepic: hadrien_hendrikx.jpg
position: PhD student
movedto: EPFL
alumni: true
alumni_date: 2021
"Kerdreux":
firstname: Thomas
url: https://www.linkedin.com/in/thomas-kerdreux-118936237
profilepic: thomas_kerdreux.jpeg
position: PhD student
movedto: Los Alamos National Laboratory
alumni: true
alumni_date: 2021
"Brégère":
firstname: Margaux
url: https://margauxbregere.github.io/
profilepic: margaux_bregere.jpeg
position: PhD student
movedto: EDF
alumni: true
alumni_date: 2021
"Degenne":
firstname: Rémy
url: https://remydegenne.github.io/
profilepic: remy_degenne.jpg
position: Postdoc
movedto: Inria Lille
alumni: true
alumni_date: 2020
"Sun":
firstname: Yifan
url: https://sites.google.com/site/yifansunwebsite
profilepic: yifan_sun.jpg
position: Postdoc
movedto: Stony Brook University
alumni: true
alumni_date: 2020
"Defossez":
firstname: Alexandre
url: https://ai.honu.io/
profilepic: alexandre_defossez.jpg
position: PhD student
movedto: FAIR Paris
alumni: true
alumni_date: 2020
"Pillaud Vivien":
firstname: Loucas
url: https://loucaspillaudvivien.io/
profilepic: loucas_pillaud_vivien.jpg
position: PhD student
movedto: EPFL
alumni: true
alumni_date: 2020
"Shpakova":
firstname: Tatiana
url: https://www.linkedin.com/in/tatiana-shpakova-phd/
profilepic: tatiana_shpakova.jpeg
position: PhD student
movedto: Sorbonne Université
alumni: true
alumni_date: 2019
"Babichev":
firstname: Dmitry
url: https://www.linkedin.com/in/dmitry-babichev-phd-19928b110/
profilepic: dmitry_babichev.jpeg
position: PhD student
movedto: Telecom Paristech
alumni: true
alumni_date: 2019
"Gaillard":
firstname: Pierre
url: https://pierre.gaillard.me/
profilepic: pierre_gaillard.gif
position: Research Scientist
movedto: Inria Grenoble
alumni: true
alumni_date: 2019
"Bietti":
firstname: Alberto
url: https://alberto.bietti.me/
profilepic: alberto_bietti.jpeg
position: Postdoc
movedto: New-York University
alumni: true
alumni_date: 2019
"Ostrovskii":
firstname: Dmitrii
url: https://ostrodmit.github.io/
profilepic: dmitrii_ostrovskii.jpg
position: Postdoc
movedto: University of South California
alumni: true
alumni_date: 2019
"Recanati":
firstname: Antoine
url: https://www.di.ens.fr/~recanati/
profilepic: antoine_recanati.jpg
position: PhD student
movedto: Sancare
alumni: true
alumni_date: 2018
"Scieur":
firstname: Damien
url: https://damienscieur.com/
profilepic: unknown.jpg
position: PhD student
movedto: Princeton University
alumni: true
alumni_date: 2018
"Roulet":
firstname: Vincent
url: https://vroulet.github.io/
profilepic: vincent_roulet.jpg
position: PhD student
movedto: University of Washington
alumni: true
alumni_date: 2018
"Chizat":
firstname: Lenaïc
url: https://lchizat.github.io/
profilepic: lenaic_chizat.png
position: Postdoc
movedto: CNRS
alumni: true
alumni_date: 2018
"Leblond":
firstname: Rémi
url: https://www.linkedin.com/in/remileblond/
profilepic: remi_leblond.jpeg
position: PhD student
movedto: Google Deepmind
alumni: true
alumni_date: 2018
"Alayrac":
firstname: Jean-Baptiste
url: http://www.jbalayrac.com/
profilepic: jeanbaptiste_alayrac.png
position: PhD student
movedto: Google Deepmind
alumni: true
alumni_date: 2018
"Garreau":
firstname: Damien
url: https://sites.google.com/view/damien-garreau/home
profilepic: damien_garreau.jpg
position: PhD student
movedto: Max Planck Institute
alumni: true
alumni_date: 2017
"Flammarion":
firstname: Nicolas
url: https://www.epfl.ch/labs/tml/
profilepic: nicolas_flammarion.jpeg
position: PhD student
movedto: EPFL
alumni: true
alumni_date: 2017
"Dupuy":
firstname: Christophe
url: https://www.linkedin.com/in/christophe-dupuy-758b793b/
profilepic: christophe_dupuy.jpg
position: PhD student
movedto: Amazon
alumni: true
alumni_date: 2017
"Dieuleveut":
firstname: Aymeric
url: http://www.cmap.polytechnique.fr/~aymeric.dieuleveut/
profilepic: aymeric_dieuleveut.jpg
position: PhD student
movedto: EPFL
alumni: true
alumni_date: 2017
"Pedregosa":
firstname: Fabian
url: https://fa.bianp.net/
profilepic: fabian_pedregosa.jpeg
position: Postdoc
movedto: UC Berkeley
alumni: true
alumni_date: 2017
"Gower":
firstname: Robert
url: https://gowerrobert.github.io/
profilepic: robert_gower.png
position: Postdoc
movedto: Telecom Paris
alumni: true
alumni_date: 2017
"Germain":
firstname: Pascal
url: http://www.pascalgermain.info/
profilepic: pascal_germain.jpg
position: Research scientist
movedto: Inria Lille
alumni: true
alumni_date: 2017
"Boumal":
firstname: Nicolas
url: https://www.nicolasboumal.net/
profilepic: nicolas_boumal.jpg
position: Postdoc
movedto: Princeton University
alumni: true
alumni_date: 2016
"Schatz":
firstname: Thomas
url: https://thomas.schatz.cogserver.net/
profilepic: thomas_schatz.png
position: PhD student
movedto: University of Marylan
alumni: true
alumni_date: 2016
"Podosinnikova":
firstname: Anastasia
url: https://x.com/apodosin
profilepic: anastasia_podosinnikova.jpg
position: PhD student
movedto: MIT
alumni: true
alumni_date: 2016
"Andrieu":
firstname: Loic
url: https://sites.google.com/view/damien-garreau/home
profilepic: loic_andrieu.jpg
position: PhD student
movedto: IGN & MATIS
alumni: true
alumni_date: 2016
"Bermanis":
firstname: Amit
url: https://www.linkedin.com/in/amit-bermanis
profilepic: unknown.jpg
position: Postdoc
movedto: University of Toronto
alumni: true
alumni_date: 2016
"Lacoste-Julien":
firstname: Simon
url: https://www-labs.iro.umontreal.ca/~slacoste/
profilepic: simon_lacoste.jpg
position: Research scientist
movedto: Université de Montréal
alumni: true
alumni_date: 2016
"Osokin":
firstname: Anton
url: https://aosokin.github.io/
profilepic: anton_osokin.jpg
position: Postdoc
movedto: HSE Moscow
alumni: true
alumni_date: 2015
"Perchet":
firstname: Vianney
url: https://vianney.ai
profilepic: vianney_perchet.jpeg
position: Research scientist
movedto: CREST-ENSAE
alumni: true
alumni_date: 2015
"Arlot":
firstname: Sylvain
url: https://www.imo.universite-paris-saclay.fr/~arlot/
profilepic: sylvain_arlot.jpeg
position: Research scientist
movedto: Université Paris-Sud
alumni: true
alumni_date: 2015
"Kumar":
firstname: Sesh
url: https://seshkumar.github.io/
profilepic: sesh_kumar.jpg
position: PhD student
movedto: IST Austria
alumni: true
alumni_date: 2015
"Lajugie":
firstname: Rémi
url: http://remi-lajugie.fr/
profilepic: unknown.jpg
position: Research scientist
movedto: Lycée Murat d'Issoire
alumni: true
alumni_date: 2015
"Couzinié-Devy":
firstname: Florent
url: https://www.linkedin.com/in/florent-couzinie-devy-89946094/
profilepic: unknown.jpg
position: PhD student
movedto: VitaDX
alumni: true
alumni_date: 2015
"Shervashidze":
firstname: Nino
url: https://members.cbio.mines-paristech.fr/~nshervashidze/
profilepic: nino_hervashidze.jpg
position: Postdoc
movedto: Mines ParisTech - Curie Institute
alumni: true
alumni_date: 2015
"Bamdev":
firstname: Mishra
url: https://bamdevmishra.in/
profilepic: bamdev_mishra.jpeg
position: PhD student
movedto: Max Planck Institute
alumni: true
alumni_date: 2014
"Grave":
firstname: Edouard
url: https://www.linkedin.com/in/edouard-grave-63099823
profilepic: edouard_grave.jpeg
position: PhD student
movedto: UC Berkeley
alumni: true
alumni_date: 2014
"Nelakanti":
firstname: Anil
url: https://www.linkedin.com/in/anil-nelakanti-333022b1
profilepic: unknown.jpg
position: PhD student
movedto: Indian Institute of Technology
alumni: true
alumni_date: 2014
"Solnon":
firstname: Matthieu
url: https://www.linkedin.com/in/matthieu-solnon-064a1229a/
profilepic: unknown.jpg
position: PhD student
movedto: Lycée la Martinière Monplaisir
alumni: true
alumni_date: 2013
"Obozinski":
firstname: Guillaume
url: http://imagine.enpc.fr/~obozinsg/
profilepic: guillaume_obozinski.jpg
position: Research scientist
movedto: Ecole des Ponts - ParisTech
alumni: true
alumni_date: 2013
"Schmidt":
firstname: Mark
url: https://www.cs.ubc.ca/~schmidtm/
profilepic: mark_schmidt.jpg
position: Postdoc
movedto: University of British Columbia
alumni: true
alumni_date: 2013
"Audibert":
firstname: Jean-Yves
url: https://imagine.enpc.fr/~audibert/
profilepic: jean_yves_audibert.jpg
position: Research scientist
movedto: Capital Fund Management
alumni: true
alumni_date: 2013
"Benoit":
firstname: Louise
url: /
profilepic: unknown.jpg
position: PhD student
movedto: none
alumni: true
alumni_date: 2013
"Cour":
firstname: Timothee
url: http://www.timotheecour.com/