fix : add links to pubs
Browse files- package-lock.json +0 -0
- src/data/about.js +2 -1
- src/data/publications.js +10 -10
- src/index.css +3 -3
package-lock.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
src/data/about.js
CHANGED
@@ -7,7 +7,8 @@ const about = {
|
|
7 |
linkedin: "nawaf-a-78731612b",
|
8 |
bio: `I am a second-year PhD student at Friedrich-Schiller-Universität Jena, advised by Dr. Kevin Maik Jablonka.
|
9 |
I work on developing machine learning methods to accelerate scientific discovery.
|
10 |
-
I
|
|
|
11 |
researchInterests: [
|
12 |
"Evaluation and development of foundation models for science",
|
13 |
"Agent workflows for scientific discovery",
|
|
|
7 |
linkedin: "nawaf-a-78731612b",
|
8 |
bio: `I am a second-year PhD student at Friedrich-Schiller-Universität Jena, advised by Dr. Kevin Maik Jablonka.
|
9 |
I work on developing machine learning methods to accelerate scientific discovery.
|
10 |
+
I love building software and bootstrapping pipelines for research with quick feedback.
|
11 |
+
Over the time period I have also learned to colloborate on big projects, complex codebases and maintain them.`,
|
12 |
researchInterests: [
|
13 |
"Evaluation and development of foundation models for science",
|
14 |
"Agent workflows for scientific discovery",
|
src/data/publications.js
CHANGED
@@ -5,31 +5,31 @@ const publications = [
|
|
5 |
authors: "Nawaf Alampara, Santiago Miret, Kevin Maik Jablonka",
|
6 |
venue: "AI4Mat-Vienna 2024 spotlight presentation",
|
7 |
year: "2024",
|
8 |
-
link: "
|
9 |
},
|
10 |
{
|
11 |
id: "llm-chemists",
|
12 |
title: "Are large language models superhuman chemists?",
|
13 |
-
authors: "Adrian Mirza, Nawaf Alampara, et al
|
14 |
-
venue: "
|
15 |
-
year: "
|
16 |
-
link: "
|
17 |
},
|
18 |
{
|
19 |
id: "multimodal-limitations",
|
20 |
title: "Probing the limitations of multimodal language models for chemistry and materials research",
|
21 |
-
authors: "Nawaf Alampara,
|
22 |
venue: "AI4Mat-NeurIPs 2024 spotlight",
|
23 |
year: "2024",
|
24 |
-
link: "
|
25 |
},
|
26 |
{
|
27 |
id: "defect-cluster",
|
28 |
title: "Formation of an extended defect cluster in cuprous oxide",
|
29 |
-
authors: "G Aggarwal, S Chawla, AJ Singh, Nawaf Alampara,
|
30 |
-
venue: "
|
31 |
year: "2023",
|
32 |
-
link: "
|
33 |
}
|
34 |
];
|
35 |
|
|
|
5 |
authors: "Nawaf Alampara, Santiago Miret, Kevin Maik Jablonka",
|
6 |
venue: "AI4Mat-Vienna 2024 spotlight presentation",
|
7 |
year: "2024",
|
8 |
+
link: "https://arxiv.org/abs/2406.17295"
|
9 |
},
|
10 |
{
|
11 |
id: "llm-chemists",
|
12 |
title: "Are large language models superhuman chemists?",
|
13 |
+
authors: "Adrian Mirza, Nawaf Alampara, Sreekanth Kunchapu, Martiño Ríos-García, et al., Kevin Maik Jablonka",
|
14 |
+
venue: "",
|
15 |
+
year: "2024",
|
16 |
+
link: "https://arxiv.org/abs/2404.01475"
|
17 |
},
|
18 |
{
|
19 |
id: "multimodal-limitations",
|
20 |
title: "Probing the limitations of multimodal language models for chemistry and materials research",
|
21 |
+
authors: "Nawaf Alampara, Mara Schilling-Wilhelmi, Martino Rios-Garcia, Indrajeet Mandal , Pranav Khetarpal , Hargun Singh Grover,N. M. Anoop Krishnan and Kevin Maik Jablonka",
|
22 |
venue: "AI4Mat-NeurIPs 2024 spotlight",
|
23 |
year: "2024",
|
24 |
+
link: "https://arxiv.org/pdf/2411.16955"
|
25 |
},
|
26 |
{
|
27 |
id: "defect-cluster",
|
28 |
title: "Formation of an extended defect cluster in cuprous oxide",
|
29 |
+
authors: "G Aggarwal, S Chawla, AJ Singh, Nawaf Alampara, Dayadeep S Monder and K R Balasubramaniam",
|
30 |
+
venue: "Journal of Physics D: Applied Physics",
|
31 |
year: "2023",
|
32 |
+
link: "https://iopscience.iop.org/article/10.1088/1361-6463/ad4a82/meta"
|
33 |
}
|
34 |
];
|
35 |
|
src/index.css
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
@tailwind utilities;
|
4 |
|
5 |
:root {
|
6 |
-
--primary: #
|
7 |
-
--secondary: #
|
8 |
-
--accent: #
|
9 |
--light: #f3e5f5;
|
10 |
--dark: #1a1a1a;
|
11 |
--text: #333333;
|
|
|
3 |
@tailwind utilities;
|
4 |
|
5 |
:root {
|
6 |
+
--primary: #811b06;
|
7 |
+
--secondary: #491802;
|
8 |
+
--accent: #b03e27;
|
9 |
--light: #f3e5f5;
|
10 |
--dark: #1a1a1a;
|
11 |
--text: #333333;
|