File size: 894 Bytes
c990683
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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;