Skip to content

Commit 02d8849

Browse files
committed
preview
1 parent dfe0ecf commit 02d8849

File tree

24 files changed

+629
-460
lines changed

24 files changed

+629
-460
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"jsx-a11y/click-events-have-key-events": "warn",
3535
"jsx-a11y/interactive-supports-focus": "warn",
3636
"prettier/prettier": "warn",
37+
"react/no-unescaped-entities": "off",
3738
"no-unused-vars": "off",
3839
"unused-imports/no-unused-vars": "off",
3940
"unused-imports/no-unused-imports": "warn",

app/join/layout.tsx

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
export default function BlogLayout({
2-
children,
3-
}: {
4-
children: React.ReactNode;
5-
}) {
6-
return (
7-
<section className="flex flex-col items-center justify-center gap-4">
8-
<div className="inline-block text-left justify-center p-8">
9-
{children}
10-
</div>
11-
</section>
12-
);
13-
}
14-
2+
children,
3+
}: {
4+
children: React.ReactNode;
5+
}) {
6+
return (
7+
<section className="flex flex-col items-center justify-center gap-4">
8+
<div className="inline-block text-left justify-center p-8">
9+
{children}
10+
</div>
11+
</section>
12+
);
13+
}

app/join/page.tsx

Lines changed: 119 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,123 @@
1-
import { subtitle, title } from "@/components/primitives";
2-
import { Link } from "@nextui-org/link";
3-
import styles from "./JoinPage.module.css"
1+
import styles from "./JoinPage.module.css";
42

