File size: 1,679 Bytes
090da2d |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hugging Face Network Graphs</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #4a4a4a;
}
.graph-link {
display: inline-block;
margin: 10px 0;
padding: 10px 15px;
background-color: #4a4a4a;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.graph-link:hover {
background-color: #666;
}
</style>
</head>
<body>
<h1>Hugging Face Network Graphs</h1>
<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>
<h2>Available Graphs:</h2>
<a href="co_organization.html" class="graph-link">Hugging Face Organizations Network</a>
<p>This graph represents the network of Hugging Face organizations and their relationships.</p>
<a href="co_user.html" class="graph-link">Hugging Face Users Network</a>
<p>This graph shows the network of Hugging Face users and their interactions.</p>
<footer>
<p>Created using data from Hugging Face. For more information, visit <a href="https://huggingface.co">huggingface.co</a>.</p>
</footer>
</body>
</html> |