Update index.html
Browse files- index.html +56 -12
index.html
CHANGED
@@ -30,17 +30,57 @@
|
|
30 |
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
31 |
padding: 15px 0;
|
32 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
h1 {
|
35 |
color: var(--primary-color);
|
36 |
margin: 0 0 10px 0;
|
37 |
font-size: 1.8em;
|
38 |
}
|
|
|
|
|
|
|
|
|
|
|
39 |
.subtitle {
|
40 |
font-size: 1em;
|
41 |
color: var(--secondary-color);
|
42 |
margin: 0;
|
43 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
.graph-container {
|
45 |
flex-grow: 1;
|
46 |
width: 100%;
|
@@ -56,12 +96,6 @@
|
|
56 |
text-align: center;
|
57 |
padding: 10px 0;
|
58 |
}
|
59 |
-
.logo {
|
60 |
-
max-width: 100px;
|
61 |
-
height: auto;
|
62 |
-
vertical-align: middle;
|
63 |
-
margin-right: 10px;
|
64 |
-
}
|
65 |
.social-links {
|
66 |
display: inline-block;
|
67 |
vertical-align: middle;
|
@@ -78,7 +112,7 @@
|
|
78 |
width: 20px;
|
79 |
height: 20px;
|
80 |
}
|
81 |
-
|
82 |
display: flex;
|
83 |
justify-content: center;
|
84 |
align-items: center;
|
@@ -116,9 +150,20 @@
|
|
116 |
</style>
|
117 |
</head>
|
118 |
<body>
|
119 |
-
<header>
|
120 |
-
<
|
121 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
</header>
|
123 |
|
124 |
<div class="graph-container">
|
@@ -136,7 +181,6 @@
|
|
136 |
</div>
|
137 |
|
138 |
<footer>
|
139 |
-
<img src="https://huggingface.co/spaces/bunkalab/README/raw/main/bunka_logo.png" alt="Bunka Logo" class="logo">
|
140 |
<div class="social-links">
|
141 |
<a href="https://github.com/charlesdedampierre/BunkaTopics" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/github-logo.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2dpdGh1Yi1sb2dvLnBuZyIsImlhdCI6MTcyNDgzOTk3NywiZXhwIjoxNzg3OTExOTc3fQ.qPEnoJOVqTkWdquVPkMWZFYHv29q8pb5mbcVBGFZWTU&t=2024-08-28T10%3A12%3A58.108Z" alt="GitHub"></a>
|
142 |
<a href="https://huggingface.co/bunkalab" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/hugging%20face.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2h1Z2dpbmcgZmFjZS5wbmciLCJpYXQiOjE3MjQ4Mzk4NDAsImV4cCI6MTc4NzkxMTg0MH0.6gOtEK2BXc3kSL3PIswY0LJyvp790580Jm6vxztiFhw&t=2024-08-28T10%3A10%3A40.145Z" alt="Hugging Face"></a>
|
@@ -145,7 +189,7 @@
|
|
145 |
</div>
|
146 |
</footer>
|
147 |
|
148 |
-
|
149 |
const graphFrame = document.getElementById('graph-frame');
|
150 |
const prev = document.getElementById('prev');
|
151 |
const next = document.getElementById('next');
|
|
|
30 |
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
31 |
padding: 15px 0;
|
32 |
text-align: center;
|
33 |
+
display: flex;
|
34 |
+
justify-content: space-between;
|
35 |
+
align-items: center;
|
36 |
+
}
|
37 |
+
.logo-container {
|
38 |
+
padding-left: 20px;
|
39 |
+
}
|
40 |
+
.logo {
|
41 |
+
max-width: 100px;
|
42 |
+
height: auto;
|
43 |
+
}
|
44 |
+
.title-container {
|
45 |
+
flex-grow: 1;
|
46 |
+
text-align: center;
|
47 |
}
|
48 |
h1 {
|
49 |
color: var(--primary-color);
|
50 |
margin: 0 0 10px 0;
|
51 |
font-size: 1.8em;
|
52 |
}
|
53 |
+
.subtitle-container {
|
54 |
+
display: flex;
|
55 |
+
justify-content: center;
|
56 |
+
align-items: center;
|
57 |
+
}
|
58 |
.subtitle {
|
59 |
font-size: 1em;
|
60 |
color: var(--secondary-color);
|
61 |
margin: 0;
|
62 |
}
|
63 |
+
.help-icon {
|
64 |
+
margin-left: 10px;
|
65 |
+
cursor: help;
|
66 |
+
position: relative;
|
67 |
+
}
|
68 |
+
.help-icon:hover::after {
|
69 |
+
content: attr(data-tooltip);
|
70 |
+
position: absolute;
|
71 |
+
top: 100%;
|
72 |
+
left: 50%;
|
73 |
+
transform: translateX(-50%);
|
74 |
+
background-color: #333;
|
75 |
+
color: white;
|
76 |
+
padding: 10px;
|
77 |
+
border-radius: 5px;
|
78 |
+
width: 300px;
|
79 |
+
z-index: 1;
|
80 |
+
font-size: 0.9em;
|
81 |
+
line-height: 1.4;
|
82 |
+
text-align: left;
|
83 |
+
}
|
84 |
.graph-container {
|
85 |
flex-grow: 1;
|
86 |
width: 100%;
|
|
|
96 |
text-align: center;
|
97 |
padding: 10px 0;
|
98 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
.social-links {
|
100 |
display: inline-block;
|
101 |
vertical-align: middle;
|
|
|
112 |
width: 20px;
|
113 |
height: 20px;
|
114 |
}
|
115 |
+
.pagination {
|
116 |
display: flex;
|
117 |
justify-content: center;
|
118 |
align-items: center;
|
|
|
150 |
</style>
|
151 |
</head>
|
152 |
<body>
|
153 |
+
<header>
|
154 |
+
<div class="logo-container">
|
155 |
+
<img src="https://huggingface.co/spaces/bunkalab/README/raw/main/bunka_logo.png" alt="Bunka Logo" class="logo">
|
156 |
+
</div>
|
157 |
+
<div class="title-container">
|
158 |
+
<h1 id="main-title">Open Source AI Network - Mapping the top 500 HF users</h1>
|
159 |
+
<div class="subtitle-container">
|
160 |
+
<p id="subtitle" class="subtitle">Two users are closer if they are followed by the same people.</p>
|
161 |
+
<span class="help-icon" data-tooltip="• We collected and analyze data about 895,007 models and 204,371 datasets
|
162 |
+
• We filtered those into 14,620 content providers
|
163 |
+
• 2,615 organizations (not users) were filtered, associated with 15,611 most relevant users
|
164 |
+
• Using the Force Atlas and Leidenalg algorithm, we created this network">ⓘ</span>
|
165 |
+
</div>
|
166 |
+
</div>
|
167 |
</header>
|
168 |
|
169 |
<div class="graph-container">
|
|
|
181 |
</div>
|
182 |
|
183 |
<footer>
|
|
|
184 |
<div class="social-links">
|
185 |
<a href="https://github.com/charlesdedampierre/BunkaTopics" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/github-logo.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2dpdGh1Yi1sb2dvLnBuZyIsImlhdCI6MTcyNDgzOTk3NywiZXhwIjoxNzg3OTExOTc3fQ.qPEnoJOVqTkWdquVPkMWZFYHv29q8pb5mbcVBGFZWTU&t=2024-08-28T10%3A12%3A58.108Z" alt="GitHub"></a>
|
186 |
<a href="https://huggingface.co/bunkalab" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/hugging%20face.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2h1Z2dpbmcgZmFjZS5wbmciLCJpYXQiOjE3MjQ4Mzk4NDAsImV4cCI6MTc4NzkxMTg0MH0.6gOtEK2BXc3kSL3PIswY0LJyvp790580Jm6vxztiFhw&t=2024-08-28T10%3A10%3A40.145Z" alt="Hugging Face"></a>
|
|
|
189 |
</div>
|
190 |
</footer>
|
191 |
|
192 |
+
<script>
|
193 |
const graphFrame = document.getElementById('graph-frame');
|
194 |
const prev = document.getElementById('prev');
|
195 |
const next = document.getElementById('next');
|