@@ -19,10 +19,13 @@ const sortedPublications = publications.sort(sortPublicationFn);
1919
2020 <h1 class =' mb-6 mt-5 text-2xl font-bold' >Publication List</h1 >
2121
22- <p >
22+ <p class = ' [&_a]:text-blue-600 dark:[&_a]:text-blue-300 ' >
2323 In the field of machine learning, publishing in conferences is the norm. Top
24- conferences includes NeurIPS (prev. NIPS), ICML, ICLR, AISTATS, UAI, and others.
25- They are peer-reviewed and highly competitive.
24+ conferences includes <a href =' https://neurips.cc' >NeurIPS</a > (prev. NIPS), <a
25+ href =' https://icml.cc' >ICML</a
26+ >, <a href =' https://iclr.cc' >ICLR</a >, <a href =' https://aistats.org' >AISTATS</a >, <a
27+ href =' https://auai.org' >UAI</a
28+ >, and others. They are peer-reviewed and highly competitive.
2629 </p >
2730
2831 <br />
@@ -34,16 +37,6 @@ const sortedPublications = publications.sort(sortPublicationFn);
3437 of the paper.
3538 </p >
3639
37- <Section title =' Thesis' class =' sm:pt-8' >
38- <div class =' flex flex-col gap-y-2 md:flex-row md:gap-x-5 md:gap-y-0' >
39- <div class =' w-full flex-wrap gap-x-4 gap-y-2' >
40- <PublicationList
41- publications ={ sortedPublications .filter ((pub ) => pub .type == " thesis" )}
42- />
43- </div >
44- </div >
45- </Section >
46-
4740 <Section title =' Conference' class =' pt-12' >
4841 <div class =' flex flex-col gap-y-2 md:flex-row md:gap-x-5 md:gap-y-0' >
4942 <div class =' w-full flex-wrap gap-x-4 gap-y-2' >
@@ -83,5 +76,15 @@ const sortedPublications = publications.sort(sortPublicationFn);
8376 </div >
8477 </div >
8578 </Section >
79+
80+ <Section title =' Thesis' class =' sm:pt-8' >
81+ <div class =' flex flex-col gap-y-2 md:flex-row md:gap-x-5 md:gap-y-0' >
82+ <div class =' w-full flex-wrap gap-x-4 gap-y-2' >
83+ <PublicationList
84+ publications ={ sortedPublications .filter ((pub ) => pub .type == " thesis" )}
85+ />
86+ </div >
87+ </div >
88+ </Section >
8689 </div >
8790</PageLayout >
0 commit comments