53
export default function JoinPage() {
64
return (
7-
<div className={styles.container}>
8-
For perspective students, I appreciate reading the following before reaching out to me through email.
9-
To make it easier for me to identify the applications, use "PhD (or Postdoc, Visiting Student) Application" as your title.
10-
Due to the abundance of application emails, I might not be able to always respond to the email. But if you believe that
11-
you possess the credentials and quality mentioned below, feel free to remind me if you have not received a response after a week.
12-
13-
<h4>Note (special focus):</h4>
14-
<ul>
15-
<li>If you are interested in generative AI and specifically spatial AGI,
16-
we have industrial collaboration opportunities to work on this direction.</li>
17-
<li>If you are interested in applying for PhD program focusing on AI for neuroscience, explicitly mention it in the email when reaching out to me.
18-
I encourage you to check out <a href="https://wti.yale.edu/research/neurocomputation">WTI (computational track)</a>, which I'm a part of.
19-
</li>
20-
<li> If you are interested in AI for computational biology, check out <a href="https://cbb.yale.edu/">Yale CBB program</a>, which I'm also a part of.
21-
</li>
22-
</ul>
23-
24-
<h3>PhDs</h3>
25-
When reaching out to me, it would be best to demonstrate the following in your email.
26-
<ul>
27-
<li><strong>Reaching out early and ask about opportunity for collaboration</strong> with my lab can be a very effective way to stand out from all the candidates.</li>
28-
<li>Highly competitive PhD student applicants usually had <strong>abundant research experiences</strong> prior to the application.
29-
Note that the number of publications is not the crucial factor, but quality, novelty and potential impact of the research are. </li>
30-
<li>A student who had a single top-tier publication, but demonstrated outstanding ability (usually as a first author) in idea formulation,
31-
implementation, experiments, analysis and writing is considered more competitive than a student who participated in many research works
32-
but did not own / lead one from beginning to the end.</li>
33-
<li>Publications in top-tier ML and data mining conferences such as NeurIPS, ICML, ICLR, KDD, WebConf etc. are highly encouraged.
34-
High-impact journal publications in interdisciplinary fields are also highly appreciated.</li>
35-
<li>It is recommended that the field of your prior research is under the broad category of machine learning.
36-
However, the actual research topic does <strong>not</strong> need to be similar to mine,
37-
as long as the candidate demonstrates interests and understanding of the research topics of our lab,
38-
and has demonstrated the good quality as mentioned above.
39-
We welcome diversity at all levels, including skill sets!</li>
40-
</ul>
41-
<h4>Note:</h4>
42-
I understand that while most applicants have prior research experiences and paper in submission,
43-
some of the students do not yet have a top conference publication yet.
44-
I recommend highly motivated students to reach out to me way earlier than the admission deadline,
45-
and join as a collaborator in existing projects, with the goal of a publication. I will be able to occasionally brainstorm, discuss and meet.
46-
Major progress, achievements and paper during the project can better help me advocate for the application.
47-
48-
<h3>Master Students</h3>
49-
I am part of the Yale Computer Science Master Advising Committee. Master students are encouraged to apply
50-
only through the school application portal.
51-
If you are already admitted by a program at Yale and are interested in doing research with me, feel free
52-
to send me an email for further discussions.
53-
54-
<h3>Postdocs</h3>
55-
Postdoc candidates are encouraged to reach out to me as well. Our lab hires, on average, 1 postdoc every 2 years.
56-
57-
<ul>
58-
<li>Successful candidates usually have 3 or more solid and highly impactful publications
59-
in an area, and have a coherent and unified thesis on a specific topic, encompassing a number of works.</li>
60-
<li>Similar to evaluating PhD applicants, I value paper quality over quantity.
61-
The standard will be higher for postdoc candidates.</li>
62-
<li>Prior experiences in leading a team of researchers on a large-scope project will be appreciated.</li>
63-
<li>The candidates are required to have extensive research experiences in
64-
either foundation models, multimodal models, graph learning, trustworthy deep learning or relational reasoning.</li>
65-
</ul>
66-
67-
After passing preliminary screening, The candidate will be asked to give a research talk (remote or in-person) to the
68-
group and talk to lab members, before receiving a decision.
69-
70-
<h3>Visiting Students</h3>
71-
I welcome visiting students / internships at all levels. The duration can be somewhat flexible, although the student is
72-
required to be committed towards finishing a research project for publication (as first author or co-author).
73-
Students are required to demonstrate a strong interest, good background knowledge, strong coding skills and commitment to research
74-
in the research areas mentioned. Prior research experiences are encouraged.
75-
76-
77-
</div>
5+
<div className={styles.container}>
6+
For perspective students, I appreciate reading the following before
7+
reaching out to me through email. To make it easier for me to identify the
8+
applications, use "PhD (or Postdoc, Visiting Student) Application" as your
9+
title. Due to the abundance of application emails, I might not be able to
10+
always respond to the email. But if you believe that you possess the
11+
credentials and quality mentioned below, feel free to remind me if you
12+
have not received a response after a week.
13+
<h4>Note (special focus):</h4>
14+
<ul>
15+
<li>
16+
If you are interested in generative AI and specifically spatial AGI,
17+
we have industrial collaboration opportunities to work on this
18+
direction.
19+
</li>
20+
<li>
21+
If you are interested in applying for PhD program focusing on AI for
22+
neuroscience, explicitly mention it in the email when reaching out to
23+
me. I encourage you to check out{" "}
24+
<a href="https://wti.yale.edu/research/neurocomputation">
25+
WTI (computational track)
26+
</a>
27+
, which I'm a part of.
28+
</li>
29+
<li>
30+
{" "}
31+
If you are interested in AI for computational biology, check out{" "}
32+
<a href="https://cbb.yale.edu/">Yale CBB program</a>, which I'm also a
33+
part of.
34+
</li>
35+
</ul>
36+
<h3>PhDs</h3>
37+
When reaching out to me, it would be best to demonstrate the following in
38+
your email.
39+
<ul>
40+
<li>
41+
<strong>
42+
Reaching out early and ask about opportunity for collaboration
43+
</strong>{" "}
44+
with my lab can be a very effective way to stand out from all the
45+
candidates.
46+
</li>
47+
<li>
48+
Highly competitive PhD student applicants usually had{" "}
49+
<strong>abundant research experiences</strong> prior to the
50+
application. Note that the number of publications is not the crucial
51+
factor, but quality, novelty and potential impact of the research are.{" "}
52+
</li>
53+
<li>
54+
A student who had a single top-tier publication, but demonstrated
55+
outstanding ability (usually as a first author) in idea formulation,
56+
implementation, experiments, analysis and writing is considered more
57+
competitive than a student who participated in many research works but
58+
did not own / lead one from beginning to the end.
59+
</li>
60+
<li>
61+
Publications in top-tier ML and data mining conferences such as
62+
NeurIPS, ICML, ICLR, KDD, WebConf etc. are highly encouraged.
63+
High-impact journal publications in interdisciplinary fields are also
64+
highly appreciated.
65+
</li>
66+
<li>
67+
It is recommended that the field of your prior research is under the
68+
broad category of machine learning. However, the actual research topic
69+
does <strong>not</strong> need to be similar to mine, as long as the
70+
candidate demonstrates interests and understanding of the research
71+
topics of our lab, and has demonstrated the good quality as mentioned
72+
above. We welcome diversity at all levels, including skill sets!
73+
</li>
74+
</ul>
75+
<h4>Note:</h4>I understand that while most applicants have prior research
76+
experiences and paper in submission, some of the students do not yet have
77+
a top conference publication yet. I recommend highly motivated students to
78+
reach out to me way earlier than the admission deadline, and join as a
79+
collaborator in existing projects, with the goal of a publication. I will
80+
be able to occasionally brainstorm, discuss and meet. Major progress,
81+
achievements and paper during the project can better help me advocate for
82+
the application.
83+
<h3>Master Students</h3>I am part of the Yale Computer Science Master
84+
Advising Committee. Master students are encouraged to apply only through
85+
the school application portal. If you are already admitted by a program at
86+
Yale and are interested in doing research with me, feel free to send me an
87+
email for further discussions.
88+
<h3>Postdocs</h3>
89+
Postdoc candidates are encouraged to reach out to me as well. Our lab
90+
hires, on average, 1 postdoc every 2 years.
91+
<ul>
92+
<li>
93+
Successful candidates usually have 3 or more solid and highly
94+
impactful publications in an area, and have a coherent and unified
95+
thesis on a specific topic, encompassing a number of works.
96+
</li>
97+
<li>
98+
Similar to evaluating PhD applicants, I value paper quality over
99+
quantity. The standard will be higher for postdoc candidates.
100+
</li>
101+
<li>
102+
Prior experiences in leading a team of researchers on a large-scope
103+
project will be appreciated.
104+
</li>
105+
<li>
106+
The candidates are required to have extensive research experiences in
107+
either foundation models, multimodal models, graph learning,
108+
trustworthy deep learning or relational reasoning.
109+
</li>
110+
</ul>
111+
After passing preliminary screening, The candidate will be asked to give a
112+
research talk (remote or in-person) to the group and talk to lab members,
113+
before receiving a decision.
114+
<h3>Visiting Students</h3>I welcome visiting students / internships at all
115+
levels. The duration can be somewhat flexible, although the student is
116+
required to be committed towards finishing a research project for
117+
publication (as first author or co-author). Students are required to
118+
demonstrate a strong interest, good background knowledge, strong coding
119+
skills and commitment to research in the research areas mentioned. Prior
120+
research experiences are encouraged.
121+
</div>
78122
);
79-
}
123+
}

