Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type LayoutProps = {

export default function RootLayout({ children }: LayoutProps) {
return (
<html lang="en">
<html lang="en" className="overflow-x-hidden">
<body className={poppins.className}>
<Navbar />
<ReactQueryClientProvider>{children}</ReactQueryClientProvider>
Expand Down
18 changes: 18 additions & 0 deletions src/data/ExperienceData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,24 @@ const experienceItems: ExperienceItem[] = [
},
],
},
{
name: "Natural Language Processing Research Assistant",
date: "Oct 2023 - May 2025",
description: [
{
description:
"• Annotated clinical text datasets for negation and hedge detection, supporting biomedical NLP model development",
},
{
description:
"• Built analysis scripts in Python to compare annotation quality, track progress, and optimize workflow efficiency",
},
{
description:
"• Completed CITI training; contributed to ClinScope corpus development",
},
],
},
{
name: "Data Structures and Algorithms Grader",
date: "Oct 2024 - Present",
Expand Down
Loading