File size: 8,535 Bytes
08cd799 1c1f44a 6aaff3e 32e1a9b 132e085 d59a538 6aaff3e 02eb851 32e1a9b 6aaff3e 32e1a9b 02eb851 1f7d2c6 1c1f44a 6aaff3e 08cd799 32e1a9b 02eb851 d59a538 cd7a4df 08cd799 32e1a9b 6aaff3e 32e1a9b 6aaff3e 32e1a9b 08cd799 d59a538 94135f6 d59a538 94135f6 d59a538 6aaff3e cd7a4df 08cd799 cd7a4df 08cd799 cd7a4df 6aaff3e 94135f6 08cd799 32e1a9b 132e085 32e1a9b 132e085 32e1a9b 1c1f44a 32e1a9b 08cd799 cd7a4df 32e1a9b 94135f6 d59a538 94135f6 d59a538 32e1a9b d59a538 1f7d2c6 1c1f44a 94135f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
"use client"
import { useEffect, useState } from "react"
import * as duckdb from "@duckdb/duckdb-wasm"
import { Loader2 } from "lucide-react"
import { toast } from 'sonner'
import { useIsMobile } from "@/hooks/useIsMobile"
import { CREATE_VIEWS_QUERY, FETCH_CHART_DATA_QUERY, FETCH_DATASET_LICENSE_DATA_QUERY, FETCH_FINETUNE_MODEL_GROWTH_QUERY, FETCH_MODEL_LICENSE_DATA_QUERY, FETCH_SPACE_SDK_DATA_QUERY, FETCH_TOP_BASE_MODELS_TABLE_QUERY } from "@/lib/queries"
import { AreaChartStacked, ChartDataPoint } from "@/components/area-chart-stacked"
import { CustomPieChart } from "@/components/pie-chart"
import { SimpleArea } from "@/components/simple-area"
import { Button } from "@/components/ui/button"
import { GenericTable } from "@/components/simple-table"
import { CTABanner } from "@/components/cta"
export default function IndexPage() {
const [conn, setConn] = useState<duckdb.AsyncDuckDBConnection | null>(null)
const [chartData, setChartData] = useState<ChartDataPoint[]>([])
const [modelLicenseData, setModelLicenseData] = useState<Array<{ name: string; value: number; fill: string }>>([])
const [datasetLicenseData, setDatasetLicenseData] = useState<Array<{ name: string; value: number; fill: string }>>([])
const [spaceSdkData, setSpaceSdkData] = useState<Array<{ name: string; value: number; fill: string }>>([])
const [baseModel, setBaseModel] = useState("meta-llama/Meta-Llama-3-8B")
const [finetuneModelGrowthData, setFinetuneModelGrowthData] = useState<Array<{ date: Date; count: number }>>([])
const [topFinetunedModels, setTopFinetunedModels] = useState<Array<{ model: string; finetunes: number }> | undefined>(undefined)
const isMobile = useIsMobile()
const [chartDataError, setChartDataError] = useState<string | null>(null)
useEffect(() => {
initDB()
return () => { if (conn) conn.close() }
}, [])
const initDB = async () => {
const CDN_BASE = `https://cdn.jsdelivr.net/npm/@duckdb/duckdb-wasm@next`
const JSDELIVR_BUNDLES = {
mvp: {
mainModule: `${CDN_BASE}/dist/duckdb-mvp.wasm`,
mainWorker: `${CDN_BASE}/dist/duckdb-browser-mvp.worker.js`,
},
eh: {
mainModule: `${CDN_BASE}/dist/duckdb-eh.wasm`,
mainWorker: `${CDN_BASE}/dist/duckdb-browser-eh.worker.js`,
},
}
const bundle = await duckdb.selectBundle(JSDELIVR_BUNDLES)
const worker_url = URL.createObjectURL(
new Blob([`importScripts("${bundle.mainWorker}");`], {
type: "text/javascript",
})
)
const worker = new Worker(worker_url)
const logger = new duckdb.ConsoleLogger()
const db = new duckdb.AsyncDuckDB(logger, worker)
await db.instantiate(bundle.mainModule)
const connection = await db.connect()
await connection.query(CREATE_VIEWS_QUERY)
setConn(connection)
}
useEffect(() => {
if (conn) {
fetchChartData(conn)
}
}, [conn])
const fetchChartData = async (connection: duckdb.AsyncDuckDBConnection) => {
try {
const result = await connection.query(FETCH_CHART_DATA_QUERY)
const data: ChartDataPoint[] = result.toArray().map((row) => ({
month: new Date(row.month),
models: Number(row.models),
datasets: Number(row.datasets),
spaces: Number(row.spaces),
}))
setChartData(data)
setChartDataError(null)
} catch (error) {
console.error("Error fetching chart data:", error)
setChartDataError("There was an issue with the query for the Hugging Face Hub growth chart.")
}
// Only fetch additional data if not on mobile
if (!isMobile) {
const [modelLicenseResult, datasetLicenseResult, spaceSdkResult, topFinetunedModelsResult] =
await Promise.all([
connection.query(FETCH_MODEL_LICENSE_DATA_QUERY),
connection.query(FETCH_DATASET_LICENSE_DATA_QUERY),
connection.query(FETCH_SPACE_SDK_DATA_QUERY),
connection.query(FETCH_TOP_BASE_MODELS_TABLE_QUERY),
])
setModelLicenseData(
modelLicenseResult.toArray().map((row, index) => ({
name: row.tag.replace("license:", ""),
value: Number(row.count),
fill: `hsl(${index * 30}, 70%, 50%)`,
}))
)
setDatasetLicenseData(
datasetLicenseResult.toArray().map((row, index) => ({
name: row.tag.replace("license:", ""),
value: Number(row.count),
fill: `hsl(${index * 30}, 70%, 50%)`,
}))
)
setSpaceSdkData(
spaceSdkResult.toArray().map((row, index) => ({
name: row.sdk,
value: Number(row.count),
fill: `hsl(${index * 30}, 70%, 50%)`,
}))
)
setTopFinetunedModels(topFinetunedModelsResult.toArray().map(row => ({
model: row.model,
finetunes: Number(row.finetunes)
})))
}
}
const handleBaseModelSubmit = async (e: React.FormEvent) => {
e.preventDefault()
if (!conn) {
console.warn("Database connection not established")
toast.error("Database connection not established")
return
}
try {
const result = await conn.query(FETCH_FINETUNE_MODEL_GROWTH_QUERY(baseModel))
const data = result.toArray().map((row: { date: Date; count: bigint }) => ({
date: new Date(row.date),
count: parseInt(row.count.toString())
}))
setFinetuneModelGrowthData(data)
} catch (error) {
console.error("Error executing query:", error)
toast.error(`Failed to fetch data for ${baseModel}`)
}
}
return (
<section className="container grid items-center gap-6 pb-8 pt-6 md:py-10">
<h1 className="text-3xl text-center font-extrabold leading-tight tracking-tighter md:text-4xl">
Hugging Face Hub Stats
</h1>
<div className="flex flex-col gap-4 max-w-6xl mt-10 w-full mx-auto">
{chartDataError ? (
<div className="text-center text-red-500">{chartDataError}</div>
) : (
<AreaChartStacked data={chartData} />
)}
</div>
{!isMobile && (
<>
<div className="flex flex-wrap gap-8 max-w-6xl mt-10 w-full mx-auto">
<div className="flex-1 min-w-[300px]">
<CustomPieChart
title="Model Licenses"
data={modelLicenseData}
dataKey="value"
/>
</div>
<div className="flex-1 min-w-[300px]">
<CustomPieChart
title="Dataset Licenses"
data={datasetLicenseData}
dataKey="value"
/>
</div>
<div className="flex-1 min-w-[300px]">
<CustomPieChart
title="Space SDKs"
data={spaceSdkData}
dataKey="value"
/>
</div>
</div>
<div className="flex flex-col gap-4 max-w-4xl my-36 w-full mx-auto">
<h2 className="text-4xl font-bold my-10 text-center">Finetuned Model Leaderboard</h2>
<GenericTable
data={topFinetunedModels}
caption="Top 10 base models by number of finetunes"
/>
</div>
<div className="flex flex-col items-center gap-4 max-w-6xl w-full mx-auto">
<h2 className="text-4xl font-bold text-center">Finetuned Model Growth</h2>
<p className="text-center mb-4">Find how many finetuned models have been created for your favorite model</p>
<form onSubmit={handleBaseModelSubmit} className="flex flex-col gap-2 w-full max-w-sm">
<input
type="text"
value={baseModel}
onChange={(e) => setBaseModel(e.target.value.trim())}
placeholder="Base Model Name"
className="px-4 w-full py-2 border rounded"
/>
<Button type="submit" className="w-full">
Submit
</Button>
</form>
</div>
{finetuneModelGrowthData.length > 0 && (
<div className="flex flex-col gap-4 max-w-4xl mt-10 w-full mx-auto">
<SimpleArea
title="Finetune Model Growth"
description={`Showing the growth of finetune models over time for ${baseModel || "your favorite model"}`}
data={finetuneModelGrowthData}
/>
</div>
)}
</>
)}
<div className="my-20 lg:my-48">
<CTABanner />
</div>
</section>
)
} |