profile / src /data /education.js
n0w0f's picture
Replace FastAPI with React portfolio
c990683
raw
history blame contribute delete
894 Bytes
const education = [
{
id: "phd",
degree: "PhD Machine Learning",
institution: "Friedrich-Schiller-Universität Jena",
period: "Oct 2023 – 2026",
description: [
"Evaluation and development of foundation models for scientific applications",
"Advisor: Dr. Kevin Maik Jablonka"
]
},
{
id: "masters",
degree: "MSc Energy Science",
institution: "Indian Institute of Technology Bombay",
period: "2018 – 2020",
gpa: "8.55/10.0",
description: [
"Thesis: Defects and Dopants in Cu₂O - DFT study",
"Advisor: Prof. K R Balasubramaniam"
]
},
{
id: "bachelors",
degree: "BSc Physics",
institution: "Birla Institute of Technology Mesra",
period: "2015 – 2018",
gpa: "8.5/10.0",
description: []
}
];
export default education;