import React, { useState, useEffect, useMemo } from "react"; import { generateCalendarData } from "../utils/calendar"; import { OpenSourceHeatmapProps, ProviderInfo, ModelData, CalendarData, } from "../types/heatmap"; import Heatmap from "../components/Heatmap"; import { fetchAllProvidersData, fetchAllAuthorsData } from "../utils/authors"; import UserSearchDialog from "../components/UserSearchDialog"; import ProviderSummary from "../components/ProviderSummary"; import OrganizationCard from "../components/OrganizationCard"; const PROVIDERS: ProviderInfo[] = [ { color: "#ff7000", authors: ["mistralai"] }, { color: "#1877F2", authors: ["meta-llama","facebook", ] }, { color: "#10A37F", authors: ["openai"] }, { color: "#cc785c", authors: ["Anthropic"] }, { color: "#DB4437", authors: ["google"] }, { color: "#5E35B1", authors: ["allenai"] }, { color: "#0088cc", authors: ["apple"] }, { color: "#FEB800", authors: ["microsoft"] }, { color: "#76B900", authors: ["nvidia"] }, { color: "#0088cc", authors: ["deepseek-ai"] }, { color: "#0088cc", authors: ["Qwen"] }, { color: "#4C6EE6", authors: ["CohereLabs"] }, { color: "#4C6EE6", authors: ["ibm-granite"] }, { color: "#A020F0", authors: ["stabilityai"] }, { color: "#FEC912", authors: ["huggingface","HuggingFaceTB","HuggingFaceH4", "HuggingFaceM4", "HuggingFaceFW", "HuggingFaceFV","open-r1","parler-tts","nanotron","lerobot","distilbert"] }, ]; export async function getStaticProps() { try { const allAuthors = PROVIDERS.flatMap(({ authors }) => authors); const uniqueAuthors = Array.from(new Set(allAuthors)); const flatData: ModelData[] = await fetchAllAuthorsData(uniqueAuthors); const updatedProviders = await fetchAllProvidersData(PROVIDERS); const calendarData = generateCalendarData(flatData, updatedProviders); return { props: { calendarData, providers: updatedProviders, }, revalidate: 3600, // regenerate every hour }; } catch (error) { console.error("Error fetching data:", error); return { props: { calendarData: {}, providers: PROVIDERS, }, revalidate: 60, // retry after 1 minute if there was an error }; } } const ProviderHeatmap = React.memo(({ provider, calendarData }: { provider: ProviderInfo, calendarData: CalendarData }) => { const providerName = provider.fullName || provider.authors[0]; const calendarKey = provider.authors[0]; // Use the same key as calendar generation const totalCount = calendarData[calendarKey]?.reduce((sum, day) => sum + day.count, 0) || 0; return (
{/* Organization Header */} {/* Heatmap Section */}
); }); const OpenSourceHeatmap: React.FC = ({ calendarData, providers, }) => { const [isLoading, setIsLoading] = useState(true); useEffect(() => { if (calendarData && Object.keys(calendarData).length > 0) { setIsLoading(false); } }, [calendarData]); const sortedProviders = useMemo(() => providers.sort((a, b) => { const aData = calendarData[a.authors[0]] || []; const bData = calendarData[b.authors[0]] || []; const aCount = aData.reduce((sum, day) => sum + day.count, 0); const bCount = bData.reduce((sum, day) => sum + day.count, 0); return bCount - aCount; }), [providers, calendarData] ); return (

Hugging Face Heatmap 🤗

Open models, datasets, and apps from the top AI labs in the last year.

{/* Provider Summary List */}
{sortedProviders.map((provider, index) => ( ))}
{isLoading ? (

Loading heatmaps...

) : ( <>
{sortedProviders.slice(0, 3).map((provider, index) => ( ))}
{/* Rest of the providers */} {sortedProviders.length > 3 && (
{sortedProviders.slice(3).map((provider, index) => ( ))}
)} )} {/* CTA Section */}

Want Your Own Heatmap?

Search for any Hugging Face organization or user to see their model release activity.

); }; export default OpenSourceHeatmap;