-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (127 loc) · 4.8 KB
/
index.html
File metadata and controls
129 lines (127 loc) · 4.8 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" href="/assets/icons/favicon.svg" type="image/svg+xml">
<link rel="alternate icon" href="/assets/icons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png">
<meta name="theme-color" content="#4169E1">
<meta name="description" content="Portfolio of Vikash Singh, AI & LLM Researcher.">
<title>Home - Vikash Singh</title>
<!-- Structured Data: WebSite -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Vikash Singh",
"url": "https://vikash-singh.me/"
}
</script>
<!-- Structured Data: Person -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Vikash Singh",
"url": "https://vikash-singh.me/",
"description": "Vikash Singh is a PhD student at Case Western Reserve University working on making Large Language Models safe, reliable, and formally verifiable. Published researcher at ACL, ICLR, and NeurIPS.",
"jobTitle": "PhD Student and AI Researcher",
"worksFor": {
"@type": "CollegeOrUniversity",
"name": "Case Western Reserve University",
"sameAs": "https://case.edu",
"location": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Cleveland",
"addressRegion": "OH",
"addressCountry": "US"
}
}
},
"affiliation": {
"@type": "CollegeOrUniversity",
"name": "Case Western Reserve University",
"sameAs": "https://case.edu"
},
"alumniOf": [
{"@type": "CollegeOrUniversity", "name": "Case Western Reserve University", "sameAs": "https://case.edu"},
{"@type": "CollegeOrUniversity", "name": "Indian Institute of Technology Mandi", "sameAs": "https://iitmandi.ac.in"}
],
"email": "mailto:vikashjohn2505@gmail.com",
"sameAs": [
"https://github.com/vicky157",
"https://www.linkedin.com/in/vikash-singh-john/",
"https://x.com/vikash_joh60795",
"https://scholar.google.com/citations?user=zt0c4WsAAAAJ",
"https://www.semanticscholar.org/author/Vikash-Singh/2363724234"
],
"homeLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Cleveland",
"addressRegion": "OH",
"postalCode": "44106",
"addressCountry": "US"
}
},
"knowsAbout": [
"Machine Learning",
"Artificial Intelligence",
"Large Language Models",
"AI Interpretability",
"Formal Verification",
"Neurosymbolic Systems",
"Uncertainty Quantification",
"Explainable AI",
"Model Optimization",
"Formal Reasoning",
"LLM Pruning"
]
}
</script>
<!-- MathJax Configuration -->
<script>
window.MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
displayMath: [['$$', '$$'], ['\\[', '\\]']],
processEscapes: true,
processEnvironments: true,
packages: {'[+]': ['ams', 'newcommand', 'configmacros']},
tags: 'ams',
tagSide: 'right',
tagIndent: '0.8em'
},
chtml: {
scale: 1.0,
minScale: 0.5,
matchFontHeight: false,
displayAlign: 'center',
displayIndent: '0em'
},
options: {
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'],
ignoreHtmlClass: 'no-mathjax',
processHtmlClass: 'mathjax'
},
startup: {
ready: function () {
MathJax.startup.defaultReady();
document.dispatchEvent(new Event('mathjax-ready'));
}
}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body data-page="home">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>