// NO "use client" here. This is a Server Component. import { getSortedPostsData, getAllTags } from "@/lib/posts"; import { FilterableResearchGrid } from "@/components/filterable-research-list"; // Import the new client component export default function ResearchPage() { // These functions run safely on the server because this is a Server Component. const allPosts = getSortedPostsData("research"); const allTags = getAllTags(5, "research"); return (

Research

This section details my scientific publications, primarily focused on advancing machine learning and deep neural networks. My involvement has spanned, from conceptualizing the ideas and developing machine learning models, to providing support to my colleagues.


); }