app/layout.tsx

Lines changed: 35 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import "@/styles/globals.css";
22
import { Metadata, Viewport } from "next";
3-
import { Link } from "@nextui-org/link";
43
import clsx from "clsx";
4+
import Image from "next/image";
55

66
import { Providers } from "./providers";
77

@@ -47,17 +47,40 @@ export default function RootLayout({
4747
<main className="container mx-auto max-w-6xl pt-4 px-6 flex-grow">
4848
{children}
4949
</main>
50-
{/* <footer className="w-full flex items-center justify-center py-3">
51-
<Link
52-
isExternal
53-
className="flex items-center gap-1 text-current"
54-
href="https://nextui-docs-v2.vercel.app?utm_source=next-app-template"
55-
title="nextui.org homepage"
56-
>
57-
<span className="text-default-600">Powered by</span>
58-
<p className="text-primary">NextUI</p>
59-
</Link>
60-
</footer> */}
50+
<footer className="w-full flex flex-row items-center justify-center pb-3 pt-12 text-center gap-6">
51+
<div>
52+
<p className="text-gray-600">Sponsored by</p>
53+
</div>
54+
<div className="flex items-end gap-6">
55+
<div>
56+
<Image
57+
alt="nsf"
58+
height={60}
59+
src="/sponsors/nsf.png"
60+
width={60}
61+
/>
62+
NSF
63+
</div>
64+
<div>
65+
<Image
66+
alt="snap"
67+
height={60}
68+
src="/sponsors/snap.png"
69+
width={60}
70+
/>
71+
Snap Inc
72+
</div>
73+
<div>
74+
<Image
75+
alt="aws"
76+
height={60}
77+
src="/sponsors/aws.png"
78+
width={60}
79+
/>
80+
AWS
81+
</div>
82+
</div>
83+
</footer>
6184
</div>
6285
</Providers>
6386
</body>

0 commit comments

Comments
 (0)