import Image from "next/image"; import Link from "next/link"; import { getAllPosts } from "@/lib/mdx"; import profileImage from "@/public/profile.jpeg"; export default function Home() { const posts = getAllPosts(); const latestPost = posts[0]; const latestPostHref = latestPost ? `/blog/${latestPost.slug}` : "/blog"; return (

Akshay Kolli / UMass Lowell

World models for RL.

I'm a CS PhD student working on world models for reinforcement learning, ML hardware, GPUs, and deep learning systems.

Latest essay Projects Writing Resume Email
); }