Update index.html
Browse files- index.html +49 -19
index.html
CHANGED
|
@@ -1,19 +1,49 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Hugging Face Network Graphs</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
font-family: Arial, sans-serif;
|
| 10 |
+
line-height: 1.6;
|
| 11 |
+
color: #333;
|
| 12 |
+
max-width: 800px;
|
| 13 |
+
margin: 0 auto;
|
| 14 |
+
padding: 20px;
|
| 15 |
+
}
|
| 16 |
+
h1 {
|
| 17 |
+
color: #4a4a4a;
|
| 18 |
+
}
|
| 19 |
+
.graph-link {
|
| 20 |
+
display: inline-block;
|
| 21 |
+
margin: 10px 0;
|
| 22 |
+
padding: 10px 15px;
|
| 23 |
+
background-color: #4a4a4a;
|
| 24 |
+
color: white;
|
| 25 |
+
text-decoration: none;
|
| 26 |
+
border-radius: 5px;
|
| 27 |
+
transition: background-color 0.3s ease;
|
| 28 |
+
}
|
| 29 |
+
.graph-link:hover {
|
| 30 |
+
background-color: #666;
|
| 31 |
+
}
|
| 32 |
+
</style>
|
| 33 |
+
</head>
|
| 34 |
+
<body>
|
| 35 |
+
<h1>Hugging Face Network Graphs</h1>
|
| 36 |
+
<p>Welcome to the Hugging Face Network Graphs visualization page. Here you can explore two different network graphs representing relationships within the Hugging Face community.</p>
|
| 37 |
+
|
| 38 |
+
<h2>Available Graphs:</h2>
|
| 39 |
+
<a href="co_organization.html" class="graph-link">Hugging Face Organizations Network</a>
|
| 40 |
+
<p>This graph represents the network of Hugging Face organizations and their relationships.</p>
|
| 41 |
+
|
| 42 |
+
<a href="co_user.html" class="graph-link">Hugging Face Users Network</a>
|
| 43 |
+
<p>This graph shows the network of Hugging Face users and their interactions.</p>
|
| 44 |
+
|
| 45 |
+
<footer>
|
| 46 |
+
<p>Created using data from Hugging Face. For more information, visit <a href="https://huggingface.co">huggingface.co</a>.</p>
|
| 47 |
+
</footer>
|
| 48 |
+
</body>
|
| 49 |
+
</html>
|