Skip to content

Commit c5e2c74

Browse files
committed
Fix highlights table rendering and styling
- Convert highlights to proper markdown table format - Add seamless table styling to hide borders and headers - Style date column with consistent formatting - Maintain scrollable container with hidden scrollbars - Ensure proper markdown rendering within table cells
1 parent da11efd commit c5e2c74

File tree

2 files changed

+62
-23
lines changed

2 files changed

+62
-23
lines changed

_sass/custom/custom.scss

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,36 @@ $pink-300: #dd2cd4;
7272
// Smooth scrolling
7373
scroll-behavior: smooth;
7474
-webkit-overflow-scrolling: touch;
75+
76+
// Style the table to look seamless
77+
table {
78+
border: none;
79+
background: transparent;
80+
81+
th, td {
82+
border: none;
83+
padding: 0.25rem 0.5rem 0.25rem 0;
84+
background: transparent;
85+
vertical-align: top;
86+
}
87+
88+
// First column (dates) styling
89+
td:first-child {
90+
font-weight: 500;
91+
white-space: nowrap;
92+
padding-right: 1rem;
93+
min-width: 100px;
94+
}
95+
96+
// Hide table header
97+
thead {
98+
display: none;
99+
}
100+
}
75101
}
76102

77103
// Reduce spacing around publication dividers
78-
#publications hr {
104+
#divider hr {
79105
margin: 1rem 0; // Reduce from default (usually 1.5rem or 2rem)
80106
border: none;
81107
border-top: 1px solid #e1e4e8;

index.md

Lines changed: 35 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,35 @@ Outside of research, I am a photographer, and a home barista. I enjoy exploring
2424
# highlights
2525

