-
Notifications
You must be signed in to change notification settings - Fork 7
/
Record2018.html
993 lines (870 loc) · 20.1 KB
/
Record2018.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
<!DOCTYPE html>
<html>
<head>
<title>How to update</title>
</head>
<body>
<a><img src="./Logo_stringsbeijing.png"/></a>
<!-- <h2>Welcome to String Beijing</h2> -->
<br>
<div id="past_seminars_2018">
<h3>Past seminars in 2018</h3>
<h4> Dec 24 - Dec 30, 2018</h4>
<table border="1">
<tr>
<td>
Shunyu Yao <br> THU
</td>
<td>
12:00 pm <br> Mon, Dec 24
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
On space of integrable quantum field theories </a>
</td>
</tr>
<tr>
<td>
Yunfeng Jiang <br> CERN
</td>
<td>
9:30-12:00 am <br> Tue, Dec 25
</td>
<td>
ITP New. B 6620
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/yjsgjkc/201812/t20181211_5209614.html" target="_blank">
Lectures on solvable irrelevant deformations of 2d quantum field theories (2) </a>
</td>
</tr>
<tr>
<td>
Multi speakers
</td>
<td>
9:00-16:30 <br> Wed, Dec 26
</td>
<td>
B105, CHEP-PKU
</td>
<td>
<a href="https://indico.ihep.ac.cn/event/9115/">AdS/CFT对应中的可积性小型研讨会</a>
</td>
</tr>
<tr>
<td>
Yunfeng Jiang <br> CERN
</td>
<td>
9:30-12:00 am <br> Thu, Dec 27
</td>
<td>
<span style="color: black;">ITP New. B 6420</span>
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/yjsgjkc/201812/t20181211_5209614.html" target="_blank">
Lectures on solvable irrelevant deformations of 2d quantum field theories (3) </a>
</td>
</tr>
<tr>
<td>
Jihuan Tian <br> Northeastern University
</td>
<td>
1:30 pm <br> Thu, Dec 27
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> Non-simply-laced symmetry algebras in F-theory on singular spaces </a>
</td>
</tr>
</table>
<h4> Dec 17 - Dec 21, 2018</h4>
<table border="1">
<tr>
<td>
Wenxin Lai, PKU <br> & Yu Hao, NKU
</td>
<td>
12:00 pm, Mon <br> Dec 17
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to orbifolds and its applications in CFT </a>
</td>
</tr>
<tr>
<td>
Si Li <br> YMSC
</td>
<td>
11.45 am, Thu <br> Dec 20
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> Homotopy Algebras in Higher Spin Theory </a>
</td>
</tr>
<tr>
<td>
Yunfeng Jiang <br> CERN
</td>
<td>
9:30-12:00 am <br> Fri, Dec 21
</td>
<td>
ITP New. B 6620
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/yjsgjkc/201812/t20181211_5209614.html" target="_blank">
Lectures on solvable irrelevant deformations of 2d quantum field theories (1) </a>
</td>
</tr>
</table>
<h4> Dec 10 - Dec 16, 2018</h4>
<table border="1">
<tr>
<td>
Pankaj Chaturvedi <br> YMSC, Tsinghua
</td>
<td>
12:00 pm, Mon <br> Dec 10
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Zhenjie Li <br> ITP
</td>
<td>
1:00 pm, Mon <br> Dec 10
</td>
<td>
ITP Old B. 322
</td>
<td>
Journal club: World sheet cyclohedron and kinematic cyclohedron
</td>
</tr>
<tr>
<td>
Babak Haghighat <br> YMSC, Tsinghua
</td>
<td>
2:30 pm, Wed <br> Dec 12
</td>
<td>
ITP Old B. 322
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201812/t20181211_5209629.html" target="_blank">
Riemann-Theta Boltzmann Machine </a>
</td>
</tr>
<tr>
<td>
Sangmin Lee <br>
</td>
<td>
1:30 pm, Thu <br> Dec 13
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> TBA </a>
</td>
</tr>
</table>
<h4> Dec 03 - Dec 09, 2018</h4>
<table border="1">
<tr>
<td>
Gang Yang <br> ITP
</td>
<td>
1:00 pm, Mon <br> Dec 03
</td>
<td>
ITP Old. B 322
</td>
<td>
From Instanton Partition function to Thermodynamic Bethe Ansatz
</td>
</tr>
<tr>
<td>
Matthijs Hogervorst <br> Perimeter Institute
</td>
<td>
2:30 pm, Wed <br> Dec 05
</td>
<td>
ITP Old. B 322
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201811/t20181129_5195307.html" target="_blank"> Hamiltonian truncation and the S^3 partition function </a>
</td>
</tr>
<tr>
<td>
Alex Belin <br> University of Amsterdam
</td>
<td>
1:30 pm, Thu <br> Dec 6
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> Holographic Symplectic forms and extremal volumes: a new York time story </a>
</td>
</tr>
</table>
<h4> Nov 26 - Dec 02, 2018</h4>
<table border="1">
<tr>
<td>
Zhou-Yu Xian <br> ITP
</td>
<td>
1:00 pm, Mon <br> Nov 26
</td>
<td>
ITP Old. B 322
</td>
<td>
Nearly AdS2 holography
</td>
</tr>
<tr>
<td>
Multi-speakers
</td>
<td>
09:25 - 17:00, Wed <br> Nov 28
</td>
<td>
ITP Old. B 322
</td>
<td>
<a href="./intdeformCFT.html">Mini-workshop on integrable deformations of CFTs</a>
</td>
</tr>
<tr>
<td>
Max Riegler <br> ULB
</td>
<td>
1:30 pm, Thu <br> Nov 29
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> Warped Black Holes in Lower-Spin Gravity </a>
</td>
</tr>
</table>
<h4> Nov 19-25, 2018</h4>
<table border="1">
<tr>
<td>
Zi-Zhi Wang <br> IASTU
</td>
<td>
12:00 pm, Mon <br> Nov 19
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Ellis Yuan <br> ZJU
</td>
<td>
2:30 pm, Tue <br> Nov 20
</td>
<td>
ITP New. B 6620
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201811/t20181120_5189237.html" target="_blank"> Simplicity in AdS Perturbative Dynamics </a>
</td>
</tr>
<tr>
<td>
Eoin Ó Colgáin <br> APCTP
</td>
<td>
2:30 pm, Wed </font> <br> Nov 21
</td>
<td>
ITP Old. B 322
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201811/t20181120_5189232.html" target="_blank"> Back to the future for sigma-models </a>
</td>
</tr>
<tr>
<td>
Yiwen Pan <br> Zhongshan University
</td>
<td>
1:30 pm, Thu <br> Nov 22
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> Fiber-base duality and 3d dualities </a>
</td>
</tr>
</table>
<h4> Nov 12-18, 2018</h4>
<table border="1">
<tr>
<td>
Yuan Zhong <br> Tsinghua University
</td>
<td>
12:00 pm, Mon <br> Nov 12
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Somyadip Thakur <br> ITP
</td>
<td>
1:00 pm, Mon <br> Nov 12
</td>
<td>
ITP Old B. 322
</td>
<td>
Journal club: Integrability of Black Hole Orbits in Maximal Supergravity
</td>
</tr>
<tr>
<td>
Yu Jia <br> IHEP
</td>
<td>
<font color="black"> 2:30 pm, Thursday </font> <br> Nov 15
</td>
<td>
<font color="black"> ITP New B. 6620 </font>
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201811/t20181112_5170084.html" target="_blank">
Schrodinger, Klein-Gordon and Dirac equations for Atoms and Operator Product Expansion </a>
</td>
</tr>
<tr>
<td>
Ioannis Papadimitriou <br> KIAS
</td>
<td>
1:30 pm, Thu <br> Nov 15
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> SQFTs on curved backgrounds and supersymmetry anomalies </a>
</td>
</tr>
</table>
<h4> Nov 05-11, 2018</h4>
<table border="1">
<tr>
<td>
Boyang Yu <br> Tsinghua University
</td>
<td>
12:00 pm, Mon <br> Nov 5
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Falk Hassler <br> University of Oviedo
</td>
<td>
1:30 pm, Thu <br> Nov 8
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> Poisson-Lie T-duality in double field theory </a>
</td>
</tr>
</table>
<h4>Oct 29 - Nov 04, 2018</h4>
<table border="1">
<tr>
<td>
Luis Apolo <br> Tsinghua
</td>
<td>
12:00 pm, Mon <br> Oct 29
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Yong Zhang <br> ITP
</td>
<td>
1:00 pm, Mon <br> Oct 29
</td>
<td>
ITP New. B 6420
</td>
<td>
Journal club: New formulas for bosonic and heterotic string amplitudes
</td>
</tr>
<tr>
<td>
Haipeng An <br> Tsinghua Uni.
</td>
<td>
2:30 pm, Tuesday <br> Oct 30
</td>
<td>
ITP New. B 6420
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201810/t20181022_5147321.html" target="_blank">
Solving the small-scale astrophysics anomalies with O(100) eV fermionic dark matter </a>
</td>
</tr>
<tr>
<td>
Dieter Luest <br> MPI & LMU Munich
</td>
<td>
4:30 pm, Wed <br> Oct 31
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank">Quantum Aspects of Black Holes</a>
</td>
</tr>
<tr>
<td>
Dieter Luest <br> MPI & LMU Munich
</td>
<td>
1:30 pm, Thu <br> Nov 1
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank">Non-geometric fluxes and non-associativity in string/M-theory</a>
</td>
</tr>
</table>
<h4>Oct 22-28, 2018</h4>
<table border="1">
<tr>
<td>
Shuhang Yang <br> Tsinghua
</td>
<td>
12:00 pm, Mon <br> Oct 22
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Song He <br> ITP
</td>
<td>
1:00 pm, Mon <br> Oct 22
</td>
<td>
ITP Old. B 322
</td>
<td>
Journal club: String amplitudes from QFT and vice versa
</td>
</tr>
<tr>
<td>
Andreas Braun <br> Oxford
</td>
<td>
1:30 pm, Thu <br> Oct 25
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank">What's new in G_2?</a>
</td>
</tr>
</table>
<h4>Oct 15-21, 2018</h4>
<table border="1">
<tr>
<td>
Gongwang Yan <br> IASTU
</td>
<td>
12:00 pm, Mon <br> Oct 15
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Qingjun Jin <br> ITP
</td>
<td>
1:00 pm, Mon <br> Oct 15
</td>
<td>
ITP Old. B 322
</td>
<td>
Journal Club: The CSW integrand and renormalization of N=1 SYM
</td>
</tr>
<tr>
<td>
Alok Laddha <br> Chennai Mathematical Institute
</td>
<td>
2:30 pm, Wed <br> Oct 17
</td>
<td>
ITP Old. B 322
</td>
<td>
Classical Limit of Soft Graviton Theorem and the memory effect
</td>
</tr>
<tr>
<td>
Bartek Czech <br> IASTU
</td>
<td>
1:30 pm, Thu <br> Oct 18
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank">Modular Berry Connection in CFT and Transport in AdS</a>
</td>
</tr>
</table>
<h4>Oct 8-14, 2018</h4>
<table border="1">
<tr>
<td>
Alfredo Najera <br> Instituto de Matematicas UNAM
</td>
<td>
10:00 am, Mon <br> Oct 8
</td>
<td>
Jing zhai 304<br> Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank">
Toric degenerations of cluster varieties, cluster duality and mirror symmetry </a>
</td>
</tr>
<tr>
<td>
Yuxuan Peng <br> ITP
</td>
<td>
1:00 pm, Mon <br> Oct 08
</td>
<td>
ITP Old. B 322
</td>
<td>
Some aspects of screening mechanisms in modified gravity
</td>
</tr>
<tr>
<td>
Shuwei Liu <br> Tsinghua University
</td>
<td>
12:00 pm, Mon <br> Oct 8
</td>
<td>
Jinchunyuan West <br> Conference Room 1, Tsinghua
</td>
<td>
Journal club: <a href="http://thustrings.github.io" target="_blank">
introduction to 2d CFT </a>
</td>
</tr>
<tr>
<td>
Jarah Evslin <br> IMP, CAS
</td>
<td>
1:00 pm, Wed <br> Oct 10
</td>
<td>
ITP New B. 6420
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201810/t20181008_5138030.html" target="_blank"> Towards Explicit States in a Sigma Model </a>
</td>
</tr>
<tr>
<td>
Hossein Yavartanoo <br> ITP
</td>
<td>
1:30 pm, Thu <br> Oct 11
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank"> H0 Tension & Swampland Conjectures </a>
</td>
</tr>
</table>
</div>
<h4>Sep 24-30, 2018</h4>
<table border="1">
<tr>
<td>
Ju Zhu<br>
</td>
<td>
12:00, Tue <br> Sep 25
</td>
<td>
Jinchunyuan West <br>Conference Room 1, Tsinghua
</td>
<td>
Journal club: introduction to 2d CFT
</td>
</tr>
<tr>
<td>
Bin Chen <br> Peking University
</td>
<td>
1:30, Thu <br> Sep 27
</td>
<td>
Jinchunyuan West<br>3rd floor, Tsinghua
</td>
<td>
<a href="http://thustrings.github.io" target="_blank">
Entanglement Entropy in TTbar-Deformed CFT </a>
</td>
</tr>
<tr>
<td>
Hossein Yavartanoo <br> ITP
</td>
<td>
1:00 pm, Fri <br> Sep 28, 2018
</td>
<td>
ITP Old B. 322
</td>
<td>
Journal club: A Review of String Swampland
</td>
</tr>
</table>
<h4>Sep 17-23, 2018</h4>
<table border="1">
<tr>
<td>
Masahito Yamazaki<br>IPMU/Japan
</td>
<td>
2:30, Mon <br> Sep 17
</td>
<td>
ITP New B. 6420
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201809/t20180914_5078409.html" target="_blank">
Do We Live in the Swampland? </a>
</td>
</tr>
<tr>
<td>
Zheng-Xin Liu<br>Renmin U.
</td>
<td>
2:30, Wed <br> Sep 19
</td>
<td>
ITP Old B. 322
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201809/t20180914_5078416.html" target="_blank">
Symmetry Enriched Topological Phases in Three Dimensions </a>
</td>
</tr>
<tr>
<td>
Yinan Wang<br>
</td>
<td>
1:30, Thu <br> Sep 20
</td>
<td>
Jingzhai 304, THU
</td>
<td>
New Constructions of Calabi-Yau manifolds from F-theory
</td>
</tr>
<tr>
<td>
Ke Ren<br>ITP
</td>
<td>
1:00, Fri <br> Sep 21
</td>
<td>
ITP Old B. 322
</td>
<td>
Derivation of nonlocal chiral Lagrangian and IR-UV duality for dynamical equations
</td>
</tr>
</table>
<h4>Sep 10-16, 2018</h4>
<table border="1">
<tr>
<td>
Chi Zhang<br>ITP
</td>
<td>
1:10pm, <br> Sep 10, Mon
</td>
<td>
ITP Old B. 322
</td>
<td>
Amplitudes in N=4 SYM as differential forms
</td>
</tr>
<tr>
<td>
Jinwu Ye<br>CNU & MSU
</td>
<td>
2:30pm, <br> Sep 12, Wed
</td>
<td>
ITP Old B. 322
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201809/t20180910_5070928.html" target="_blank">
Two indices Sachdev-Ye-Kitaev model </a>
</td>
</tr>
</table>
<h4>Sep 03-09, 2018</h4>
<table border="1">
<tr>
<td>
Zhewei Yin<br>Northwestern University
</td>
<td>
2:30pm, <br> Sep 5, Wed
</td>
<td>
ITP New B. 6420
</td>
<td>
<a href="http://www.itp.cas.cn/xshd/ztxxbg/201808/t20180827_5059722.html" target="_blank">
The Infrared Structures of Scalar Effective Field Theories </a>
</td>
</tr>
<tr>
<td>
Matthias Gaberdiel<br>ETH
</td>
<td>
1:30pm, <br> Sep 6, Thu
</td>
<td>
Jinchunyuan West B.<br>3rd floor, Tsinghua
</td>
<td>
AdS3 at the string scale
</td>
</tr>
</table>
</div>
<br><br>
</body>
</html>