Xianbao QIAN
commited on
Commit
•
1818208
1
Parent(s):
cddc449
add docs
Browse files- src/app/page.tsx +15 -1
src/app/page.tsx
CHANGED
@@ -258,7 +258,21 @@ export default function Home() {
|
|
258 |
|
259 |
return (
|
260 |
<main className="container mx-auto py-8 bg-white dark:bg-gray-900 text-gray-900 dark:text-white">
|
261 |
-
<h1 className="text-4xl font-bold mb-4">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
<div className="mb-4 flex space-x-4">
|
263 |
<a
|
264 |
href={`?tab=models`}
|
|
|
258 |
|
259 |
return (
|
260 |
<main className="container mx-auto py-8 bg-white dark:bg-gray-900 text-gray-900 dark:text-white">
|
261 |
+
<h1 className="text-4xl font-bold mb-4">Hugging Face Model Derivatives Explorer</h1>
|
262 |
+
<p className="mb-8">
|
263 |
+
This tool allows you to explore the popularity of Hugging Face models based on their derivatives. It pulls model data from publicly exposed files and calculates the number of direct and indirect children for each model using the <code>base_model</code> tag, up to 10 iterations for all children.
|
264 |
+
</p>
|
265 |
+
<div className="mb-8">
|
266 |
+
<h2 className="text-2xl font-bold mb-2">Definitions</h2>
|
267 |
+
<ul className="list-disc list-inside">
|
268 |
+
<li>
|
269 |
+
<strong>Direct Children:</strong> Models that are directly derived from the selected model, i.e., they have the selected model set as their <code>base_model</code>.
|
270 |
+
</li>
|
271 |
+
<li>
|
272 |
+
<strong>All Children:</strong> All models that are derived from the selected model, either directly or indirectly, up to 10 iterations deep. This includes models that have the selected model as their <code>base_model</code>, as well as models derived from those models, and so on.
|
273 |
+
</li>
|
274 |
+
</ul>
|
275 |
+
</div>
|
276 |
<div className="mb-4 flex space-x-4">
|
277 |
<a
|
278 |
href={`?tab=models`}
|