2626
<div id="highlights" markdown="1">
27-
June 2025 | I started an internship at [Meta FAIR](https://ai.meta.com/research/) in Paris. I will spend the next 6 months working on multimodal LLMs.
28-
Apr 2025 | I will be a TA for the [Foundation Models (FoMo)](https://uvafomo.github.io) course at UvA.
29-
Mar 2025 | Our work on [Hyperbolic Safety-Aware Vision-Language Models](https://arxiv.org/abs/2503.12127) is accepted to CVPR 2025 as a Highlight! I will be presenting this work in-person at the conference.
30-
Jun 2024 | Visiting [Rita Cucchiara](https://aimagelab.ing.unimore.it/imagelab/person.asp?idpersona=1) at [University of Modena and Reggio Emilia](https://www.unimore.it/) until September 2024.
31-
2023 | Reviewed papers for ICCV 2023, WiCV Workshop @ CVPR 2023, NeurIPS 2023 and ICLR 2024.
32-
Nov 2022 | Teaching Assistant for Applied Machine Learning course.
33-
Sep 2022 | I presented a poster on our NeurIPS 2022 [paper](https://arxiv.org/abs/2206.08704) the [ELLIS Doctoral Symposium 2022](https://ellisalicante.org/eds2022/) in Alicante, Spain!
34-
Sep 2022 | Our work on [Maximum Separation](https://arxiv.org/abs/2206.08704) is accepted to NeurIPS 2022 ! I will be presenting this work in-person at the conference. I will also present this work as a contributed talk at the Women in Machine Learning workshop.
35-
Jun 2022 | New preprint on arXiv!: [Maximum Class Separation as Inductive Bias in One Matrix](https://arxiv.org/abs/2206.08704)
36-
Jun 2022 | We organized the in-person and virtual [Women in Computer Vision Workshop](https://sites.google.com/view/wicvcvpr2022/home) at CVPR 2022!
37-
Nov 2021 | Teaching Assistant for Applied Machine Learning course
38-
Oct 2021 | I joined PhD at VIS Lab, University of Amsterdam.
39-
Oct 2021 | We organized the Women in Computer Vision (WiCV) [Social](https://iccv2021.thecvf.com/networking-sessions) at ICCV 2021!
40-
Jun 2021 | We organized the [Women in Computer Vision Workshop](https://sites.google.com/view/wicvcvpr2021/home) at CVPR 2021!
41-
Aug 2020 | Presented [poster](https://smiles.skoltech.ru/poster-presentations) on Region based Active Learning for Semantic Segmentation at **Summer School of Machine Learning at Skoltech (SMILES)**
42-
Aug 2019 | Reviewed papers for **Women in Machine Learning (WiML) workshop**, co-located with **NeurIPS 2019**.
43-
Jun 2019 | Defended my Master's [thesis](http://web2py.iiit.ac.in/research_centres/publications/view_publication/mastersthesis/769)!
44-
May 2019 | Started working as Computer Vision Researcher at **Research and Technology Center, Bosch**. Excited to work on problems related to Autonomous Driving. Collaborators: [Amit Kale](https://www.linkedin.com/in/kaleamit/), [Yasaswi Bharadwaj](https://www.linkedin.com/in/yasaswi-bharadwaj-katta-87647555), [Hiranmai M.](https://www.linkedin.com/in/hiranmai-4b0a3398/), [Subramanya Bharadwaj](https://www.linkedin.com/in/subramanya-bharadwaj-63b10758/)
45-
Nov 2018 | Paper on _Region Based Active Learning for Efficient Labelling in Semantic Segmentation_ accepted to [WACV 2019](http://wacv19.wacv.net) [[link]](https://ieeexplore.ieee.org/document/8659293)
46-
Jun 2018 - Oct 2018 | Interning at **Research and Technology Center, Bosch**. Mentors: [Guruprasad Hegde](https://www.linkedin.com/in/guruprasad-hegde-657b81a/), [Amit Kale](https://www.linkedin.com/in/kaleamit/)
47-
Apr 2018 | Presenting our work on **Active Learning for Semantic Segmentation** at 1st Research Symposium, IIIT Hyderabad
27+
28+
| Date | Event |
29+
|------|-------|
30+
| June 2025 | I started an internship at [Meta FAIR](https://ai.meta.com/research/) in Paris. I will spend the next 6 months working on multimodal LLMs. |
31+
| Apr 2025 | I will be a TA for the [Foundation Models (FoMo)](https://uvafomo.github.io) course at UvA. |
32+
| Mar 2025 | Our work on [Hyperbolic Safety-Aware Vision-Language Models](https://arxiv.org/abs/2503.12127) is accepted to CVPR 2025 as a Highlight! I will be presenting this work in-person at the conference. |
33+
| Jun 2024 | Visiting [Rita Cucchiara](https://aimagelab.ing.unimore.it/imagelab/person.asp?idpersona=1) at [University of Modena and Reggio Emilia](https://www.unimore.it/) until September 2024. |
34+
| 2023 | Reviewed papers for ICCV 2023, WiCV Workshop @ CVPR 2023, NeurIPS 2023 and ICLR 2024. |
35+
| Nov 2022 | Teaching Assistant for Applied Machine Learning course. |
36+
| Sep 2022 | I presented a poster on our NeurIPS 2022 [paper](https://arxiv.org/abs/2206.08704) the [ELLIS Doctoral Symposium 2022](https://ellisalicante.org/eds2022/) in Alicante, Spain! |
37+
| Sep 2022 | Our work on [Maximum Separation](https://arxiv.org/abs/2206.08704) is accepted to NeurIPS 2022 ! I will be presenting this work in-person at the conference. I will also present this work as a contributed talk at the Women in Machine Learning workshop. |
38+
| Jun 2022 | New preprint on arXiv!: [Maximum Class Separation as Inductive Bias in One Matrix](https://arxiv.org/abs/2206.08704) |
39+
| Jun 2022 | We organized the in-person and virtual [Women in Computer Vision Workshop](https://sites.google.com/view/wicvcvpr2022/home) at CVPR 2022! |
40+
| Nov 2021 | Teaching Assistant for Applied Machine Learning course |
41+
| Oct 2021 | I joined PhD at VIS Lab, University of Amsterdam. |
42+
| Oct 2021 | We organized the Women in Computer Vision (WiCV) [Social](https://iccv2021.thecvf.com/networking-sessions) at ICCV 2021! |
43+
| Jun 2021 | We organized the [Women in Computer Vision Workshop](https://sites.google.com/view/wicvcvpr2021/home) at CVPR 2021! |
44+
| Aug 2020 | Presented [poster](https://smiles.skoltech.ru/poster-presentations) on Region based Active Learning for Semantic Segmentation at **Summer School of Machine Learning at Skoltech (SMILES)** |
45+
| Aug 2019 | Reviewed papers for **Women in Machine Learning (WiML) workshop**, co-located with **NeurIPS 2019**. |
46+
| Jun 2019 | Defended my Master's [thesis](http://web2py.iiit.ac.in/research_centres/publications/view_publication/mastersthesis/769)! |
47+
| May 2019 | Started working as Computer Vision Researcher at **Research and Technology Center, Bosch**. Excited to work on problems related to Autonomous Driving. Collaborators: [Amit Kale](https://www.linkedin.com/in/kaleamit/), [Yasaswi Bharadwaj](https://www.linkedin.com/in/yasaswi-bharadwaj-katta-87647555), [Hiranmai M.](https://www.linkedin.com/in/hiranmai-4b0a3398/), [Subramanya Bharadwaj](https://www.linkedin.com/in/subramanya-bharadwaj-63b10758/) |
48+
| Nov 2018 | Paper on _Region Based Active Learning for Efficient Labelling in Semantic Segmentation_ accepted to [WACV 2019](http://wacv19.wacv.net) [[link]](https://ieeexplore.ieee.org/document/8659293) |
49+
| Jun 2018 - Oct 2018 | Interning at **Research and Technology Center, Bosch**. Mentors: [Guruprasad Hegde](https://www.linkedin.com/in/guruprasad-hegde-657b81a/), [Amit Kale](https://www.linkedin.com/in/kaleamit/) |
50+
| Apr 2018 | Presenting our work on **Active Learning for Semantic Segmentation** at 1st Research Symposium, IIIT Hyderabad |
51+
4852
</div>
4953

5054

5155
# publications
52-
{: #publications}
5356

5457
<span class="fs-4" style="background-color:rgba(255, 221, 126, 0.3)">
5558
featured publications
@@ -68,6 +71,8 @@ Tejaswi Kasarla, [Max van Spengler](https://nl.linkedin.com/in/max-van-spengler-
6871
</span>
6972

7073
---
74+
{: #divider}
75+
7176
<span class="fs-5" style="background-color:rgba(255, 221, 126, 0.3)">
7277
Hyperbolic Safety-Aware Vision-Language Models
7378
</span>
@@ -80,6 +85,8 @@ Hyperbolic Safety-Aware Vision-Language Models
8085
</span>
8186

8287
---
88+
{: #divider}
89+
8390
<span class="fs-5">
8491
Maximally Separated Active Learning
8592
</span>
@@ -91,6 +98,8 @@ Tejaswi Kasarla, [Abhishek Jha](https://abskjha.github.io){: .text-grey-dk-300 t
9198
</span>
9299

93100
---
101+
{: #divider}
102+
94103
<span class="fs-5">
95104
Lightweight Uncertainty Quantification with Simplex Semantic Segmentation for Terrain Traversability
96105
</span>
@@ -102,6 +111,8 @@ Lightweight Uncertainty Quantification with Simplex Semantic Segmentation for Te
102111
</span>
103112

104113
---
114+
{: #divider}
115+
105116
<span class="fs-5" style="background-color:rgba(255, 221, 126, 0.3)">
106117
Maximum Class Separation as Inductive Bias in One Matrix
107118
</span>
@@ -115,6 +126,8 @@ Also a contributed talk at [WiML Workshop](https://sites.google.com/view/wiml202
115126
</span>
116127

117128
---
129+
{: #divider}
130+
118131
<span class="fs-5">
119132
Region-Based Active Learning for Efficient Labelling in Semantic Segmentation
120133
</span>

0 commit comments

Comments
 (0)