|
<!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> |