import {
HeroCitationBlock,
HeroCitationTitle,
HeroColumn1,
HeroColumn2,
HeroContainer,
HeroContent,
HeroDownloadsImg,
HeroFollowBlock,
HeroImgWrap,
HeroLink,
HeroNewsBlock,
HeroNewsItem,
HeroNewsItemContent,
HeroNewsItemDate,
HeroNewsMoreButton,
HeroNewsTitle,
HeroRow,
Img,
UDLLink,
} from "@/components/HeroSection/HeroElements";
import img from "@/images/book_cover.jpg";
import { useState } from "react";
const citation = `
@book{prince2023understanding,
author = "Simon J.D. Prince",
title = "Understanding Deep Learning",
publisher = "The MIT Press",
year = 2023,
url = "http://udlbook.com"
}
`;
const news = [
{
// date: "03/6/25",
// content: (
//
// New {" "}
//
// slides and video lectures
// {" "}
// that closely follow the book from Thomas Gardos of Boston University.
//
// ),
},
{
date: "02/19/25",
content: (
Three new blogs {" "}
[1]
[2]
[3]
{" "}
on ODEs and SDEs in machine learning.
),
},
{
date: "01/23/25",
content: (
Added{" "}
bibfile
{" "} for book and
LaTeX
{" "}
for all equations
),
},
{
date: "12/17/24",
content: (
Video lectures
{" "}
for chapters 1-12 from Tamer Elsayed of Qatar University.
),
},
{
date: "12/05/24",
content: (
New{" "}
blog
{" "}
on Neural network Gaussian processes
),
},
{
date: "11/14/24",
content: (
New{" "}
blog
{" "}
on Bayesian Neural Networks
),
},
{
date: "08/13/24",
content: (
New{" "}
blog
{" "}
on Bayesian machine learning (function perspective)
),
},
{
date: "08/05/24",
content: (
Added{" "}
interactive figures
{" "}
to explore 1D linear regression, shallow and deep networks, Gabor model.
),
},
{
date: "07/30/24",
content: (
New{" "}
blog
{" "}
on Bayesian machine learning (parameter perspective)
),
},
{
date: "05/22/24",
content: (
New{" "}
blog
{" "}
about the applications of the neural tangent kernel.
),
},
{
date: "05/10/24",
content: (
Positive{" "}
review
{" "}
in Nature Machine Intelligence.
),
},
// {
// date: "03/12/24",
// content: Book now available again.,
// },
{
date: "02/21/24",
content: (
New blog about the{" "}
Neural Tangent Kernel
.
),
},
// {
// date: "02/15/24",
// content: (
//
// First printing of book has sold out in most places. Second printing available
// mid-March.
//
// ),
// },
{
date: "01/29/24",
content: (
New blog about{" "}
gradient flow
{" "}
published.
),
},
{
date: "12/26/23",
content: (
Machine Learning Street Talk{" "}
podcast discussing
book.
),
},
{
date: "12/19/23",
content: (
Deeper Insights{" "}
podcast
{" "}
discussing book.
),
},
{
date: "12/06/23",
content: (
Interview
{" "}
with Borealis AI.
),
},
{
date: "12/05/23",
content: (
Book released by{" "}
The MIT Press
.
),
},
];
export default function HeroSection() {
const [showMoreNews, setShowMoreNews] = useState(false);
const toggleShowMore = () => {
setShowMoreNews((p) => !p);
};
return (
RECENT NEWS:
{(showMoreNews ? news : news.slice(0, 7)).map((item, index) => (
{item.date}
{item.content}
))}
{showMoreNews ? "Show less" : "Show more"}
CITATION:
{citation}
Follow me on{" "}
Twitter or{" "}
LinkedIn
{" "}
for updates.
Download full PDF (29 May 2025)
Buy the book
Answers to selected questions
Errata
);
}